:root {
  --red: #d60035;
  --red-dark: #a9002b;
  --ink: #202226;
  --muted: #73777d;
  --line: #dedfe2;
  --paper: #ffffff;
  --soft: #f5f4f2;
  --shell: 1254px;
  --booking: 1148px;
  --shadow: 0 22px 65px rgb(28 29 33 / 20%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: "Avenir Next", "Trebuchet MS", sans-serif;
  line-height: 1.5;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: #fff;
  background: #111;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: #fff;
  background: #555 url("../images/banners/marrakech-menara-desktop.jpg") center 47% / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(12 17 20 / 62%) 0, rgb(12 17 20 / 20%) 30%, transparent 72%),
    linear-gradient(90deg, rgb(12 17 20 / 64%) 0, rgb(12 17 20 / 36%) 34%, transparent 67%);
}

.site-header {
  position: relative;
  z-index: 10;
  height: 86px;
  background: linear-gradient(180deg, rgb(15 22 25 / 26%), transparent);
}

.header-inner {
  display: grid;
  width: min(100% - 32px, var(--shell));
  height: 100%;
  align-items: center;
  margin-inline: auto;
  grid-template-columns: 120px 54px minmax(520px, 1fr) auto;
  gap: 16px;
}

.brand {
  display: grid;
  align-self: stretch;
  background: #c20831;
  place-items: center;
}

.brand img {
  width: 104px;
  max-height: 78px;
  object-fit: contain;
  filter: none;
}

.alliance-logo {
  width: 38px;
  margin-inline: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.8vw, 45px);
}

.primary-nav a {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
  text-shadow: 0 1px 12px rgb(0 0 0 / 30%);
  white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: #ffd7e1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 19px;
}

.search-button,
.language-button,
.menu-toggle {
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.search-button {
  position: relative;
  width: 27px;
  height: 34px;
}

.search-button::before {
  position: absolute;
  top: 5px;
  left: 2px;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
}

.search-button::after {
  position: absolute;
  top: 22px;
  left: 18px;
  width: 9px;
  height: 2px;
  background: currentColor;
  content: "";
  transform: rotate(45deg);
  transform-origin: left center;
}

.language-button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  font-weight: 650;
  white-space: nowrap;
}

.down-chevron,
.field-chevron {
  width: 9px;
  height: 9px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
}

.login-button {
  min-width: 128px;
  padding: 14px 17px;
  border-radius: 4px;
  color: #fff;
  background: var(--red);
  font-weight: 750;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.login-button:hover,
.login-button:focus-visible,
.search-flights:hover,
.search-flights:focus-visible {
  background: var(--red-dark);
}

.menu-toggle {
  display: none;
}

.primary-nav .nav-trigger {
  position: relative;
  min-height: 64px;
  padding: 0 4px;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 650;
}

.primary-nav .nav-trigger::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--red);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.primary-nav .nav-trigger:hover::after,
.primary-nav .nav-trigger:focus-visible::after,
.primary-nav .nav-trigger.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.mega-menu {
  position: absolute;
  z-index: 60;
  top: 100%;
  right: 0;
  left: 0;
  padding: 35px max(28px, calc((100vw - var(--shell)) / 2)) 32px;
  color: #232427;
  background: #fff;
  box-shadow: 0 18px 34px rgb(0 0 0 / 18%);
}

.mega-menu[hidden] {
  display: none;
}

.mega-grid {
  display: grid;
  align-items: stretch;
  gap: clamp(24px, 4vw, 64px);
  grid-template-columns: repeat(3, minmax(150px, 1fr)) minmax(220px, 1.12fr);
}

.mega-close {
  position: absolute;
  top: 13px;
  right: max(20px, calc((100vw - var(--shell)) / 2));
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  color: #444;
  background: transparent;
  cursor: pointer;
  font-size: 1.05rem;
}

.mega-column h2 {
  margin: 0 0 13px;
  color: #16171a;
  font-family: "Avenir Next", "Trebuchet MS", sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.mega-column a {
  display: block;
  width: fit-content;
  margin: 0 0 10px;
  color: #4e5055;
  font-size: 0.91rem;
  line-height: 1.3;
  text-decoration: none;
  transition: color 140ms ease, transform 140ms ease;
}

.mega-column a:hover,
.mega-column a:focus-visible {
  color: var(--red);
  transform: translateX(3px);
}

.mega-promo {
  position: relative;
  display: flex;
  min-height: 205px;
  overflow: hidden;
  align-self: stretch;
  justify-content: flex-end;
  padding: 22px;
  border-radius: 20px 20px 3px 20px;
  color: #fff;
  background-color: #4d1a25;
  background-position: center;
  background-size: cover;
  flex-direction: column;
  text-decoration: none;
}

.mega-promo::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgb(14 12 14 / 82%));
  content: "";
}

.mega-promo span,
.mega-promo strong,
.mega-promo b {
  position: relative;
  z-index: 1;
}

.mega-promo span {
  margin-bottom: 4px;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mega-promo strong {
  max-width: 190px;
  font-size: 1.3rem;
  line-height: 1.12;
}

.mega-promo b {
  position: absolute;
  right: 20px;
  bottom: 21px;
  font-size: 1.4rem;
}

.mega-promo-book {
  background-image: url("../images/banners/early-birds-desktop.jpg");
}

.mega-promo-explore {
  background-image: url("../images/destinations/dss.jpg");
}

.mega-promo-experience {
  background-image: url("../images/destinations/dla.jpg");
}

.mega-promo-information {
  background-image: linear-gradient(135deg, rgb(110 0 30 / 22%), rgb(12 10 12 / 40%)), url("../images/banners/ram-holidays-desktop-en.jpg");
}

.mega-promo-safar {
  background-image: radial-gradient(circle at 78% 22%, rgb(255 255 255 / 22%) 0 12%, transparent 13%), linear-gradient(135deg, #101a45, #0b75ad 62%, #d50035 63%);
}

@media (max-width: 1020px) {
  .mega-grid {
    gap: 24px;
    grid-template-columns: repeat(3, minmax(140px, 1fr));
  }

  .mega-promo {
    min-height: 155px;
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .primary-nav .nav-trigger {
    width: 100%;
    min-height: 48px;
    padding: 12px 20px;
    text-align: left;
  }

  .primary-nav .nav-trigger::after {
    top: 0;
    right: auto;
    bottom: 0;
    width: 3px;
    height: auto;
  }

  .mega-menu {
    position: fixed;
    top: 78px;
    max-height: calc(100vh - 78px);
    overflow-y: auto;
    padding: 48px 22px 28px;
  }

  .mega-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mega-close {
    top: 10px;
    right: 14px;
  }
}

@media (max-width: 560px) {
  .mega-grid {
    grid-template-columns: 1fr;
  }

  .mega-promo {
    grid-column: auto;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100% - 64px, 1186px);
  align-items: center;
  gap: 24px;
  margin: 72px auto 0;
}

.hero-message {
  display: flex;
  align-items: flex-end;
  gap: clamp(24px, 4vw, 58px);
}

.campaign-mark {
  display: flex;
  width: 22px;
  gap: 2px;
  transform: skew(-18deg);
}

.campaign-mark span {
  width: 6px;
  height: 27px;
  background: var(--red);
}

.hero h1 {
  margin: 0;
  font-family: "Avenir Next", "Trebuchet MS", sans-serif;
  font-size: clamp(2.35rem, 3.6vw, 3.55rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.12;
  text-shadow: 0 2px 18px rgb(0 0 0 / 28%);
}

.hero-content p {
  max-width: 340px;
  margin: 0 0 5px;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 520;
  line-height: 1.38;
  text-shadow: 0 2px 16px rgb(0 0 0 / 38%);
}

.hero-pagination {
  position: absolute;
  z-index: 3;
  right: 36px;
  bottom: 164px;
  display: flex;
  gap: 8px;
}

.hero-pagination button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
}

.hero-pagination button.is-active {
  background: #fff;
}

.booking-overlap {
  position: relative;
  z-index: 20;
  width: min(100% - 40px, var(--booking));
  margin: -186px auto 0;
}

.booking-card {
  overflow: hidden;
  border-radius: 18px 18px 6px 6px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.service-tabs {
  display: grid;
  min-height: 55px;
  border-bottom: 1px solid #ddd;
  grid-template-columns: repeat(4, 1fr);
}

.service-tab {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 12px;
  border: 0;
  background: #fff;
  cursor: pointer;
  font-size: 0.98rem;
  white-space: nowrap;
}

.service-tab span {
  font-size: 1.15rem;
}

.service-tab.is-active {
  color: var(--red);
  font-weight: 750;
}

.service-tab.is-active::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
}

.service-panel {
  min-height: 328px;
  padding: 24px 26px 25px;
}

.trip-switch {
  display: grid;
  width: min(100%, 468px);
  margin-bottom: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.trip-switch button {
  min-height: 37px;
  border: 0;
  border-right: 1px solid #ddd;
  background: #f7f7f8;
  cursor: pointer;
}

.trip-switch button:first-child {
  border-radius: 4px 0 0 4px;
}

.trip-switch button:last-child {
  border-right: 0;
  border-radius: 0 4px 4px 0;
}

.trip-switch button.is-active {
  position: relative;
  z-index: 1;
  border: 1px solid #d4d4d4;
  border-radius: 4px;
  color: var(--red);
  background: #fff;
  box-shadow: 0 2px 7px rgb(0 0 0 / 13%);
}

.booking-notice {
  margin: -7px 0 18px;
  padding: 11px 14px;
  border: 1px solid;
  border-radius: 5px;
  font-size: 0.84rem;
  line-height: 1.45;
}

.booking-notice-success {
  border-color: #8dbf9e;
  color: #175c32;
  background: #effaf3;
}

.booking-notice-error {
  border-color: #df8c9e;
  color: #8e1732;
  background: #fff2f5;
}

.booking-notice ul {
  margin: 5px 0 0;
  padding-left: 18px;
}

.form-validation-summary {
  margin: -7px 0 18px;
  padding: 11px 14px;
  border: 1px solid #d60035;
  border-radius: 5px;
  color: #8f082a;
  background: #fff1f4;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.4;
}

.form-validation-summary[hidden] {
  display: none;
}

.form-control.is-invalid select,
.form-control.is-invalid input,
.passenger-control.is-invalid {
  border-color: #d60035;
  background-color: #fff5f7;
  box-shadow: 0 0 0 3px rgb(214 0 53 / 10%);
}

.form-control.is-invalid .field-label,
.passenger-control.is-invalid legend {
  color: #b0002c;
}

.validation-message {
  position: absolute;
  z-index: 2;
  top: calc(100% + 4px);
  left: 0;
  color: #b0002c;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
}

.passenger-control .validation-message {
  left: 12px;
}

.booking-form.was-validated .route-grid,
.booking-form.was-validated .booking-details-grid {
  margin-bottom: 13px;
}

.search-flights.is-sending {
  cursor: wait;
  opacity: 0.78;
}

.inquiry-privacy {
  margin: 17px 0 0;
  color: #77797e;
  font-size: 0.7rem;
  line-height: 1.45;
}

.route-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) 26px minmax(0, 1fr);
}

.details-grid {
  display: grid;
  align-items: start;
  gap: 26px;
  margin-top: 32px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 178px;
}

.booking-details-grid,
.contact-grid {
  display: grid;
  align-items: stretch;
  gap: 16px;
  margin-top: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-control {
  position: relative;
  display: block;
}

.form-control select,
.form-control input {
  width: 100%;
  height: 58px;
  padding: 21px 46px 5px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: #35373b;
  background: #fff;
  outline: none;
  appearance: none;
}

.field-label {
  position: absolute;
  z-index: 1;
  top: 6px;
  left: 16px;
  color: #777a7f;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.045em;
  pointer-events: none;
  text-transform: uppercase;
}

.customer-control input {
  padding-right: 16px;
}

.form-control select:invalid,
.form-control select option[value=""],
.form-control input::placeholder {
  color: #a8aaae;
}

.form-control select:focus,
.form-control input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgb(214 0 53 / 10%);
}

.required-control select {
  border-color: #d85439;
}

.form-control small {
  position: absolute;
  top: 59px;
  left: 0;
  color: #ca513a;
  font-size: 0.78rem;
}

.field-chevron {
  position: absolute;
  top: 23px;
  right: 18px;
  color: #96999d;
  pointer-events: none;
}

.required-control::after,
.route-grid > .form-control:last-child::after {
  position: absolute;
  right: -4px;
  bottom: -21px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px #fff;
  content: "";
  display: none;
}

.route-grid > .form-control:last-child::after {
  right: auto;
  left: -4px;
}

.swap-button,
.route-arrow {
  align-self: center;
  height: 38px;
  padding: 0;
  border: 0;
  color: #97999b;
  background: transparent;
  cursor: pointer;
  font-size: 1.35rem;
}

.route-arrow {
  display: grid;
  place-items: center;
}

.calendar-icon {
  position: absolute;
  top: 22px;
  right: 18px;
  width: 15px;
  height: 14px;
  border: 1px solid #a8aaae;
  pointer-events: none;
}

.calendar-icon::before {
  position: absolute;
  top: 3px;
  right: 0;
  left: 0;
  border-top: 1px solid #a8aaae;
  content: "";
}

.search-flights {
  height: 58px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: var(--red);
  cursor: pointer;
  font-weight: 750;
}

.passenger-control {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 58px;
  gap: 8px;
  margin: 0;
  padding: 20px 12px 6px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.passenger-control legend {
  position: absolute;
  top: 6px;
  left: 12px;
  padding: 0;
  color: #777a7f;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.passenger-control label {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  color: #45484d;
  font-size: 0.82rem;
  font-weight: 650;
}

.passenger-control input {
  width: 46px;
  height: 26px;
  padding: 0 2px;
  border: 0;
  border-left: 1px solid var(--line);
  color: #27292d;
  background: transparent;
  font-weight: 750;
  text-align: center;
}

.date-control[hidden] {
  display: none;
}

.quick-panel {
  display: flex;
  min-height: 328px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-inline: 50px;
  background: linear-gradient(110deg, #fff, #f8f1f3);
}

.quick-panel[hidden] {
  display: none;
}

.quick-kicker {
  margin: 0 0 4px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-panel h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
}

.quick-panel p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.quick-panel a {
  padding: 13px 18px;
  border-radius: 4px;
  color: #fff;
  background: var(--red);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.support-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.support-actions-wide {
  max-width: 340px;
}

.quick-panel .support-action-secondary {
  border: 1px solid var(--red);
  color: var(--red);
  background: #fff;
}

.quick-panel .support-action-urgent {
  background: var(--red-dark);
}

@media (max-width: 1040px) {
  .booking-details-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .passenger-control,
  .contact-grid .search-flights {
    grid-column: 1 / -1;
  }
}

.feedback-button {
  position: fixed;
  z-index: 40;
  top: 50%;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 0;
  border-radius: 5px 5px 0 0;
  color: #fff;
  background: var(--red);
  cursor: pointer;
  font-weight: 750;
  transform: rotate(-90deg) translateY(-100%);
  transform-origin: right top;
}

.featured-flights {
  width: min(100% - 40px, 1180px);
  margin: 82px auto 0;
}

.featured-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}

.section-label {
  margin: 0 0 7px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.featured-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.fare-update {
  margin: 17px 0 0;
  color: #666a70;
  font-size: 1rem;
}

.fare-update span {
  color: var(--red);
  font-weight: 900;
}

.view-more {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.view-more:hover,
.view-more:focus-visible,
.book-now:hover,
.book-now:focus-visible {
  background: var(--red-dark);
}

.flight-list {
  display: grid;
  gap: 13px;
}

.flights-loading {
  margin: 0;
  padding: 28px;
  border: 1px solid #e0e1e3;
  border-radius: 8px;
  background: #fff;
}

.flight-row {
  display: grid;
  min-height: 91px;
  align-items: center;
  gap: 14px;
  padding: 13px 17px;
  border: 1px solid #dedfe2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 5px 18px rgb(25 26 28 / 3%);
  grid-template-columns: 48px minmax(145px, 1.1fr) 25px minmax(145px, 1.1fr) 106px 122px 112px 112px 104px;
}

.flight-airline {
  display: grid;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff5f7;
  place-items: center;
}

.flight-airline img {
  width: 38px;
  max-height: 32px;
}

.flight-point {
  min-width: 0;
}

.flight-point strong {
  display: block;
  overflow: hidden;
  font-size: 0.91rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.flight-point small {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 3px;
  color: #2e3034;
  font-size: 0.74rem;
  white-space: nowrap;
}

.clock-mark {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 1px solid #9ca0a4;
  border-radius: 50%;
}

.route-direction {
  color: #565a5f;
  font-size: 1.4rem;
  text-align: center;
}

.seat-badge {
  justify-self: start;
  padding: 5px 8px;
  border-radius: 5px;
  color: #fff;
  background: var(--red);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.starting-fare {
  padding-right: 12px;
  border-right: 1px solid #dfe0e2;
  color: #777b80;
  font-size: 0.72rem;
  text-align: center;
}

.starting-fare strong {
  display: block;
  margin-top: 3px;
  color: var(--red);
  font-size: 0.7rem;
}

.fare-link {
  display: block;
  padding-left: 4px;
  border-right: 1px solid #dfe0e2;
  color: #686c71;
  font-size: 0.72rem;
  text-decoration: none;
}

.fare-link strong {
  display: block;
  margin-top: 1px;
  color: #17191d;
  font-size: 0.98rem;
}

.fare-link:hover strong,
.fare-link:focus-visible strong {
  color: var(--red);
}

.book-now {
  justify-self: end;
  padding: 10px 15px;
  border: 1px solid #f0bdca;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.offers-section {
  width: min(100% - 40px, 1180px);
  margin: 92px auto 86px;
}

.offers-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 29px;
}

.offers-heading > div { max-width: 780px; }

.offers-heading p {
  margin: 0 0 7px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.offers-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 4.45rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.offers-heading > div > span {
  display: block;
  margin-top: 14px;
  color: #666a70;
  font-size: 0.94rem;
}

.offers-heading > a {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  gap: 10px;
  padding: 10px 19px;
  border: 1px solid var(--red);
  border-radius: 999px;
  color: var(--red);
  background: #fff;
  font-size: 0.78rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.offers-heading > a:hover,
.offers-heading > a:focus-visible {
  color: #fff;
  background: var(--red);
}

.disruption-ticker {
  display: grid;
  min-height: 43px;
  align-items: center;
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 6px;
  color: #fff;
  background: #5b001a;
  grid-template-columns: auto minmax(0, 1fr);
}

.disruption-ticker > strong {
  position: relative;
  z-index: 2;
  align-self: stretch;
  display: flex;
  align-items: center;
  padding: 0 19px;
  background: var(--red);
  font-size: 0.69rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ticker-window { overflow: hidden; }

.ticker-window p {
  width: max-content;
  margin: 0;
  padding-left: 100%;
  font-size: 0.75rem;
  white-space: nowrap;
  animation: offer-ticker 25s linear infinite;
}

.ticker-window a {
  margin-left: 7px;
  color: #ffd1dc;
  font-weight: 850;
  text-underline-offset: 3px;
}

@keyframes offer-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.offers-carousel {
  position: relative;
  overflow: hidden;
  border: 1px solid #e0e1e3;
  border-radius: 18px 18px 5px 18px;
  background: #fff;
  box-shadow: 0 16px 38px rgb(25 26 28 / 10%);
}

.offer-viewport {
  position: relative;
  min-height: 410px;
  overflow: hidden;
}

.offer-slide {
  position: absolute;
  inset: 0;
  display: none;
  overflow: hidden;
}

.offer-slide.is-active {
  display: block;
  animation: offer-fade 380ms ease;
}

@keyframes offer-fade {
  from { opacity: 0.45; transform: scale(1.012); }
  to { opacity: 1; transform: scale(1); }
}

.offer-slide picture,
.offer-slide > img,
.offer-slide picture img {
  width: 100%;
  height: 100%;
}

.offer-slide > img,
.offer-slide picture img { object-fit: cover; }

.offer-destination::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(25 18 20 / 78%), rgb(25 18 20 / 24%) 58%, transparent);
  content: "";
}

.offer-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 57px;
  max-width: 390px;
  color: #fff;
  transform: translateY(-50%);
}

.offer-copy-right {
  right: 50px;
  left: auto;
  width: min(330px, 33%);
  padding: 24px;
  border: 1px solid rgb(255 255 255 / 44%);
  border-radius: 13px;
  color: #241c1e;
  background: rgb(255 255 255 / 88%);
  backdrop-filter: blur(8px);
}

.offer-copy > p {
  margin: 0 0 7px;
  color: #f4c5d1;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.offer-copy-right > p { color: var(--red); }

.offer-copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.03;
}

.offer-copy-right h3 { font-size: clamp(1.8rem, 3vw, 2.65rem); }

.offer-copy > span {
  display: block;
  margin-top: 15px;
  font-size: 1rem;
}

.offer-copy > span strong { font-size: 1.25em; }

.offer-copy > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding: 10px 16px;
  border-radius: 4px;
  color: #fff;
  background: var(--red);
  font-size: 0.78rem;
  font-weight: 850;
  text-decoration: none;
}

.offer-copy > a:hover,
.offer-copy > a:focus-visible { background: var(--red-dark); }

.offer-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0 0 4px;
  border: 1px solid rgb(255 255 255 / 65%);
  border-radius: 50%;
  color: #fff;
  background: rgb(34 24 27 / 44%);
  cursor: pointer;
  font-size: 1.75rem;
  place-items: center;
  transform: translateY(-50%);
}

.offer-prev { left: 15px; }
.offer-next { right: 15px; }

.offer-dots {
  position: absolute;
  z-index: 6;
  right: 0;
  bottom: 13px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.offer-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  background: rgb(255 255 255 / 50%);
  box-shadow: 0 1px 6px rgb(0 0 0 / 25%);
  cursor: pointer;
}

.offer-dots button.is-active {
  width: 26px;
  border-radius: 999px;
  background: var(--red);
}

.offers-disclaimer {
  margin: 13px 2px 0;
  color: #797c81;
  font-size: 0.68rem;
}

.travel-note > p {
  margin: 0 0 9px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.travel-note h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.04;
}

.benefits-section {
  position: relative;
  overflow: hidden;
  padding: 74px 0 68px;
  background:
    radial-gradient(circle at 7% 12%, rgb(214 0 53 / 7%) 0 90px, transparent 91px),
    radial-gradient(circle at 94% 84%, rgb(214 0 53 / 5%) 0 150px, transparent 151px),
    #f3f1ef;
}

.benefits-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
}

.benefits-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.benefits-heading > p {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.benefits-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 3.65rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.benefits-heading > span {
  display: block;
  margin-top: 13px;
  color: #65686d;
  font-size: 0.94rem;
}

.benefits-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefit-card {
  position: relative;
  display: flex;
  min-height: 326px;
  overflow: hidden;
  padding: 22px 22px 21px;
  border: 1px solid rgb(28 29 32 / 7%);
  border-radius: 16px 16px 3px 16px;
  background: #fff;
  box-shadow: 0 12px 32px rgb(24 25 27 / 8%);
  flex-direction: column;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.benefit-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.benefit-card:hover {
  box-shadow: 0 20px 45px rgb(93 4 29 / 14%);
  transform: translateY(-6px);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  display: flex;
  width: 96px;
  height: 96px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 34px;
  border-radius: 50%;
  color: var(--red);
  background:
    linear-gradient(145deg, rgb(214 0 53 / 4%), rgb(214 0 53 / 11%)),
    #fbf8f8;
  box-shadow: inset 0 0 0 1px rgb(214 0 53 / 6%);
  flex-direction: column;
}

.benefit-icon strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.15rem;
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.95;
}

.benefit-icon small {
  margin-top: 5px;
  font-size: 0.48rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.benefit-icon-wide strong {
  font-size: 1.75rem;
}

.benefit-card h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.25;
}

.benefit-card > p {
  margin: 9px 0 17px;
  color: #62666b;
  font-size: 0.82rem;
  line-height: 1.55;
}

.benefit-card > a {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 9px;
  margin-top: auto;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.benefit-card > a span {
  transition: transform 160ms ease;
}

.benefit-card > a:hover span,
.benefit-card > a:focus-visible span {
  transform: translateX(4px);
}

.benefits-note {
  margin: 25px 0 0;
  color: #777a7e;
  font-size: 0.76rem;
}

.faq-section {
  padding: 94px 0 100px;
  background:
    linear-gradient(135deg, rgb(214 0 53 / 3%), transparent 35%),
    #fff;
}

.faq-inner {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
}

.faq-heading {
  max-width: 760px;
  margin-bottom: 43px;
}

.faq-heading > p {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.faq-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 5vw, 4.35rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.faq-heading > span {
  display: block;
  margin-top: 16px;
  color: #65696e;
  font-size: 0.97rem;
}

.faq-layout {
  display: grid;
  align-items: start;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) 345px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid #e0e1e3;
  border-radius: 11px;
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.faq-item[open] {
  border-color: rgb(214 0 53 / 42%);
  box-shadow: 0 10px 28px rgb(75 8 28 / 7%);
}

.faq-item summary {
  position: relative;
  padding: 20px 58px 20px 22px;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 780;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before,
.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 23px;
  width: 14px;
  height: 2px;
  background: var(--red);
  content: "";
  transition: transform 160ms ease;
}

.faq-item summary::after {
  transform: rotate(90deg);
}

.faq-item[open] summary::after {
  transform: rotate(0);
}

.faq-item[open] summary {
  color: var(--red-dark);
}

.faq-answer {
  padding: 0 58px 21px 22px;
}

.faq-answer p {
  max-width: 700px;
  margin: 0;
  color: #60646a;
  font-size: 0.88rem;
  line-height: 1.65;
}

.faq-answer a {
  color: var(--red);
  font-weight: 750;
  text-underline-offset: 3px;
}

.help-card {
  position: sticky;
  top: 24px;
  overflow: hidden;
  padding: 31px 29px 29px;
  border-radius: 18px 18px 4px 18px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgb(255 255 255 / 13%) 0 105px, transparent 106px),
    linear-gradient(150deg, #a7002b, #570018);
  box-shadow: 0 20px 48px rgb(81 0 23 / 22%);
}

.help-badge {
  display: flex;
  width: 82px;
  height: 82px;
  align-items: center;
  justify-content: center;
  margin-bottom: 43px;
  border: 1px solid rgb(255 255 255 / 25%);
  border-radius: 50%;
  background: rgb(255 255 255 / 10%);
  flex-direction: column;
}

.help-badge strong {
  font-family: Georgia, serif;
  font-size: 1.45rem;
  line-height: 1;
}

.help-badge span {
  margin-top: 5px;
  font-size: 0.52rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.help-label {
  margin: 0 0 7px;
  color: #f5c8d3;
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.help-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.13;
}

.help-card > p:not(.help-label) {
  margin: 17px 0 25px;
  color: rgb(255 255 255 / 78%);
  font-size: 0.86rem;
  line-height: 1.6;
}

.help-actions {
  display: grid;
  gap: 10px;
}

.help-actions a {
  display: flex;
  min-height: 45px;
  align-items: center;
  justify-content: space-between;
  padding: 11px 15px;
  border: 1px solid #fff;
  border-radius: 5px;
  color: var(--red-dark);
  background: #fff;
  font-size: 0.78rem;
  font-weight: 850;
  text-decoration: none;
}

.help-actions .help-secondary {
  justify-content: center;
  color: #fff;
  background: transparent;
}

.help-card > small {
  display: block;
  margin-top: 20px;
  color: rgb(255 255 255 / 58%);
  font-size: 0.68rem;
  line-height: 1.5;
}

.travel-note {
  padding: 90px 24px;
  color: #fff;
  background: linear-gradient(90deg, rgb(88 0 25 / 92%), rgb(151 0 43 / 78%)), url("../images/banners/onmt-desktop-fr.jpg") center / cover;
  text-align: center;
}

.travel-note > p {
  color: #f5c46a;
}

.site-footer {
  display: flex;
  min-height: 130px;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 30px;
  color: rgb(255 255 255 / 72%);
  background: #252326;
}

.site-footer img {
  width: 112px;
  filter: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: 108px 48px 1fr auto;
  }

  .primary-nav {
    gap: 18px;
  }

  .primary-nav a {
    font-size: 0.82rem;
  }

  .header-actions {
    gap: 10px;
  }

  .language-button {
    display: none;
  }

  .login-button {
    min-width: 104px;
    padding-inline: 10px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-card {
    min-height: 308px;
  }

  .benefit-icon {
    margin-bottom: 28px;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: 665px;
    background-image: url("../images/banners/marrakech-menara-mobile.jpg");
    background-position: center 44%;
  }

  .site-header {
    height: 74px;
  }

  .header-inner {
    position: relative;
    grid-template-columns: 104px 1fr auto;
  }

  .alliance-logo {
    justify-self: start;
    margin-left: 10px;
  }

  .menu-toggle {
    display: block;
    width: 45px;
    height: 42px;
    padding: 9px;
  }

  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background: #fff;
  }

  .primary-nav {
    position: absolute;
    top: 74px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 14px 22px 20px;
    background: rgb(24 28 30 / 97%);
    flex-direction: column;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 12px 0;
    border-bottom: 1px solid rgb(255 255 255 / 12%);
    font-size: 0.95rem;
  }

  .header-actions {
    display: none;
  }

  .hero-content {
    width: min(100% - 42px, 680px);
    align-items: flex-start;
    margin-top: 74px;
  }

  .hero-message {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 8vw, 3.4rem);
  }

  .booking-overlap {
    width: min(100% - 24px, 700px);
    margin-top: -112px;
  }

  .service-tabs {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .service-tabs::-webkit-scrollbar { display: none; }

  .service-tab {
    min-width: 178px;
    flex: 1 0 auto;
  }

  .service-panel {
    padding: 26px 18px;
  }

  .route-grid,
  .details-grid {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .swap-button {
    position: absolute;
    right: 30px;
    margin-top: 50px;
    transform: rotate(90deg);
  }

  .route-grid > .form-control:last-child::after,
  .required-control::after {
    display: none;
  }

  .details-grid {
    margin-top: 25px;
  }

  .booking-details-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .passenger-control,
  .contact-grid .search-flights {
    grid-column: 1 / -1;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .help-card {
    position: relative;
    top: auto;
  }

}

@media (max-width: 520px) {
  .hero-message {
    display: block;
  }

  .hero-message p {
    margin-top: 10px;
  }

  .booking-details-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .passenger-control,
  .contact-grid .search-flights {
    grid-column: auto;
  }

  .support-actions a {
    flex: 1 1 calc(50% - 10px);
    text-align: center;
  }

  .header-inner {
    width: calc(100% - 20px);
  }

  .brand {
    margin-left: -10px;
    background: #c20831;
  }

  .brand img {
    width: 82px;
    filter: none;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgb(12 17 20 / 69%), rgb(12 17 20 / 16%));
  }

  .hero-content {
    width: calc(100% - 36px);
    gap: 14px;
    margin-top: 105px;
  }

  .campaign-mark {
    width: 18px;
  }

  .campaign-mark span {
    width: 5px;
    height: 23px;
  }

  .hero-content p br {
    display: none;
  }

  .hero-pagination {
    right: 18px;
    bottom: 104px;
  }

  .trip-switch {
    margin-bottom: 29px;
  }

  .trip-switch button {
    padding-inline: 6px;
    font-size: 0.83rem;
  }

  .quick-panel {
    align-items: flex-start;
    padding: 32px 24px;
    flex-direction: column;
  }

  .support-actions,
  .support-actions-wide {
    width: 100%;
    max-width: none;
    justify-content: flex-start;
  }

  .feedback-button {
    top: auto;
    right: 12px;
    bottom: 12px;
    width: 48px;
    height: 48px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
    box-shadow: 0 8px 24px rgb(88 0 24 / 28%);
    transform: none;
  }

  .feedback-button span { font-size: 1rem; }

  .discover-section {
    margin-top: 44px;
    padding-top: 55px;
  }

  .site-footer {
    gap: 15px;
    flex-direction: column;
  }

  .benefits-section {
    padding: 62px 0 55px;
  }

  .benefits-inner {
    width: calc(100% - 24px);
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 298px;
    padding-inline: 28px;
  }

  .faq-section {
    padding: 68px 0 72px;
  }

  .faq-inner {
    width: calc(100% - 24px);
  }

  .faq-heading {
    margin-bottom: 30px;
  }

  .faq-heading h2 {
    font-size: 2.55rem;
  }

  .faq-item summary {
    padding: 18px 50px 18px 17px;
    font-size: 0.9rem;
  }

  .faq-item summary::before,
  .faq-item summary::after {
    right: 18px;
  }

  .faq-answer {
    padding: 0 20px 19px 17px;
  }

  .help-card {
    padding: 26px 23px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

@media (max-width: 1120px) {
  .flight-row {
    grid-template-columns: 44px minmax(135px, 1fr) 22px minmax(135px, 1fr) 96px 112px 98px 98px;
  }

  .book-now {
    grid-column: 8;
  }

  .fare-link:last-of-type {
    display: none;
  }
}

@media (max-width: 900px) {
  .flight-row {
    gap: 10px 14px;
    padding: 18px;
    grid-template-columns: 42px minmax(0, 1fr) 22px minmax(0, 1fr) auto;
  }

  .flight-airline {
    grid-row: 1 / span 2;
  }

  .seat-badge {
    justify-self: end;
  }

  .starting-fare {
    padding: 9px 0 0;
    border-top: 1px solid #ececef;
    border-right: 0;
    grid-column: 2;
    text-align: left;
  }

  .fare-link,
  .fare-link:last-of-type {
    display: block;
    padding-top: 9px;
    border-top: 1px solid #ececef;
    border-right: 0;
  }

  .book-now {
    align-self: end;
    grid-column: 5;
    grid-row: 2;
  }
}

@media (max-width: 640px) {
  .featured-flights {
    width: min(100% - 24px, 560px);
    margin-top: 62px;
  }

  .featured-heading {
    align-items: flex-start;
    margin-bottom: 28px;
    flex-direction: column;
  }

  .featured-heading h2 {
    font-size: 2.75rem;
  }

  .fare-update {
    font-size: 0.87rem;
  }

  .view-more {
    min-height: 42px;
    padding: 9px 17px;
  }

  .flight-row {
    gap: 13px 9px;
    grid-template-columns: 38px 1fr 18px 1fr;
  }

  .flight-airline {
    width: 38px;
    height: 38px;
    grid-row: 1;
  }

  .flight-airline img {
    width: 31px;
  }

  .route-direction {
    font-size: 1.1rem;
  }

  .flight-point strong {
    font-size: 0.78rem;
  }

  .flight-point small {
    align-items: flex-start;
    font-size: 0.66rem;
    white-space: normal;
  }

  .seat-badge {
    justify-self: start;
    grid-column: 2 / span 3;
  }

  .starting-fare {
    grid-column: 2 / span 3;
  }

  .fare-link,
  .fare-link:last-of-type {
    display: block;
    grid-column: span 2;
  }

  .book-now {
    justify-self: stretch;
    grid-column: 1 / -1;
    grid-row: auto;
    text-align: center;
  }
}

@media (max-width: 820px) {
  .offers-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .offer-viewport { min-height: 390px; }
  .offer-copy { left: 45px; max-width: 330px; }

  .offer-copy-right {
    right: 42px;
    left: auto;
    width: min(360px, 54%);
  }
}

@media (max-width: 520px) {
  .offers-section {
    width: calc(100% - 24px);
    margin: 62px auto 58px;
  }

  .offers-heading { margin-bottom: 23px; }
  .offers-heading h2 { font-size: 2.55rem; }

  .disruption-ticker {
    min-height: 39px;
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .disruption-ticker > strong {
    padding-inline: 10px;
    font-size: 0.57rem;
  }

  .ticker-window p { font-size: 0.67rem; }
  .offer-viewport { min-height: 440px; }

  .offer-slide picture img,
  .offer-slide > img { object-position: center; }

  .offer-destination::after {
    background: linear-gradient(180deg, rgb(25 18 20 / 12%), rgb(25 18 20 / 82%) 65%);
  }

  .offer-copy,
  .offer-copy-right {
    top: auto;
    right: 18px;
    bottom: 42px;
    left: 18px;
    width: auto;
    max-width: none;
    padding: 18px;
    color: #fff;
    background: rgb(50 18 29 / 78%);
    transform: none;
    backdrop-filter: blur(7px);
  }

  .offer-copy h3,
  .offer-copy-right h3 { font-size: 2rem; }
  .offer-copy-right > p { color: #ffd2dd; }
  .offer-copy > span { margin-top: 9px; font-size: 0.85rem; }
  .offer-copy > a { min-height: 40px; margin-top: 14px; }

  .offer-arrow {
    top: 29px;
    width: 36px;
    height: 36px;
    transform: none;
  }

  .offer-prev { left: 11px; }
  .offer-next { right: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-window p,
  .offer-slide.is-active { animation: none; }

  .ticker-window p {
    width: auto;
    padding: 8px 12px;
    white-space: normal;
    transform: none;
  }
}
