/**
 * Airport Fast Track promo banner on the two region landing pages
 * (/danang-tours/ = page 16694, /saigon-tours/ = the shop archive).
 * Enqueued together with assets/js/region-ft-banner.js, which builds the
 * markup and inserts it right after the tour grid div#brxe-458265.
 *
 * Deliberately NOT card-shaped: the tour cards are white photo cards with a
 * pink/orange gradient, so this strip is a solid teal panel (the Fast Track
 * accent used elsewhere on the site, rgb(13, 110, 102)) with the pink brand
 * CTA (#E4367E). It must never read as one more tour in the grid.
 *
 * Mobile-first. Three states:
 *   base            stacked, full width (phones)
 *   >= 600px        two columns: copy + CTA rail
 *   >= 992px        mirrors the grid's own width, calc(65% - 15px)/800px,
 *                   so on desktop it sits under the grid in the left column
 *                   while the sticky "Book Tour Now" widget keeps the right
 *                   one. 991px is the Bricks breakpoint at which #brxe-458265
 *                   itself goes full width.
 *
 * Every rule is scoped to .kt-ftb (id + class on the root) -- nothing here
 * can touch a Bricks element, and if the JS no-ops the whole file is inert.
 */

#kt-ft-banner.kt-ftb {
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 4px 0 40px;
  padding: 22px 20px;
  /* 16px matches the tour cards' own radius (.brxe-quaozv) so the strip still
     belongs to the page, while the solid teal keeps it from reading as a card. */
  border-radius: 16px;
  background: linear-gradient(135deg, #0d6e66 0%, #08514b 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Brand-pink glow in the top corner: ties the teal panel back to the site
   palette without a second background image. Decorative only. */
#kt-ft-banner.kt-ftb::after {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 54, 126, 0.5) 0%, rgba(228, 54, 126, 0) 70%);
  pointer-events: none;
}

.kt-ftb .kt-ftb-main {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.kt-ftb .kt-ftb-eyebrow {
  display: inline-block;
  background: #e4367e;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 4px 11px;
}

.kt-ftb .kt-ftb-title {
  margin: 11px 0 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
}

.kt-ftb .kt-ftb-text {
  margin: 8px 0 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.kt-ftb .kt-ftb-perks {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.kt-ftb .kt-ftb-perk {
  margin: 0;
  padding: 0;
  font-size: 13.5px;
  line-height: 1.4;
  color: #fff;
}

.kt-ftb .kt-ftb-perk::before {
  content: "\2713\00a0";
  color: #ffd0e0;
  font-weight: 800;
}

.kt-ftb .kt-ftb-side {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kt-ftb .kt-ftb-price {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  text-align: center;
}

.kt-ftb .kt-ftb-cta {
  display: block;
  background: #e4367e;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  padding: 14px 20px;
  transition: background-color 0.18s ease;
}

.kt-ftb .kt-ftb-cta:hover,
.kt-ftb .kt-ftb-cta:focus {
  background: #b11857;
  color: #fff;
}

.kt-ftb .kt-ftb-cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.kt-ftb .kt-ftb-note {
  font-size: 11.5px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

/* Tablet and up: copy on the left, CTA rail on the right. */
@media (min-width: 600px) {
  #kt-ft-banner.kt-ftb {
    flex-direction: row;
    align-items: center;
    gap: 26px;
    padding: 26px 28px;
  }

  .kt-ftb .kt-ftb-main {
    flex: 1 1 auto;
  }

  .kt-ftb .kt-ftb-side {
    flex: 0 0 208px;
    width: 208px;
  }

  .kt-ftb .kt-ftb-perks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
  }
}

/* Desktop: same column width as the grid above it (#brxe-458265), so the
   banner lines up with the tour cards instead of spanning under the sticky
   booking widget. */
@media (min-width: 992px) {
  #kt-ft-banner.kt-ftb {
    width: calc(65% - 15px);
    max-width: 800px;
    margin: 36px 0 0;
    padding: 28px 32px;
  }

  .kt-ftb .kt-ftb-title {
    font-size: 23px;
  }
}
