/*
Theme Name: Oasis Tour
Author: Oasis Tour
Description: An independent, editorial concert guide with accessible date discovery and evergreen destinations.
Version: 1.3.0
Template: kadence
Requires at least: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: oasis-tour
*/

:root {
  /* Color Palette */
  --ink: #19221f;
  --muted: #59655f;
  --paper: #fafbf8;
  --line: #dfe4dc;
  --lime: #d3f36b;
  --deep: #11241c;
  --soft: #f0f3ea;
  --white: #fff;
  --radius: 10px;

  /* Kadence-aligned Typography Tokens */
  --global-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  --global-heading-font-family: var(--global-font-family);
  --global-serif-font: Georgia, Cambria, "Times New Roman", Times, serif;

  /* Harmonious Fluid Typography Scale */
  --font-h1: clamp(28px, 3.2vw, 38px);
  --font-h2: clamp(22px, 2.2vw, 28px);
  --font-h3: clamp(18px, 1.4vw, 21px);
  --font-h4: 15px;
  --font-lead: 16px;
  --font-body: 15.5px;
  --font-small: 13px;
  --font-micro: 11px;

  --lh-tight: 1.18;
  --lh-heading: 1.26;
  --lh-body: 1.68;
  --lh-prose: 1.74;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--global-font-family);
  font-size: var(--font-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font: inherit;
}

button, a, input, select, textarea, summary {
  -webkit-tap-highlight-color: transparent;
}

button, a {
  touch-action: manipulation;
}

a:hover {
  color: #3b5914;
}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid #6f901e;
  outline-offset: 3px;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

figure {
  margin: 0;
}

[hidden] {
  display: none !important;
}

.wrap {
  width: min(1200px, calc(100% - 64px));
  margin: auto;
}

.section {
  padding-top: 56px;
  padding-bottom: 56px;
}

/* Headings Typography Hierarchy */
h1, h2, h3, h4, h5, h6, p {
  margin-top: 0;
}

h1, h2, h3, h4 {
  font-family: var(--global-heading-font-family);
  color: var(--ink);
  letter-spacing: -0.028em;
}

h1 {
  font-size: var(--font-h1);
  line-height: var(--lh-tight);
  font-weight: 800;
  margin-bottom: 18px;
}

h2 {
  font-size: var(--font-h2);
  line-height: var(--lh-heading);
  font-weight: 750;
  margin-bottom: 14px;
}

h3 {
  font-size: var(--font-h3);
  line-height: 1.35;
  font-weight: 700;
  margin-bottom: 10px;
}

h4 {
  font-size: var(--font-h4);
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 8px;
}

p {
  margin-bottom: 18px;
  font-size: var(--font-body);
  line-height: var(--lh-body);
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.5;
  color: #244a14;
}

/* Topline Banner */
.topline {
  background: var(--ink);
  color: #dfe4dc;
  font-size: 11px;
  letter-spacing: 0.03em;
  padding: 8px 0;
}

.topline .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topline a:hover {
  color: var(--lime);
}

/* Header & Nav */
.site-header {
  background: rgba(250, 251, 248, 0.98);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
}

.admin-bar .site-header {
  top: 32px;
}

.header-inner {
  height: 74px;
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border: 2px solid currentColor;
  font-size: 30px;
  line-height: 1;
  font-family: var(--global-serif-font);
  font-style: italic;
  letter-spacing: -0.1em;
  padding-right: 4px;
  padding-bottom: 5px;
  transform: rotate(-5deg);
  border-radius: 4px;
}

.brand-light {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.01em;
  opacity: 0.85;
}

#primary-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
}

#primary-nav a {
  padding: 8px 0;
  color: var(--ink);
  transition: color 0.15s;
}

#primary-nav a:hover {
  color: #3b5914;
}

#primary-nav .current {
  border-bottom: 2px solid var(--ink);
  color: #19221f;
}

.header-cta {
  border: 1px solid var(--ink);
  padding: 9px 16px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 700;
  transition: background 0.15s, color 0.15s;
}

.header-cta:hover {
  background: var(--ink);
  color: #fff;
}

.menu-toggle {
  display: none;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -100px;
  background: var(--lime);
  color: var(--ink);
  z-index: 10000;
  padding: 10px 14px;
  font-weight: 700;
}

.skip-link:focus {
  top: 10px;
}

/* Hero Section */
.hero {
  background: var(--ink);
  color: white;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 500px;
  gap: 40px;
  align-items: stretch;
}

.hero-copy {
  padding: 52px 0 38px;
  position: relative;
  z-index: 1;
}

.hero-copy .eyebrow {
  color: #e2e8f0 !important;
  font-size: 10.5px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700 !important;
}

.live-dot, .status-box i {
  height: 7px;
  width: 7px;
  border-radius: 50%;
  display: inline-block;
  background: var(--lime);
}

.hero h1 {
  font-size: clamp(32px, 3.8vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  color: #ffffff !important;
  font-weight: 800;
}

.hero h1 em {
  font-family: var(--global-serif-font);
  color: var(--lime) !important;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.03em;
}

.hero-deck {
  font-size: 15.5px;
  line-height: 1.65;
  color: #f1f5f9 !important;
  max-width: 440px;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 26px 0 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
  border-radius: 6px;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  gap: 10px;
  transition: background 0.16s, transform 0.16s;
}

.button:hover {
  background: #304638;
  color: white;
  transform: translateY(-1px);
}

.button.lime {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}

.button.lime:hover {
  background: #e4ff91;
  color: var(--ink);
}

.hero-text-link {
  font-size: 12.5px;
  color: #e6ebe3;
  border-bottom: 1px solid #79857c;
  padding: 5px 0;
  font-weight: 600;
}

.hero-text-link:hover {
  color: var(--lime);
}

.hero-facts {
  display: flex;
  gap: 28px;
  padding-top: 22px;
  border-top: 1px solid #435047;
  max-width: 440px;
}

.hero-facts strong {
  font-size: 21px;
  letter-spacing: -0.03em;
  display: block;
  line-height: 1.2;
  color: #ffffff !important;
}

.hero-facts span {
  font-size: 10.5px;
  color: #cbd5e1 !important;
  display: block;
  margin-top: 3px;
}

.hero-photo {
  position: relative;
  margin-right: -32px;
  min-height: 100%;
  overflow: hidden;
}

.hero-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 50%;
  filter: grayscale(1);
  opacity: 0.88;
}

.hero-photo:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink), transparent 25%), linear-gradient(0deg, rgba(25, 34, 31, 0.85), transparent 40%);
  pointer-events: none;
}

.hero-photo figcaption {
  position: absolute;
  bottom: 22px;
  left: 36px;
  right: 25px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-photo figcaption span {
  font-size: 9.5px;
  letter-spacing: 0.16em;
  color: #d1dad0;
  font-weight: 600;
}

.hero-photo figcaption a {
  color: #c3cdc2;
  font-size: 9.5px;
}

.photo-sticker {
  position: absolute;
  right: 24px;
  top: 28px;
  z-index: 2;
  border: 1px solid var(--lime);
  color: var(--lime);
  padding: 12px 14px;
  line-height: 1.05;
  font-weight: 800;
  font-size: 17px;
  transform: rotate(7deg);
  letter-spacing: -0.04em;
  background: rgba(25, 34, 31, 0.85);
  backdrop-filter: blur(4px);
  border-radius: 6px;
}

/* Trust Strip */
.trust-strip {
  border-bottom: 1px solid var(--line);
  background: #f0f3ea;
}

.trust-strip .wrap {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 11.5px;
  font-weight: 600;
  color: #34483b;
}

/* Section Headings */
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  font-size: var(--font-h2);
}

.section-heading .eyebrow {
  margin-bottom: 10px;
  color: #244a14 !important;
  font-weight: 700 !important;
}

.section-heading > p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* Schedule & Dates */
.schedule-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 36px;
}

.filters {
  background: var(--soft);
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 12px;
}

.filters label > span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
  color: #34483b;
}

.filters input, .filters select {
  width: 100%;
  height: 40px;
  background: white;
  border: 1px solid #d5dccf;
  border-radius: 5px;
  font-size: 13px;
  padding: 8px 12px;
  color: var(--ink);
}

.list-meta {
  font-size: 11px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  margin: 16px 0 8px;
}

.date-list {
  border-top: 1px solid var(--line);
}

.date-row {
  padding: 15px 0;
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  transition: background 0.15s;
}

.date-row:hover {
  background: #f3f5ed;
}

.date-row time {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: white;
  border-radius: 6px;
  width: 56px;
  min-width: 56px;
  height: 68px;
  line-height: 1.15;
}

.date-row time span {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
  color: #42643b;
}

.date-row time strong {
  font-size: 20px;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.date-row time small {
  font-size: 9px;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 2px;
}

.event-info {
  flex: 1;
}

.event-info h3 {
  font-size: 15px;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}

.event-info p {
  font-size: 12.5px;
  line-height: 1.45;
  margin: 0 0 2px;
  color: #3e4c44;
}

.event-info small {
  font-size: 10.5px;
  color: var(--muted);
}

.event-status {
  font-size: 10px;
  color: #244a14;
  font-weight: 600;
  white-space: nowrap;
}

.event-button {
  font-size: 11.5px;
  padding: 8px 14px;
  white-space: nowrap;
}

.secondary {
  background: white;
  color: var(--ink);
  border: 1px solid #bec8b7;
}

.secondary:hover {
  background: var(--soft);
  color: var(--ink);
}

.show-dates {
  border-radius: 6px;
  width: 100%;
  font-size: 12.5px;
  font-weight: 700;
  padding: 12px;
  margin-top: 16px;
}

.source-note {
  font-size: 10.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 16px;
  margin-bottom: 0;
}

.source-note a {
  text-decoration: underline;
}

/* Sidebar Elements */
.schedule-aside, .article-aside {
  padding-top: 0;
}

.status-box {
  background: var(--deep);
  color: white;
  padding: 24px;
  border-radius: 10px;
}

.status-box .eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--lime) !important;
  font-size: 10.5px;
  margin-bottom: 16px;
}

.status-box h3 {
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 12px;
  color: #ffffff !important;
}

.status-box p {
  font-size: 13px;
  color: #e2e8f0 !important;
  line-height: 1.65;
  margin-bottom: 18px;
}

.status-box .button {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
  font-size: 12px;
  padding: 10px 14px;
  width: 100%;
}

.status-box small {
  display: block;
  font-size: 10px;
  color: #cbd5e1 !important;
  margin-top: 14px;
}

.aside-note {
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-top: 18px;
  padding: 22px;
  background: #f0f3ea;
}

.aside-note .eyebrow {
  color: #244a14 !important;
  font-weight: 700 !important;
  display: block;
  margin-bottom: 12px;
}

.aside-note h3 {
  font-size: 18px;
  line-height: 1.28;
  margin-bottom: 8px;
}

.aside-note p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.aside-note > a {
  font-size: 12.5px;
  font-weight: 700;
  display: block;
  margin-top: 10px;
  color: #1e3a0f;
}

/* Editorial Band */
.editorial-band {
  background: var(--ink);
  color: white;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 52px;
  padding-bottom: 52px;
}

.editorial-grid figure {
  position: relative;
}

.editorial-grid img {
  height: 320px;
  width: 100%;
  object-fit: cover;
  filter: grayscale(1);
  border-radius: 6px;
}

.editorial-grid figcaption {
  font-size: 10px;
  color: #9faea3;
  margin-top: 8px;
}

.editorial-grid .eyebrow {
  color: var(--lime) !important;
  margin-bottom: 16px;
}

.editorial-grid h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.24;
  margin-bottom: 18px;
  color: #ffffff !important;
}

.editorial-grid p:not(.eyebrow) {
  font-size: 14.5px;
  color: #f1f5f9 !important;
  line-height: 1.72;
  max-width: 480px;
}

.editorial-grid .button {
  margin-top: 6px;
}

.text-link {
  font-size: 12.5px;
  font-weight: 700;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  white-space: nowrap;
}

/* City Grid & Cards */
.city-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 22px !important;
}

.city-card {
  position: relative !important;
  border: 1px solid #dfe4dc !important;
  border-radius: 10px !important;
  background: #ffffff !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 3px 14px rgba(25, 34, 31, 0.04) !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease !important;
  text-decoration: none !important;
  color: inherit !important;
  padding: 0 !important;
}

.city-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 10px 26px rgba(25, 34, 31, 0.1) !important;
  border-color: #9bb385 !important;
  color: inherit !important;
}

.city-card-thumb {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 16/9 !important;
  overflow: hidden !important;
  background: #11241c !important;
}

.city-card-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.35s ease !important;
  display: block !important;
}

.city-card:hover .city-card-thumb img {
  transform: scale(1.05) !important;
}

.city-card-thumb .city-number {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  background: rgba(25, 34, 31, 0.8) !important;
  backdrop-filter: blur(5px) !important;
  color: #ffffff !important;
  font-size: 10.5px !important;
  font-weight: 700 !important;
  padding: 3px 8px !important;
  border-radius: 5px !important;
  font-family: monospace !important;
  letter-spacing: 0.05em !important;
}

.city-card-body {
  padding: 18px 20px 20px !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
}

.city-card-body .eyebrow {
  color: #244a14 !important;
  font-size: 10px !important;
  letter-spacing: 0.12em !important;
  margin-bottom: 6px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
}

.city-card-body h3 {
  margin: 0 0 6px !important;
  font-size: 19px !important;
  font-weight: 800 !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  color: #19221f !important;
  letter-spacing: -0.025em !important;
}

.city-card-body h3 span {
  font-size: 16px !important;
  color: #244a14 !important;
  transition: transform 0.2s ease !important;
}

.city-card:hover .city-card-body h3 span {
  transform: translate(2px, -2px) !important;
}

.city-card-body .city-venue {
  font-size: 13px !important;
  color: #4b5563 !important;
  margin: 0 0 14px !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
}

.city-card-body .city-badge {
  margin-top: auto !important;
  align-self: flex-start !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  color: #244a14 !important;
  background: #f0f3ea !important;
  border: 1px solid #dfe4dc !important;
  padding: 4px 10px !important;
  border-radius: 999px !important;
}

/* Guides Section */
.guides-section {
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.guide-card {
  display: block;
  padding: 24px;
  border: 1px solid #d5decd;
  border-radius: 8px;
  position: relative;
  background: var(--paper);
  min-height: 210px;
  transition: transform 0.2s, border-color 0.2s;
}

.guide-card:hover {
  transform: translateY(-3px);
  color: var(--ink);
  border-color: #91a575;
}

.guide-card .eyebrow {
  font-size: 10px;
  color: #244a14 !important;
  font-weight: 700 !important;
}

.guide-card h3 {
  font-size: 20px;
  line-height: 1.3;
  margin: 16px 0 10px;
  color: var(--ink);
}

.guide-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 18px;
}

.guide-card .arrow {
  font-size: 20px;
  position: absolute;
  right: 20px;
  bottom: 12px;
  color: #244a14;
}

/* Blog Cards */
.guide-card.blog-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  background: #fff;
}

.blog-card-thumb {
  height: 175px;
  width: 100%;
  overflow: hidden;
  background: var(--soft);
  border-bottom: 1px solid #d5decd;
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.guide-card.blog-card:hover .blog-card-thumb img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}

.guide-card.blog-card h3 {
  margin: 8px 0 8px;
  font-size: 18px;
  line-height: 1.35;
}

.guide-card.blog-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.blog-card-body .arrow {
  position: static;
  font-size: 12px;
  font-weight: 700;
  color: #244a14;
  margin-top: auto;
}

/* FAQ Section */
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 60px;
}

.faq-section .eyebrow {
  color: #244a14 !important;
  font-weight: 700 !important;
}

.faq-section h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.24;
}

.faq-section > div > p:not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.faqs details {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.faqs details:last-child {
  border-bottom: 1px solid var(--line);
}

.faqs summary {
  font-size: 15.5px;
  font-weight: 650;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink);
}

.faqs summary:after {
  content: '+';
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  color: #244a14;
}

.faqs details[open] summary:after {
  content: '−';
}

.faqs summary::-webkit-details-marker {
  display: none;
}

.faqs details p {
  font-size: 14px;
  line-height: 1.7;
  color: #4b5563;
  margin: 14px 28px 0 0;
}

.faqs details a {
  text-decoration: underline;
  color: #1e3a0f;
}

/* Final CTA */
.final-cta {
  background: var(--lime);
  border-radius: 10px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.final-cta > .eyebrow {
  width: 100%;
  font-size: 10.5px;
  margin-bottom: -8px;
  color: #244a14 !important;
}

.final-cta h2 {
  flex: 1;
  margin: 0;
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.22;
  color: var(--ink);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: #dce4db;
  padding: 52px 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 44px;
}

.footer-top > div:first-child > p {
  font-size: 14.5px;
  line-height: 1.55;
  letter-spacing: -0.02em;
  margin-top: 20px;
  color: #ffffff !important;
}

.footer-top .eyebrow {
  display: block;
  font-size: 10px;
  color: #93a88c;
  margin-bottom: 18px;
}

.footer-top > div:not(:first-child) > a {
  display: block;
  font-size: 12.5px;
  margin: 8px 0;
  color: #e2e8f0 !important;
}

.footer-top > div:not(:first-child) > p {
  font-size: 12px;
  color: #9faf9f;
}

.footer-top a:hover {
  color: var(--lime) !important;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  border-top: 1px solid #3c483e;
  padding-top: 20px;
  margin-top: 36px;
}

.footer-bottom p {
  font-size: 11px;
  color: #cbd5e1 !important;
  max-width: 760px;
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-bottom > div {
  display: flex;
  gap: 18px;
  font-size: 11px;
  white-space: nowrap;
}

.photo-credit {
  font-size: 10px;
  color: #879a88;
  margin: 4px 0 0;
}

.photo-credit a {
  text-decoration: underline;
}

/* Page & Single Post Templates */
.breadcrumbs {
  display: flex;
  gap: 10px;
  font-size: 11.5px;
  color: var(--muted);
  margin-bottom: 26px;
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumbs a:hover {
  color: #1e3a0f;
}

.page-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.page-heading .eyebrow {
  color: #244a14 !important;
  margin-bottom: 14px;
  font-weight: 700 !important;
}

.page-heading h1 {
  font-size: var(--font-h1);
  line-height: var(--lh-tight);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.page-deck {
  font-size: var(--font-lead);
  line-height: 1.65;
  color: var(--muted);
  max-width: 760px;
  margin-bottom: 20px;
}

.byline {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 20px;
}

.author-avatar {
  height: 32px;
  width: 32px;
  display: grid;
  place-items: center;
  background: #e4edda;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  color: #244a14;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 52px;
}

.article-layout.wide-content {
  display: block;
}

.article-layout.wide-content > .prose > p {
  max-width: 850px;
}

/* Prose & Editorial Typography (Programmatic SEO Perfection) */
.prose {
  min-width: 0;
  font-size: var(--font-body);
  line-height: var(--lh-prose);
  color: #374151;
}

.prose > p {
  font-size: var(--font-body);
  line-height: var(--lh-prose);
  color: #374151;
  margin-bottom: 20px;
}

.prose > p:first-child {
  font-size: 16.5px;
  line-height: 1.7;
  color: #1f2937;
  font-weight: 450;
}

.prose > h2 {
  font-size: clamp(21px, 2vw, 25px);
  margin-top: 36px;
  margin-bottom: 14px;
  line-height: 1.3;
  font-weight: 750;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.prose > h3 {
  font-size: 18px;
  margin-top: 26px;
  margin-bottom: 10px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.prose > h4 {
  font-size: 15.5px;
  margin-top: 20px;
  margin-bottom: 8px;
  font-weight: 700;
}

.prose > ul, .prose > ol {
  font-size: var(--font-body);
  line-height: var(--lh-prose);
  color: #374151;
  margin-bottom: 20px;
  padding-left: 24px;
}

.prose > ul li, .prose > ol li {
  margin-bottom: 8px;
}

.prose p a, .prose .sources a {
  color: #1e3a0f !important;
  font-weight: 600 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

.prose .date-browser {
  margin: 28px 0 34px;
}

.prose .status-box {
  margin: 26px 0;
}

.prose .sources {
  background: var(--soft);
  border-left: 3px solid #a9bd8c;
  padding: 20px 22px;
  margin-top: 34px;
  border-radius: 0 8px 8px 0;
}

.sources h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.sources p {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 0;
}

.partner-panel {
  border: 1px solid #becba8;
  border-radius: 8px;
  padding: 24px;
  background: #f0f5e6;
  margin: 30px 0;
}

.partner-panel .eyebrow {
  color: #244a14 !important;
}

.partner-panel h2 {
  font-size: 22px;
  margin: 10px 0;
  line-height: 1.25;
}

.partner-panel p {
  font-size: 13.5px;
  line-height: 1.7;
  color: #3d4f37;
}

.partner-panel small {
  display: block;
  margin-top: 14px;
  font-size: 11px;
  color: #4d6044;
}

.partner-panel small a {
  text-decoration: underline;
}

.post-featured-image {
  width: 100%;
  margin: 0 0 32px;
  border-radius: 10px;
  overflow: hidden;
  background: #11241c;
  border: 1px solid var(--line);
  box-shadow: 0 6px 24px rgba(25, 34, 31, 0.06);
  position: relative;
  aspect-ratio: 16/9;
  max-height: 480px;
}

.post-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Sidebar Story Widget */
.sidebar-widget {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px 18px;
  background: #fff;
  margin-top: 18px;
}

.sidebar-widget .eyebrow {
  color: #244a14 !important;
  font-weight: 700 !important;
  display: block;
  margin-bottom: 14px;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.sidebar-stories-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-story-card {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid #edf1eb;
  text-decoration: none;
  transition: transform 0.15s;
}

.sidebar-story-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-story-card:hover {
  transform: translateX(3px);
  color: var(--ink);
}

.sidebar-story-thumb {
  width: 76px;
  height: 52px;
  min-width: 76px;
  border-radius: 5px;
  overflow: hidden;
  background: var(--soft);
  border: 1px solid #dce3d8;
}

.sidebar-story-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sidebar-story-info {
  flex: 1;
  min-width: 0;
}

.sidebar-story-cat {
  display: block;
  font-size: 9px;
  font-weight: 700;
  color: #244a14 !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.sidebar-story-title {
  font-size: 13px;
  font-weight: 650;
  line-height: 1.38;
  margin: 0 0 3px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: -0.02em;
}

.sidebar-story-date {
  font-size: 10.5px;
  color: var(--muted);
  display: block;
}

/* Pagination */
.pagination {
  margin: 40px 0 20px;
  display: flex;
  justify-content: center;
}

.pagination .nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.pagination .page-numbers {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 700;
  background: #fff;
}

.pagination .page-numbers.current {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.pagination .page-numbers:hover:not(.current) {
  background: var(--soft);
  color: var(--ink);
}

/* Forms & Feedback */
.contact-form {
  display: grid;
  gap: 18px;
  margin: 26px 0;
}

.contact-form label {
  font-size: 13px;
  font-weight: 700;
}

.contact-form input, .contact-form textarea {
  display: block;
  width: 100%;
  padding: 10px 12px;
  margin-top: 6px;
  border: 1px solid #bec9b7;
  border-radius: 5px;
  background: white;
  font-size: 14px;
}

.contact-form .button {
  justify-self: start;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.notice {
  background: #e7f4d0;
  border: 1px solid #9aae7c;
  padding: 18px;
  border-radius: 6px;
  font-size: 14px;
}

.no-results {
  padding: 22px;
  background: var(--soft);
  font-size: 13.5px;
  border-radius: 6px;
}

/* Quick Read Cards & Scoped Sections */
section[data-rtm-quick-nayeon-lite], section[data-rtm-quick-sks], section[data-rtm-quick], section[data-rtm-quick-feature], [data-ta-quickread], .quick-read-box {
  margin: 28px 0 32px;
  display: block;
  clear: both;
}

section[data-rtm-quick-nayeon-lite] .wrap, section[data-rtm-quick-sks] .wrap, section[data-rtm-quick-feature] .wrap, section[data-rtm-quick] .wrap, [data-ta-quickread] .wrap {
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

section[data-rtm-quick-nayeon-lite] .card, section[data-rtm-quick-sks] .card, section[data-rtm-quick-feature] .card, section[data-rtm-quick] .card, [data-ta-quickread] .card {
  border: 1px solid var(--line, #dfe4dc);
  border-radius: 10px;
  background: #fbfdfa;
  padding: 20px 22px;
  box-shadow: 0 3px 14px rgba(25, 34, 31, 0.04);
}

section[data-rtm-quick-nayeon-lite] h2, section[data-rtm-quick-sks] h2, section[data-rtm-quick-feature] h2, section[data-rtm-quick] h2, [data-ta-quickread] h2 {
  font-size: 13.5px;
  margin: 0 0 14px;
  font-weight: 800;
  color: #244a14;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 2px solid #edf1eb;
  padding-bottom: 8px;
}

section[data-rtm-quick-nayeon-lite] ul, section[data-rtm-quick-sks] ul, section[data-rtm-quick-feature] ul, section[data-rtm-quick] ul, [data-ta-quickread] ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

section[data-rtm-quick-nayeon-lite] li, section[data-rtm-quick-sks] li, section[data-rtm-quick-feature] li, section[data-rtm-quick] li, [data-ta-quickread] li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  background: #ffffff;
  border: 1px solid #e9eee5;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink, #19221f);
}

section[data-rtm-quick-nayeon-lite] li::before {
  content: "•";
  color: #244a14;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  margin-top: 0;
}

section[data-rtm-quick-sks] .dot, section[data-rtm-quick-feature] .dot {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: #244a14;
  margin-top: 1px;
}

section[data-rtm-quick-sks] .txt, section[data-rtm-quick-feature] .txt {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink, #19221f);
}

section[data-rtm-quick-nayeon-lite] strong, section[data-rtm-quick-sks] strong, section[data-rtm-quick-feature] strong {
  font-weight: 700;
  color: var(--ink, #19221f);
}

/* Scoped Accordion FAQs */
.rtm-faq, [data-rtm-faq-sks] {
  margin: 28px 0;
  display: block;
}

.rtm-faq__wrap, [data-rtm-faq-sks] .wrap, [data-rtm-faq-sks] .faq {
  width: 100%;
  margin: 0 auto;
}

.rtm-faq__head h2, [data-rtm-faq-sks] h2, [data-rtm-faq-sks] .faq__title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 750;
  color: var(--ink, #19221f);
}

.rtm-faq__sub, [data-rtm-faq-sks] .sub {
  margin: 0 0 14px;
  color: var(--muted, #65706a);
  font-size: 13.5px;
}

.rtm-faq__item, [data-rtm-faq-sks] .item, [data-rtm-faq-sks] .faq-item, [data-rtm-faq-sks] .faq__item {
  border: 1px solid var(--line, #dfe4dc);
  border-radius: 7px;
  background: #fff;
  margin-bottom: 8px;
  overflow: hidden;
}

.rtm-faq__q, [data-rtm-faq-sks] .q, [data-rtm-faq-sks] .faq-question, [data-rtm-faq-sks] .faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font: inherit;
  font-size: 15px;
  font-weight: 650;
  color: var(--ink, #19221f);
  padding: 14px 44px 14px 16px;
  cursor: pointer;
  position: relative;
  display: block;
}

.rtm-faq__q::after, [data-rtm-faq-sks] .q::after, [data-rtm-faq-sks] .faq-question::after, [data-rtm-faq-sks] .faq__q::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 19px;
  font-weight: 600;
  color: #244a14;
}

.rtm-faq__q[aria-expanded="true"]::after, [data-rtm-faq-sks] .q[aria-expanded="true"]::after, [data-rtm-faq-sks] .faq-question[aria-expanded="true"]::after {
  content: "–";
}

.rtm-faq__a, [data-rtm-faq-sks] .a, [data-rtm-faq-sks] .faq-answer, [data-rtm-faq-sks] .faq__a {
  padding: 0 16px 16px;
  color: #374151;
  font-size: 14px;
  line-height: 1.65;
}

.rtm-qs {
  margin: 22px 0;
}

.rtm-qs__wrap {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line, #dfe4dc);
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(25, 34, 31, 0.04);
  padding: 18px 20px;
}

.rtm-qs__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rtm-qs__item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.55;
}

/* ==========================================================================
   Responsive Breakpoints: Large Tablet, Small Desktop (max-width: 1100px)
   ========================================================================== */
@media (min-width: 1450px) {
  .hero-photo {
    margin-right: 0;
  }
  .hero-grid {
    gap: 60px;
  }
}

@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 48px);
  }
  #primary-nav {
    gap: 16px;
  }
  .header-inner {
    gap: 18px;
    height: 70px;
  }
  .schedule-layout {
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 24px;
  }
  .event-status {
    display: none;
  }
  .status-box {
    padding: 20px;
  }
  .hero-facts {
    gap: 20px;
  }
  .hero-photo {
    margin-right: -24px;
  }
  .hero-grid {
    gap: 24px;
  }
  .editorial-grid {
    gap: 40px;
  }
  .article-layout {
    gap: 32px;
    grid-template-columns: minmax(0, 1fr) 260px;
  }
  .footer-top {
    gap: 28px;
  }
  .city-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px !important;
  }
  .filters {
    grid-template-columns: 1fr 160px;
  }
}

/* ==========================================================================
   Responsive Breakpoints: Tablet Portrait & Small Laptops (max-width: 800px)
   ========================================================================== */
@media (max-width: 800px) {
  :root {
    --font-h1: clamp(24px, 3.2vw, 30px);
    --font-h2: clamp(20px, 2.4vw, 24px);
    --font-h3: clamp(17px, 1.8vw, 19px);
    --font-lead: 15px;
    --font-body: 15px;
  }

  .header-inner {
    height: 66px;
  }
  .header-cta {
    display: none;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--line);
    padding: 7px 11px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
  }
  .menu-toggle span {
    font-size: 15px;
  }
  #primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 16px 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 20px rgba(25, 34, 31, 0.1);
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  #primary-nav.is-open {
    display: flex;
  }
  #primary-nav a {
    padding: 9px 4px;
    font-size: 13.5px;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    min-height: 440px;
  }
  .hero h1 {
    font-size: clamp(26px, 4vw, 34px);
    line-height: 1.15;
  }
  .hero-copy {
    padding-top: 36px;
    padding-bottom: 30px;
  }
  .hero-deck {
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .hero-actions {
    gap: 16px;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 22px;
  }
  .hero-facts {
    gap: 18px;
  }
  .hero-facts > div:last-child {
    display: none;
  }
  .hero-facts strong {
    font-size: 19px;
  }
  .hero-photo {
    margin-left: 0;
  }
  .photo-sticker {
    font-size: 14px;
    padding: 8px 11px;
    right: 14px;
  }
  .hero-photo figcaption {
    left: 20px;
    right: 12px;
  }
  .hero-photo figcaption span {
    font-size: 8.5px;
  }

  .trust-strip .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    font-size: 10.5px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .schedule-layout {
    grid-template-columns: 1fr;
  }
  .schedule-aside {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .schedule-aside .aside-note {
    margin: 0;
  }
  .filters {
    grid-template-columns: 1fr 180px;
  }

  .city-grid, .guide-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .editorial-grid {
    gap: 28px;
    padding-top: 38px;
    padding-bottom: 38px;
  }
  .editorial-grid h2 {
    font-size: 24px;
  }
  .editorial-grid p:not(.eyebrow) {
    font-size: 13.5px;
  }
  .editorial-grid img {
    height: 280px;
  }

  .faq-section {
    gap: 30px;
    grid-template-columns: 1fr 1.6fr;
  }
  .faq-section h2 {
    font-size: 24px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .final-cta {
    padding: 28px 30px;
    margin-bottom: 44px;
  }
  .final-cta h2 {
    font-size: 23px;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .article-aside {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .article-aside .aside-note {
    margin: 0;
  }
  .sidebar-widget {
    margin-top: 0;
  }

  .page-deck {
    font-size: 15px;
  }
  .byline span span {
    display: block;
  }
  .prose .event-status {
    display: inline;
  }
  .admin-bar .site-header {
    top: 46px;
  }
  .post-featured-image {
    aspect-ratio: 16/9;
    max-height: 360px;
    margin-bottom: 24px;
  }
}

/* ==========================================================================
   Responsive Breakpoints: Mobile Phones (max-width: 560px)
   ========================================================================== */
@media (max-width: 560px) {
  :root {
    --font-h1: clamp(22px, 5.5vw, 26px);
    --font-h2: clamp(18px, 4.5vw, 21px);
    --font-h3: clamp(16px, 3.8vw, 18px);
    --font-lead: 14px;
    --font-body: 14.5px;
    --lh-body: 1.62;
    --lh-prose: 1.68;
  }

  .wrap {
    width: calc(100% - 32px);
  }

  .section {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .topline {
    font-size: 9.5px;
    padding: 6px 0;
  }
  .topline .wrap > span {
    display: none;
  }
  .topline .wrap {
    justify-content: center;
  }

  .brand {
    font-size: 16.5px;
    gap: 8px;
  }
  .brand-mark {
    width: 31px;
    height: 31px;
    font-size: 26px;
  }
  .brand-light {
    font-size: 12.5px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }
  .hero-copy {
    padding: 30px 0 22px;
  }
  .hero-copy .eyebrow {
    font-size: 10px;
    margin-bottom: 14px;
  }

  .hero h1 {
    font-size: clamp(24px, 6vw, 28px);
    line-height: 1.18;
    max-width: 100%;
    margin-bottom: 14px;
  }

  .hero-deck {
    font-size: 14px;
    line-height: 1.55;
    max-width: 100%;
    margin-bottom: 18px;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin: 18px 0 22px;
    flex-wrap: wrap;
  }
  .hero-actions .button {
    padding: 10px 16px;
    font-size: 12.5px;
  }
  .hero-text-link {
    font-size: 12px;
  }

  .hero-facts {
    padding-top: 16px;
    gap: 20px;
  }
  .hero-facts > div:last-child {
    display: block;
  }
  .hero-facts strong {
    font-size: 18px;
  }
  .hero-facts span {
    font-size: 9.5px;
  }

  .hero-photo {
    height: 240px;
    min-height: 0;
    margin: 0 -16px;
    overflow: hidden;
  }
  .hero-photo > img {
    object-position: 50% 44%;
    opacity: 0.85;
  }
  .hero-photo:after {
    background: linear-gradient(0deg, #19221fd9, transparent 70%);
  }
  .photo-sticker {
    top: 16px;
    right: 16px;
    font-size: 13px;
    padding: 7px 9px;
  }
  .hero-photo figcaption {
    bottom: 12px;
    left: 16px;
  }
  .hero-photo figcaption span {
    font-size: 8px;
  }

  .trust-strip .wrap {
    gap: 8px 6px;
    font-size: 9.5px;
    padding-block: 12px;
  }

  .section-heading {
    display: block;
    margin-bottom: 20px;
  }
  .section-heading > p {
    margin-top: 10px;
    font-size: 12.5px;
  }
  .section-heading > .text-link {
    display: inline-block;
    margin-top: 14px;
  }
  .section-heading h2 {
    font-size: clamp(19px, 4.5vw, 22px);
  }
  .section-heading .eyebrow {
    font-size: 10px;
  }

  .filters {
    grid-template-columns: 1fr;
    padding: 12px;
    gap: 8px;
  }
  .filters label:last-child {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .filters label:last-child > span {
    margin: 0;
    min-width: 42px;
  }
  .filters select {
    height: 36px;
  }

  .date-row {
    gap: 10px;
    padding: 12px 0;
    flex-wrap: wrap;
  }
  .date-row time {
    min-width: 46px;
    width: 46px;
    height: 58px;
  }
  .date-row time strong {
    font-size: 18px;
  }
  .date-row time span {
    font-size: 8.5px;
  }
  .event-info h3 {
    font-size: 14px;
  }
  .event-info p {
    font-size: 11.5px;
  }
  .event-info small {
    font-size: 9.5px;
  }
  .event-button {
    font-size: 10.5px;
    padding: 7px 10px;
  }
  .event-status, .prose .event-status {
    display: none;
  }
  .source-note {
    font-size: 9.5px;
  }

  .schedule-aside {
    grid-template-columns: 1fr;
  }
  .schedule-aside .aside-note {
    display: none;
  }

  .status-box h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .status-box p {
    font-size: 12.5px;
    line-height: 1.6;
    margin-bottom: 14px;
  }
  .status-box .button {
    width: auto;
    padding-inline: 16px;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .editorial-grid img {
    height: 220px;
  }
  .editorial-grid h2 {
    font-size: 21px;
    margin-bottom: 12px;
  }
  .editorial-grid p:not(.eyebrow) {
    font-size: 13.5px;
    line-height: 1.65;
  }

  .city-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .city-card-body {
    padding: 16px !important;
  }
  .city-card-body h3 {
    font-size: 18px !important;
  }
  .city-card-body .city-venue {
    font-size: 12.5px !important;
    margin-bottom: 10px !important;
  }
  .city-card-body .city-badge {
    font-size: 10.5px !important;
  }

  .guide-grid {
    grid-template-columns: 1fr;
  }
  .guide-card {
    min-height: auto;
    padding: 20px;
  }
  .guide-card h3 {
    font-size: 18px;
    margin-top: 14px;
    margin-bottom: 8px;
  }
  .guide-card p {
    font-size: 13px;
    margin-bottom: 14px;
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .faq-section h2 {
    font-size: 21px;
  }
  .faqs summary {
    font-size: 14.5px;
  }
  .faqs details p {
    font-size: 13px;
    margin-top: 10px;
  }

  .final-cta {
    padding: 24px 20px;
    gap: 16px;
    margin-bottom: 36px;
  }
  .final-cta h2 {
    flex-basis: 100%;
    font-size: 21px;
  }
  .final-cta > .eyebrow {
    font-size: 9px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 26px 18px;
  }
  .footer-top > div:first-child {
    grid-column: 1 / -1;
  }
  .footer-top > div:first-child > p {
    font-size: 14px;
    margin-top: 12px;
    margin-bottom: 0;
  }
  .footer-top > div:last-child {
    grid-column: 1 / -1;
    max-width: 100%;
  }
  .footer-bottom {
    display: block;
    margin-top: 22px;
    padding-top: 16px;
  }
  .footer-bottom > div {
    margin: 12px 0;
    gap: 12px;
  }
  .site-footer {
    padding-top: 36px;
  }

  .page-heading {
    margin-bottom: 24px;
  }
  .page-heading h1 {
    font-size: clamp(22px, 5.5vw, 26px);
    margin-bottom: 12px;
  }
  .page-deck {
    font-size: 14px;
    line-height: 1.58;
    margin-bottom: 14px;
  }
  .breadcrumbs {
    font-size: 10.5px;
    margin-bottom: 18px;
  }
  .byline {
    font-size: 10.5px;
    margin-top: 14px;
  }

  .article-aside {
    display: block;
  }
  .article-aside .aside-note {
    margin-top: 18px;
  }

  .prose > p {
    font-size: 14.5px;
    line-height: 1.68;
    margin-bottom: 16px;
  }
  .prose > p:first-child {
    font-size: 15px;
    line-height: 1.65;
  }
  .prose > h2 {
    font-size: 19px;
    margin-top: 26px;
    margin-bottom: 10px;
  }
  .prose > h3 {
    font-size: 16.5px;
    margin-top: 20px;
    margin-bottom: 8px;
  }
  .prose > ul, .prose > ol {
    font-size: 14px;
    padding-left: 18px;
  }
  .prose .sources {
    padding: 16px;
    margin-top: 24px;
  }
  .partner-panel {
    padding: 18px;
  }
  .partner-panel h2 {
    font-size: 19px;
  }

  .admin-bar .site-header {
    top: 0;
  }
  .post-featured-image {
    aspect-ratio: 16/9;
    max-height: 220px;
    border-radius: 6px;
    margin-bottom: 18px;
  }
  .sidebar-story-thumb {
    width: 68px;
    height: 48px;
    min-width: 68px;
  }
  .sidebar-story-title {
    font-size: 12.5px;
  }
  .blog-card-thumb {
    height: 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}

/* --- Sibling city links on city pages ------------------------------- */
.related-cities {
  margin: 38px 0 10px;
  padding-top: 26px;
  border-top: 1px solid var(--line, #dcdcd2);
}

.related-cities h2 {
  font-size: 19px;
  margin-bottom: 14px;
}

.related-cities ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.related-cities li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  background: var(--soft, #f4f4ee);
  border-radius: 8px;
}

.related-cities li a {
  font-weight: 600;
  text-decoration: none;
}

.related-cities li a:hover {
  text-decoration: underline;
}

.related-cities li span {
  font-size: 12.5px;
  color: var(--muted, #6a6a60);
  white-space: nowrap;
}

/* --- Homepage entity intro ----------------------------------------- */
.intro-band {
  padding-top: 8px;
  padding-bottom: 8px;
  max-width: 900px;
}

.intro-band p {
  margin-bottom: 16px;
}

.intro-band .lede {
  font-size: 19px;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .intro-band .lede {
    font-size: 17px;
  }
  .related-cities ul {
    grid-template-columns: 1fr;
  }
}
