.flight-promotions {
  position: relative;

  @include breakpoint(sm) {
    column-width: 33.3333px;
    column-count: 2;
    column-gap: $margin-triple;
  }

  @include breakpoint(md) {
    column-count: 3;
  }

  &:after {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    background-color: $color-beige-100;
    bottom: 0;
    left: 0;
  }
}

.flight-promotions-item {
  border-bottom: 1px solid $color-tui-grey-25;
  page-break-inside: avoid;
  break-inside: avoid;

  > div {
    display: flex;
    align-items: center;
    height: $margin-quintuple;
  }

  a {
    min-width: $margin-triple;
    padding: 0;
  }

  .price-wrapper {
    display: flex;
    margin-left: auto;
    align-items: center;
  }

  .price {
    @include font-size(26);
    margin: 0 $margin-normal;
    min-width: 62px;
    text-align: right;
  }

  .pictogram-aircraft {
    margin: 0 $margin-half;
    width: $margin-enterprise;
    height: $margin-enterprise;
  }
}

.flight-promotions-remark {
  @include font-size(16);
  color: $color-grey;
}
