/* ============================================================
   go2 • San Diego — Shared Stylesheet
   ============================================================ */

/* ---- Google Fonts are loaded in each HTML head ---- */

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #F4FAFB;
  color: #1C1C1C;
  line-height: 1.6;
}
img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: #003D4F;
  color: #fff;
  padding: 20px 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.announcement-bar a {
  color: #80DEEA;
  text-decoration: underline;
  margin-left: 8px;
}
.announcement-tagline {
  position: absolute;
  right: 24px;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
/* FPO image placeholder in announcement bar */
.announcement-img-fpo {
  position: absolute;
  left: 24px;
  width: 120px;
  height: 24px;
  border: 1px dashed rgba(255,255,255,0.3);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}

/* ============================================================
   HEADER & NAV
   ============================================================ */
header {
  background: #F4FAFB;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #B2EBF2;
  position: sticky; /* kept for stacking context */
}
.header-tagline {
  font-size: 11px;
  font-weight: 500;
  color: #aaa;
  letter-spacing: 0.03em;
  white-space: nowrap;
  margin-left: 20px;
  flex-shrink: 0;
}
@media (max-width: 1000px) { .header-tagline { display: none; } }
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: #1C1C1C;
  letter-spacing: -0.02em;
  line-height: 1;
  display: inline-flex;
  align-items: flex-end;
  gap: 0;
}
.logo-go {
  font-size: 0.68em;
}
.logo-2 {
  font-size: 1.45em;
  line-height: 1;
  margin-right: 0.05em;
  color: #003D4F;
}
.logo-dot {
  display: inline-block;
  width: 0.38em;
  height: 0.38em;
  background: #0097A7;
  border-radius: 50%;
  margin: 0 0.28em;
  margin-bottom: 0.2em;
  flex-shrink: 0;
}
.logo-city {
  font-size: 1em;
}

/* ── DESKTOP NAV (stacked labels + pipes) ── */
#main-nav {
  display: flex;
  align-items: center;
}
#main-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 16px;
  position: relative;
  text-decoration: none;
}
#main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 2px;
  background: #0097A7;
  transform: scaleX(0);
  transition: transform 0.25s;
}
#main-nav a:hover::after,
#main-nav a.active::after { transform: scaleX(1); }

.nav-day {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0097A7;
  line-height: 1;
  transition: color 0.2s;
}
.nav-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  line-height: 1;
  transition: color 0.2s;
  white-space: nowrap;
}
#main-nav a:hover .nav-title { color: #1C1C1C; }
#main-nav a.active .nav-title { color: #1C1C1C; }
#main-nav a.active .nav-day { color: #004D58; }
/* Category-level nav items (Families, Foodies) — both lines teal */
#main-nav a.nav-cat .nav-title { color: #0097A7; }
#main-nav a.nav-cat:hover .nav-title { color: #006064; }
#main-nav a.nav-cat.active .nav-title { color: #004D58; }

.nav-pipe {
  color: #C4E6EA;
  font-size: 22px;
  font-weight: 100;
  line-height: 1;
  align-self: center;
  flex-shrink: 0;
  user-select: none;
  pointer-events: none;
}

/* ── HAMBURGER BUTTON ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid #B2EBF2;
  border-radius: 6px;
  cursor: pointer;
  padding: 4px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.hamburger:hover { background: #DDF8FB; }
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #1C1C1C;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU (lives inside <header>, slides below header-inner) ── */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #F4FAFB;
  border-top: 1px solid #DDF8FB;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  border-bottom: 1px solid #DDF8FB;
  text-decoration: none;
  transition: background 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { background: #DDF8FB; }
.mobile-menu a.active { background: #E0F7FA; }
.mob-day {
  display: none;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: #0097A7;
  padding: 4px 8px;
  border-radius: 3px;
  flex-shrink: 0;
  min-width: 44px;
  text-align: center;
}
.mob-title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1C1C1C;
}

.nav-cta {
  background: #C4855A !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 13px !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #A36A42 !important; }
.nav-cta::after { display: none !important; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 32px;
  font-size: 13px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a { color: #0097A7; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: #bbb; }

/* ============================================================
   BACK STRIP (above hero on inner pages)
   ============================================================ */
.back-strip {
  padding: 12px 32px;
  display: flex;
  align-items: center;
}
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #C4855A;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
}
.back-btn:hover { background: #A36A42; transform: translateX(-2px); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  height: 58vh;
  min-height: 380px;
  overflow: hidden;
}
.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.0);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: none;
}
.page-hero-content {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 90%;
  max-width: 760px;
  color: #fff;
}
.page-hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #80DEEA;
  margin-bottom: 14px;
}
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 14px;
}
.page-hero-title em { font-style: italic; color: #F4BFA0; }
.page-hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}
.fpo-label {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(196,133,90,0.85);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  z-index: 2;
}

/* ============================================================
   SECTION LAYOUT
   ============================================================ */
.content-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 32px;
}

/* Left-aligned intro block */
.page-intro {
  text-align: left;
  padding: 72px 48px 24px;
  max-width: 860px;
  margin: 0;
}
.page-intro .section-label {
  display: block;
  margin-bottom: 14px;
}
.page-intro .section-title {
  font-size: clamp(30px, 4vw, 48px);
  margin-bottom: 18px;
}
.page-intro .section-desc {
  max-width: 640px;
  margin-bottom: 0;
  font-size: 17px;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #0097A7;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
}
.section-title em { font-style: italic; color: #C4855A; }
.section-desc {
  font-size: 16px;
  color: #666;
  max-width: 560px;
  line-height: 1.85;
  margin-bottom: 52px;
}

/* ============================================================
   FEATURED LAYOUT (big card + side stack)
   ============================================================ */
.featured-layout {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.featured-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.featured-card:hover img { transform: scale(1.04); }
.featured-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.42) 0%, transparent 55%);
}
.featured-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
  color: #fff;
}
.card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(196,133,90,0.92);
  color: #fff;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.card-big-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}
.card-big-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.84);
  line-height: 1.65;
}
.card-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: #F4BFA0;
  letter-spacing: 0.04em;
}

.side-stack { display: flex; flex-direction: column; gap: 24px; }
.side-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  flex: 1;
  min-height: 175px;
  cursor: pointer;
}
.side-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.side-card:hover img { transform: scale(1.05); }
.side-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.42) 0%, transparent 60%);
}
.side-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px;
  color: #fff;
}
.side-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
}
.side-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  margin-top: 5px;
}

/* ============================================================
   CARDS SECTION DIVIDER
   ============================================================ */
.cards-section-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 48px 0 28px;
}
.cards-section-divider::before,
.cards-section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #D8E8EA;
}
.cards-section-divider span {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0097A7;
  white-space: nowrap;
  padding: 5px 14px;
  border: 1.5px solid #0097A7;
  border-radius: 20px;
  background: #fff;
}

/* ============================================================
   3-UP CARDS
   ============================================================ */
.cards-3up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.card-3up {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.card-3up:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.11);
}
.card-3up-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.card-3up-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.card-3up:hover .card-3up-img img { transform: scale(1.07); }
.card-3up-body { padding: 24px; flex: 1; }
.card-3up-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0097A7;
  margin-bottom: 8px;
}
.card-3up-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  color: #1C1C1C;
}
.card-3up-desc {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
}
.card-3up-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-top: 1px solid #DDF8FB;
}
.card-3up-meta { font-size: 12px; color: #aaa; }
.card-3up-link { font-size: 12px; font-weight: 600; color: #C4855A; }

/* ============================================================
   DON'T LEAVE SECTION (2-card featured, shared across all pages)
   ============================================================ */
.dont-leave {
  padding: 36px 32px 0;
  max-width: 1200px;
  margin: 0 auto;
}
.dont-leave .section-label { color: #0097A7; margin-bottom: 10px; }
.dont-leave .section-title { margin-bottom: 10px; }
.dont-leave .section-desc { max-width: 600px; margin-bottom: 0; }
.dont-leave-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.dl-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}
.dl-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.1);
}
.dl-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.dl-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.dl-card:hover .dl-card-img img { transform: scale(1.05); }
.dl-card-body { padding: 28px; }
.dl-card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0097A7;
  margin-bottom: 8px;
}
.dl-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 10px;
  color: #1C1C1C;
}
.dl-card-desc {
  font-size: 14px;
  color: #777;
  line-height: 1.75;
  margin-bottom: 16px;
}
.dl-card-link {
  font-size: 13px;
  font-weight: 600;
  color: #0097A7;
}
.dl-card-link:hover { color: #007080; }
.dl-card-detail {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #EEF5F6;
}
.dl-card-detail-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0097A7;
  margin-bottom: 5px;
}
.dl-card-detail-value {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}
@media (max-width: 860px) { .dont-leave-grid { grid-template-columns: 1fr; } }

/* ============================================================
   TIPS STRIP
   ============================================================ */
.tips-strip {
  background: #DDF8FB;
  padding: 60px 32px;
}
.tips-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.tips-strip h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
  color: #1C1C1C;
}
.tips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.tip-item { display: flex; gap: 14px; align-items: flex-start; }
.tip-icon {
  width: 46px; height: 46px;
  background: #0097A7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.tip-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #1C1C1C;
}
.tip-text p { font-size: 13px; color: #777; line-height: 1.65; }

/* ============================================================
   DAY NAVIGATION (prev/next)
   ============================================================ */
.day-nav {
  background: #003D4F;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.day-nav-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 32px 48px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  transition: background 0.2s;
  position: relative;
}
.day-nav-item:first-child { border-right: 1px solid rgba(255,255,255,0.08); }
.day-nav-item:hover { background: rgba(255,255,255,0.05); color: #fff; }
.day-nav-item.next { justify-content: flex-end; text-align: right; }
.day-nav-arrow {
  font-size: 28px;
  color: rgba(255,255,255,0.35);
  flex-shrink: 0;
}
.day-nav-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.day-nav-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

/* ============================================================
   QUOTE STRIP
   ============================================================ */
.quote-strip {
  background: linear-gradient(135deg, #00838F 0%, #006064 100%);
  padding: 72px 32px;
  text-align: center;
  color: #fff;
}
.quote-strip blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 3.5vw, 36px);
  font-style: italic;
  max-width: 780px;
  margin: 0 auto 18px;
  line-height: 1.45;
}
.quote-strip cite {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-style: normal;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #003D4F;
  color: rgba(255,255,255,0.75);
  padding: 64px 32px 40px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.footer-logo span { color: #29B6F6; }
.footer-about {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: background 0.2s;
}
.social-btn:hover { background: rgba(255,255,255,0.2); }
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  #main-nav a { padding: 10px 10px; }
  #main-nav a::after { left: 10px; right: 10px; }
}
@media (max-width: 860px) {
  .hamburger { display: flex; }
  #main-nav { display: none; }
  .featured-layout { grid-template-columns: 1fr; }
  .side-stack { flex-direction: row; }
  .side-card { min-height: 220px; }
  .cards-3up { grid-template-columns: 1fr 1fr; }
  .tips-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .day-nav-item { padding: 24px 28px; }
}
@media (max-width: 600px) {
  .header-inner { padding: 0 20px; }
  .content-wrap { padding: 48px 20px; }
  .breadcrumb { padding: 12px 20px; }
  .cards-3up { grid-template-columns: 1fr; }
  .side-stack { flex-direction: column; }
  .tips-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .day-nav { grid-template-columns: 1fr; }
  .day-nav-item:first-child { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .page-hero { height: auto; min-height: unset; aspect-ratio: 16 / 9; }
}
