:root {
  --ink: #10131a;
  --muted: #53657d;
  --line: #dce9f7;
  --paper: #ffffff;
  --soft: #f2f9ff;
  --navy: #12345a;
  --navy-2: #1f5f94;
  --sky: #eaf7ff;
  --sky-strong: #ccecff;
  --gold: #ffc928;
  --gold-soft: #fff4c7;
  --green: #00a85a;
  --green-dark: #067647;
  --shadow: 0 18px 45px rgba(18, 52, 90, 0.12);
  --shadow-soft: 0 10px 26px rgba(18, 52, 90, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #eef9ff 0%, #ffffff 34%, #f4fbff 100%);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(231, 233, 239, 0.92);
  box-shadow: 0 10px 26px rgba(18, 52, 90, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1180px, calc(100% - 28px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  min-width: 210px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  text-decoration: none;
}

.brand img {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  box-shadow: 0 0 0 4px #eef2ff;
}

.brand strong {
  display: block;
  font-size: 18px;
}

.brand span {
  display: block;
  font-size: 13px;
  color: var(--muted);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.main-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #202636;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus {
  border-color: rgba(31, 95, 148, 0.24);
  background: var(--sky);
}

.header-phone {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  white-space: nowrap;
  font-weight: 900;
  text-decoration: none;
}

.icon-links {
  display: flex;
  justify-content: flex-end;
  gap: 7px;
}

.icon-links a {
  min-width: 34px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--gold);
  color: #111;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(10, 35, 67, 0.84), rgba(31, 95, 148, 0.66) 46%, rgba(10, 35, 67, 0.52)),
    url("/assets/hero-taxi-naas.jpg") center / cover no-repeat;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  border: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(204, 236, 255, 0.34), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(10, 35, 67, 0.12));
  transform: none;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  min-height: 380px;
  margin: 0 auto;
  display: grid;
  align-content: center;
  padding: 76px 0;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: 46px;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--green-dark);
}

.hero h1 {
  max-width: 780px;
  margin: 0 0 16px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.96;
}

.hero p {
  max-width: 690px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.hero-card-top img {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #fff;
}

.hero-card-top strong,
.hero-card-top span {
  display: block;
}

.hero-card-top strong {
  font-size: 21px;
}

.hero-card-top span {
  color: rgba(255, 255, 255, 0.78);
}

.hero-card-actions {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-mini-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.hero-mini-list span {
  padding: 10px 11px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 22px rgba(0, 168, 90, 0.18);
}

.btn:hover,
.btn:focus {
  background: var(--green-dark);
}

.btn.secondary {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 22px rgba(18, 52, 90, 0.1);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: none;
}

.call-band {
  background: linear-gradient(90deg, var(--sky-strong), #f7fcff);
  color: #10131a;
  text-align: center;
  padding: 13px 16px;
  font-weight: 900;
}

.call-band a {
  text-decoration: none;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 66px 0;
}

.section.tight {
  padding-top: 34px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 12px;
}

.section h1,
.section h2 {
  margin: 0 0 15px;
  color: var(--navy);
  line-height: 1.12;
}

.section h1 {
  font-size: clamp(34px, 4.6vw, 58px);
}

.section h2 {
  font-size: clamp(28px, 3.4vw, 42px);
}

.section p {
  margin: 0 0 15px;
}

.muted {
  color: var(--muted);
  font-weight: 700;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 28px;
  padding-bottom: 0;
}

.trust-strip div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--navy);
  font-size: 18px;
}

.trust-strip span {
  color: var(--muted);
}

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

.cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, var(--sky-strong), var(--green));
}

.card h2,
.card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.16;
}

.card p {
  color: var(--muted);
}

.card .btn {
  margin-top: auto;
  min-height: 42px;
  padding: 10px 14px;
  font-size: 14px;
}

.card .icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  border-radius: 16px;
  background: var(--gold-soft);
  color: #111;
  font-size: 13px;
  font-weight: 900;
}

.service-panel {
  background:
    linear-gradient(135deg, #eaf7ff 0%, #f7fcff 52%, #fff8dc 100%);
  border-block: 1px solid rgba(18, 52, 90, 0.08);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(290px, 0.82fr);
  gap: 42px;
  align-items: start;
}

.widget-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.widget {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 18px;
  background: #e9f7ff;
  color: var(--navy);
  text-align: center;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(18, 52, 90, 0.08);
}

.widget:hover,
.widget:focus {
  background: var(--sky-strong);
}

.service-list {
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  margin: 11px 0;
  padding-left: 30px;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px #e9fff4;
}

.logo-space,
.ad-space {
  min-height: 140px;
  display: grid;
  place-items: center;
  padding: 22px;
  border: 1px dashed rgba(16, 26, 58, 0.28);
  border-radius: 24px;
  background: #fff;
  color: var(--muted);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.image-card {
  margin: 28px 0 0;
  overflow: hidden;
  border: 1px solid rgba(16, 26, 58, 0.1);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.image-card figcaption {
  padding: 12px 16px 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.ad-space {
  min-height: 280px;
}

.promo-ad {
  place-items: stretch;
  gap: 14px;
  border-style: solid;
  text-align: left;
}

.promo-ad img {
  display: block;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(18, 52, 90, 0.12);
}

.promo-ad strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.2;
}

.promo-ad p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.promo-ad a {
  display: inline-flex;
  align-items: center;
  margin: 6px 8px 0 0;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
}

.contact-box {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.contact-box a {
  font-weight: 900;
}

.mini-form {
  display: grid;
  gap: 12px;
}

.mini-form label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  font-weight: 900;
}

.mini-form input,
.mini-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f5fbff;
  color: var(--ink);
  font: inherit;
}

.mini-form textarea {
  min-height: 132px;
  resize: vertical;
}

.embed-wrap {
  overflow: hidden;
  margin-top: 28px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.embed-wrap iframe {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 18px;
  background: #fff;
}

.notice {
  margin: 24px 0 0;
  padding: 18px 20px;
  border-left: 6px solid var(--gold);
  border-radius: 18px;
  background: #f5fbff;
}

.map-frame {
  width: 100%;
  min-height: 330px;
  border: 0;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.footer {
  margin-top: 36px;
  background:
    radial-gradient(circle at 18% 0%, rgba(204, 236, 255, 0.28), transparent 24rem),
    #12345a;
  color: #fff;
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.footer a {
  color: #fff;
}

.footer strong {
  display: block;
  margin-bottom: 4px;
}

.footer small {
  display: block;
  color: rgba(255, 255, 255, 0.78);
}

.mobile-action-bar {
  display: none;
}

@media (max-width: 1080px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .header-inner {
    display: grid;
    grid-template-columns: 1fr;
    padding: 12px 0;
  }

  .main-nav,
  .icon-links {
    justify-content: flex-start;
  }

  .hero-grid,
  .trust-strip,
  .cards,
  .cards.three,
  .widget-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 86px;
  }

  .header-inner,
  .section,
  .hero-inner,
  .footer-inner {
    width: min(100% - 24px, 1120px);
  }

  .main-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 4px;
  }

  .main-nav a {
    flex: 0 0 auto;
  }

  .icon-links {
    display: none;
  }

  .header-phone {
    width: 100%;
    min-height: 48px;
    margin-top: 0;
    font-size: 18px;
  }

  .site-header.is-mobile-collapsed .header-inner {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 6px 0;
  }

  .site-header.is-mobile-collapsed .main-nav,
  .site-header.is-mobile-collapsed .icon-links {
    display: none;
  }

  .site-header.is-mobile-collapsed .brand {
    min-width: 0;
    gap: 8px;
  }

  .site-header.is-mobile-collapsed .brand img {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    box-shadow: 0 0 0 2px #eef2ff;
  }

  .site-header.is-mobile-collapsed .brand strong {
    font-size: 15px;
    line-height: 1.05;
  }

  .site-header.is-mobile-collapsed .brand span {
    font-size: 12px;
    line-height: 1.05;
  }

  .site-header.is-mobile-collapsed .header-phone {
    width: auto;
    min-height: 38px;
    margin-top: 0;
    padding: 7px 10px;
    font-size: 14px;
    white-space: nowrap;
  }

  .hero-inner {
    padding: 42px 0;
  }

  .hero h1 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .hero p {
    font-size: 18px;
  }

  .button-row,
  .btn,
  .hero-card-actions .btn {
    width: 100%;
  }

  .hero-mini-list {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 50px 0;
  }

  .card,
  .contact-box,
  .hero-card {
    padding: 22px;
    border-radius: 22px;
  }

  .embed-wrap {
    margin-inline: -6px;
    padding: 6px;
    border-radius: 20px;
  }

  .mobile-action-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 80;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(18, 52, 90, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 38px rgba(18, 52, 90, 0.2);
    backdrop-filter: blur(14px);
  }

  .mobile-action-bar a {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-call {
    background: var(--green);
  }

  .mobile-book {
    background: var(--navy-2);
  }
}


/* What's On in Naas interactive page */
.whats-on-hero .hero-inner {
  min-height: 430px;
}

.wo-hero-card {
  align-self: center;
  margin-top: 28px;
}

.hero-mini-link {
  min-height: 46px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.94);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.hero-mini-link:hover,
.hero-mini-link:focus-visible {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.34);
  outline: none;
}

.wo-race-strip {
  padding-bottom: 24px;
}

.race-highlight-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.race-card {
  min-height: 160px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.race-card span,
.race-card small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.race-card strong {
  color: var(--navy);
  font-size: 19px;
  line-height: 1.15;
}

.race-card em {
  color: var(--green-dark);
  font-style: normal;
  font-weight: 900;
}

.race-card.is-next {
  border-color: var(--gold);
  background: linear-gradient(135deg, #fff8dc, #fff 62%, #eaf7ff);
  box-shadow: 0 18px 38px rgba(255, 201, 40, 0.24);
}

.wo-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 14px;
}

.wo-filter,
.wo-section-select,
.wo-place-button {
  font: inherit;
}

.wo-filter {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.wo-filter.is-active,
.wo-filter:hover,
.wo-filter:focus {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.wo-select-label {
  display: none;
}

.wo-section-select {
  display: none;
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

.wo-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.35fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-top: 22px;
}

.wo-place-list {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 10px;
  max-height: calc(100vh - 140px);
  overflow: auto;
  padding-right: 4px;
}

.wo-place-button {
  display: grid;
  gap: 5px;
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.wo-place-button strong {
  color: var(--navy);
  line-height: 1.18;
}

.wo-place-button small {
  color: var(--muted);
  font-weight: 800;
}

.wo-place-button.is-active,
.wo-place-button:hover,
.wo-place-button:focus {
  border-color: var(--green);
  background: #e9fff4;
}

.wo-detail {
  min-height: 520px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.wo-detail-head span,
.wo-feed-title span {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.wo-detail h3 {
  margin: 6px 0 10px;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}

.wo-actions {
  margin: 18px 0;
}

.wo-next-race {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff7cf;
  border: 1px solid rgba(255, 201, 40, 0.65);
}

.wo-next-race strong {
  color: var(--navy);
}

.wo-next-race span {
  color: var(--green-dark);
  font-weight: 900;
}

.wo-fixtures {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 18px 0;
  padding: 18px;
  border-radius: 18px;
  background: #f5fbff;
}

.wo-fixtures h4 {
  margin: 0;
  color: var(--navy);
}

.wo-fixtures ul {
  margin: 0;
  padding-left: 18px;
}

.wo-feed-box {
  margin-top: 20px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #f8fcff;
}

.wo-feed-title {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 5px 4px 12px;
}

.wo-feed-title strong {
  color: var(--navy);
  font-size: 18px;
}

.fb-page,
.fb-page span,
.fb-page iframe {
  max-width: 100% !important;
}

.wo-empty-feed {
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  text-align: center;
}

.wo-empty-feed strong {
  display: block;
  color: var(--navy);
  font-size: 22px;
}

.wo-static-directory {
  background: #f7fbff;
}

.wo-static-section {
  margin-top: 28px;
}

.wo-static-section h2 {
  margin-bottom: 6px;
  color: var(--navy);
}

.wo-static-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.wo-static-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.wo-static-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 20px;
}

.wo-static-card p {
  margin: 0 0 10px;
}

.wo-static-latest {
  color: var(--muted);
  font-size: 14px;
}

.wo-static-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-weight: 800;
}

.wo-static-fixtures {
  margin: 0 0 12px;
  padding-left: 18px;
}

.wo-travel-note .contact-box h3 {
  margin-top: 0;
  color: var(--navy);
  font-size: 24px;
}

@media (max-width: 1080px) {
  .race-highlight-grid,
  .wo-static-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .wo-layout,
  .wo-fixtures,
  .wo-static-grid {
    grid-template-columns: 1fr;
  }

  .wo-place-list {
    position: static;
    max-height: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .race-highlight-grid,
  .wo-place-list {
    grid-template-columns: 1fr;
  }

  .wo-toolbar {
    display: none;
  }

  .wo-select-label,
  .wo-section-select {
    display: block;
  }

  .wo-select-label {
    margin-top: 18px;
    color: var(--navy);
    font-weight: 900;
  }

  .wo-detail {
    padding: 18px;
    border-radius: 20px;
  }
}
