.deals-page-hero {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 31, 47, .96) 0%, rgba(8, 31, 47, .76) 48%, rgba(8, 31, 47, .22) 100%),
    url("https://images.unsplash.com/photo-1694617711278-03862103e39f?auto=format&fit=crop&w=2000&q=85") center/cover;
  padding: 110px 0 118px;
}

.deals-page-hero h1 {
  max-width: 780px;
}

.deals-page-hero h1 em {
  color: #73c6ff;
}

.deals-page-hero .hero-lead {
  color: rgba(255, 255, 255, .78);
  max-width: 640px;
}

.deals-proof {
  color: #fff;
  background: var(--blue);
}

.deals-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.deals-proof-grid div {
  min-height: 112px;
  padding: 28px;
  border-left: 1px solid rgba(255, 255, 255, .28);
}

.deals-proof-grid div:last-child {
  border-right: 1px solid rgba(255, 255, 255, .28);
}

.deals-proof-grid strong,
.deals-proof-grid span {
  display: block;
}

.deals-proof-grid strong {
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 400;
}

.deals-proof-grid span {
  margin-top: 8px;
  color: rgba(255, 255, 255, .75);
  font-size: 11px;
}

.featured-deal {
  background: var(--cream);
}

.active-promos-heading {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 80px;
  align-items: end;
}

.active-promos-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.active-promos {
  margin-top: 58px;
  touch-action: pan-y;
}

.active-promos-viewport {
  overflow: hidden;
}

.active-promos-track {
  display: flex;
  transition: transform .5s cubic-bezier(.22,.61,.36,1);
}

.active-promos-slide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  flex: 0 0 100%;
}

.active-promo-card {
  display: grid;
  grid-template-columns: 43% 57%;
  min-height: 390px;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform .22s ease, box-shadow .22s ease;
}

.active-promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(17,42,60,.13);
}

.active-promo-image {
  min-height: 390px;
  background-position: center;
  background-size: cover;
  position: relative;
}

.active-promo-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,31,47,.02), rgba(7,31,47,.34));
}

.active-promo-image > span {
  position: absolute;
  z-index: 1;
  top: 20px;
  left: 20px;
  padding: 8px 10px;
  color: #fff;
  background: rgba(17,42,60,.84);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.active-promo-copy {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.active-promo-copy > small {
  color: var(--blue-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.active-promo-copy h3 {
  margin: 14px 0 0;
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.06;
}

.active-promo-copy > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.active-promo-meta {
  display: grid;
  gap: 5px;
  margin-top: auto;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.active-promo-meta strong {
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 400;
}

.active-promo-meta span {
  color: var(--blue-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.active-promo-copy > b {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  font-size: 12px;
}

.active-promos-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
}

.active-promos-navigation button {
  width: 46px;
  height: 46px;
  cursor: pointer;
  background: #fff;
  border: 1px solid #cfd9dd;
}

.active-promos-navigation span {
  color: var(--muted);
  font-size: 11px;
}

.featured-deal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border: 1px solid var(--line);
}

.featured-deal-image {
  min-height: 650px;
  background:
    linear-gradient(180deg, transparent 45%, rgba(8, 31, 47, .4)),
    url("https://images.unsplash.com/photo-1694617711278-03862103e39f?auto=format&fit=crop&w=1500&q=85") center/cover;
}

.featured-deal-copy {
  padding: 70px;
}

.featured-deal-copy h2 {
  font-size: clamp(44px, 5vw, 66px);
}

.offer-price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin: 28px 0 0;
  color: var(--blue-dark);
}

.offer-price strong {
  font-family: Georgia, serif;
  font-size: 44px;
  font-weight: 400;
}

.offer-price span {
  max-width: 110px;
  font-size: 11px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.offer-inclusions {
  display: grid;
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.offer-inclusions li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  font-size: 14px;
}

.offer-inclusions li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 800;
}

.offer-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 40px;
}

.offer-actions .button-primary {
  background: var(--blue);
}

.offer-actions .button-primary:hover {
  background: var(--blue-dark);
}

.worldwide-deals {
  background: #fff;
}

.deals-catalog {
  margin-top: 62px;
  touch-action: pan-y;
}

.catalog-viewport {
  overflow: hidden;
}

.catalog-track {
  display: flex;
  transition: transform .5s cubic-bezier(.22,.61,.36,1);
}

.catalog-slide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, auto);
  gap: 20px;
  flex: 0 0 100%;
}

.catalog-deal-card {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 270px;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform .22s ease, box-shadow .22s ease;
}

.catalog-deal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(17, 42, 60, .12);
}

.catalog-deal-image {
  min-height: 270px;
  background-position: center;
  background-size: cover;
  position: relative;
}

.catalog-deal-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,31,47,.02), rgba(7,31,47,.32));
}

.catalog-deal-image > span {
  position: absolute;
  z-index: 1;
  top: 18px;
  left: 18px;
  padding: 7px 9px;
  color: #fff;
  background: rgba(17,42,60,.82);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.catalog-deal-copy {
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.catalog-deal-copy small {
  color: var(--blue-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.catalog-deal-copy h3 {
  margin: 14px 0 0;
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.08;
}

.catalog-deal-copy p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.catalog-deal-copy > div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.catalog-deal-copy strong {
  max-width: 145px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
}

.catalog-deal-copy > div span {
  color: var(--blue-dark);
  white-space: nowrap;
  font-size: 11px;
  font-weight: 800;
}

.catalog-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 34px;
}

.catalog-navigation > button {
  width: 48px;
  height: 48px;
  cursor: pointer;
  background: #fff;
  border: 1px solid #cfd9dd;
  font-size: 18px;
}

.catalog-navigation > button:hover,
.catalog-navigation > button:focus-visible {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.catalog-dots {
  display: flex;
  gap: 9px;
}

.catalog-dots button {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.catalog-dots button::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  inset: 50% auto auto 50%;
  border: 1px solid var(--blue);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.catalog-dots button.is-active::before {
  background: var(--blue);
}

.partner-band {
  color: #fff;
  background: var(--ink);
}

.partner-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
  align-items: center;
}

.partner-grid h2 em {
  color: #73c6ff;
}

.partner-copy {
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  line-height: 1.8;
}

.partner-copy strong {
  color: #fff;
}

.deal-terms {
  margin-top: 28px;
  color: #89969d;
  font-size: 11px;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .featured-deal-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .featured-deal-image {
    min-height: 470px;
  }

  .active-promos-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .active-promos-slide {
    grid-template-columns: 1fr;
  }

  .catalog-slide {
    grid-template-columns: 1fr;
  }

  .catalog-deal-card {
    grid-template-columns: 38% 62%;
  }
}

@media (max-width: 640px) {
  .deals-page-hero {
    padding: 78px 0 84px;
  }

  .deals-proof-grid {
    grid-template-columns: 1fr;
  }

  .deals-proof-grid div {
    min-height: auto;
    border-right: 1px solid rgba(255, 255, 255, .28);
    border-bottom: 1px solid rgba(255, 255, 255, .28);
  }

  .featured-deal-image {
    min-height: 330px;
  }

  .featured-deal-copy {
    padding: 38px 26px;
  }

  .active-promo-card {
    grid-template-columns: 1fr;
  }

  .active-promo-image {
    min-height: 250px;
  }

  .offer-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-deal-card {
    grid-template-columns: 1fr;
  }

  .catalog-deal-image {
    min-height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .catalog-track,
  .active-promos-track {
    transition: none;
  }
}
