/* ============================================================
   Avioprevoz.com — Main Stylesheet
   Covers every className used in app.js
   Design tokens preserved from original brand palette
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@400;500;700;800&display=swap');

/* ── Design tokens ────────────────────────────────────────── */
:root {
  --bg:           #f4f7fb;
  --surface:      #ffffff;
  --text:         #0e1c2e;
  --muted:        #56697f;
  --border:       #d6e3f0;
  --primary:      #0f62fe;
  --primary-dark: #0949be;
  --accent:       #e8f0ff;
  --danger:       #c0392b;
  --shadow-sm:    0 2px 8px rgba(14,28,46,0.06);
  --shadow:       0 10px 36px rgba(14,28,46,0.09);
  --shadow-lg:    0 22px 56px rgba(14,28,46,0.13);
  --radius-lg:    24px;
  --radius-md:    16px;
  --radius-sm:    10px;
  --container:    1180px;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;
  --font-display: 'Outfit', system-ui, sans-serif;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

/* ── Layout ───────────────────────────────────────────────── */
.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: background 0.18s, transform 0.12s, box-shadow 0.18s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(15,98,254,0.28);
}
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 22px rgba(15,98,254,0.36);
}

.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover,
.hero-secondary:hover {
  background: rgba(255,255,255,0.25);
}

/* hero-secondary is btn-secondary used specifically in hero CTA row */
.hero-secondary {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}

.text-link {
  color: var(--primary-dark);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s;
}
.text-link:hover { color: var(--primary); }

/* ── Site header ──────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(214,227,240,0.7);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
  flex-wrap: wrap;
  padding-block: 10px;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: contain;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: -0.04em;
}

/* Nav */
.main-nav {
  display: flex;
  gap: 4px;
}
.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--muted);
  transition: color 0.15s, background 0.15s;
}
.nav-link:hover {
  color: var(--primary);
  background: var(--accent);
}

/* Language switcher */
.lang-switcher {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.lang-pill {
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  border: 1.5px solid var(--border);
  background: transparent;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}
.lang-pill:hover { color: var(--primary); border-color: var(--primary); }
.lang-pill.active {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: #bad0ff;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a1826;
  background-size: cover;
  background-position: center 30%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: center;
  padding-block: 96px 72px;
}

.hero-copy { color: #fff; }

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.18);
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0 0 16px;
  max-width: 680px;
  color: #fff;
}

.hero-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.84);
  max-width: 580px;
  margin: 0 0 28px;
}

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

/* Hero info card */
.hero-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
}

.hero-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
}

.hero-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.hero-points li {
  padding-left: 22px;
  position: relative;
  font-size: 0.93rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
}

.hero-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #52a3ff;
  font-weight: 700;
}

/* ── Simple hero (listing pages) ─────────────────────────── */
.simple-hero {
  background: linear-gradient(135deg, #0d1c31 0%, #173b7a 100%);
  padding: 72px 0 56px;
  color: #fff;
}

.simple-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  margin: 0 0 12px;
  color: #fff;
}

.simple-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  margin: 0;
  max-width: 640px;
  line-height: 1.68;
}

/* ── Section heading ──────────────────────────────────────── */
.section-heading {
  padding: 64px 0 28px;
}

.section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--text);
}

.section-heading p {
  color: var(--muted);
  font-size: 1rem;
  margin: 0;
  max-width: 560px;
  line-height: 1.65;
}

/* ── Card grid ────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-bottom: 56px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-body h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: var(--text);
}

.card-body p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.card-body .text-link {
  margin-top: auto;
  padding-top: 10px;
  font-size: 0.88rem;
}

/* ── Pre-footer CTA strip ─────────────────────────────────── */
.prefooter {
  background: linear-gradient(135deg, #173b9d, #09286b);
  margin-top: 40px;
  padding: 56px 0;
}

.prefooter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.prefooter-inner h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
}

.prefooter-inner p {
  color: rgba(255,255,255,0.82);
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 500px;
}

/* ── Site footer ──────────────────────────────────────────── */
.site-footer {
  background: #071634;
  color: rgba(255,255,255,0.86);
  padding: 52px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}

.footer-grid h4 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.42);
  margin: 0 0 16px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-link {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  transition: color 0.15s;
}

.footer-link:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0 28px;
  color: rgba(255,255,255,0.38);
  font-size: 0.84rem;
  text-align: center;
}

/* ── Detail pages ─────────────────────────────────────────── */
.detail-page {
  padding-bottom: 72px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  align-items: start;
  padding-top: 48px;
}

.detail-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.detail-grid > div h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  margin: 0 0 12px;
}

.detail-grid > div > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 24px;
}

/* Detail content blocks */
.article-shell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.detail-block h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text);
}

.detail-block > div {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.72;
}

.detail-block > div p  { margin: 0 0 10px; }
.detail-block > div ul,
.detail-block > div ol { padding-left: 20px; margin: 0 0 10px; }
.detail-block > div li { margin-bottom: 4px; }

/* Transport grid */
.transport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.transport-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
}

.transport-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text);
}

.transport-card p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
  margin: 0 0 10px;
}

.mini-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: grid;
  gap: 5px;
}

.mini-list li {
  font-size: 0.84rem;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
}

.mini-list li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--primary);
  font-weight: 700;
}

/* Company / legal pages */
.company-page {
  padding: 56px 0 80px;
  min-height: 55vh;
}

.company-page .article-shell h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin: 0 0 20px;
}

.company-page .article-shell p,
.company-page .article-shell li {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.97rem;
}

/* ── Flight search widget section ─────────────────────────── */
.search-widget-section {
  background: linear-gradient(180deg, #f0f5ff 0%, var(--bg) 100%);
  padding: 48px 0 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.tp-widget-shell {
  max-width: 900px;
  margin: 0 auto;
}

.tp-widget-shell .tp-widget-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 20px;
  text-align: center;
}

.tp-widget-container {
  min-height: 120px;
}

.tp-widget-placeholder {
  background: var(--surface);
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 40px 28px;
  text-align: center;
  color: var(--muted);
}

.tp-widget-placeholder p {
  margin: 0 0 12px;
  font-size: 0.96rem;
}

/* ── Loading / error states ───────────────────────────────── */
.loading-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  font-size: 1rem;
  color: var(--muted);
  font-weight: 600;
}

.loading-shell.error {
  color: var(--danger);
}

/* ── Skeleton shimmer ─────────────────────────────────────── */
.skeleton {
  min-height: 200px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(90deg, #e8eef6 25%, #f3f7fc 37%, #e8eef6 63%) 0 0 / 400% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .card-grid          { grid-template-columns: repeat(2, 1fr); }
  .hero-grid          { grid-template-columns: 1fr; }
  .hero-card          { display: none; }
}

@media (max-width: 860px) {
  .detail-grid        { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
  .main-nav           { display: none; }
  .topbar             { gap: 12px; }
}

@media (max-width: 640px) {
  .card-grid          { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr; }
  .prefooter-inner    { flex-direction: column; align-items: flex-start; }
  .hero               { min-height: 560px; }
  .hero-grid          { padding-block: 64px 48px; }
  .cta-row            { flex-direction: column; }
  .transport-grid     { grid-template-columns: 1fr; }
  .detail-image       { height: 240px; }
  .lang-switcher      { gap: 4px; }
  .lang-pill          { padding: 5px 9px; font-size: 0.78rem; }
}

/* ── Recommendation cards (multi-airport catchment) ──────── */
.rec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 4px;
}

.rec-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.18s;
}

.rec-card--top {
  background: var(--surface);
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary), var(--shadow-sm);
}

.rec-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.rec-rank {
  font-size: 1.1rem;
  line-height: 1;
}

.rec-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.rec-badge--primary  { background: #dbeafe; color: #1d4ed8; }
.rec-badge--success  { background: #dcfce7; color: #15803d; }
.rec-badge--info     { background: #e0f2fe; color: #0369a1; }
.rec-badge--budget   { background: #fef9c3; color: #854d0e; }
.rec-badge--summer   { background: #ffedd5; color: #c2410c; }
.rec-badge--neutral  { background: #f1f5f9; color: #475569; }

.rec-airport-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: var(--text);
}

.rec-summary {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

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


/* ============================================================
   Corridor detail page
   ============================================================ */

.corridor-detail {
  background: var(--bg);
}

/* Hero */
.corridor-hero {
  background: #0e1c2e;
  display: flex;
  align-items: stretch;
  min-height: 260px;
  overflow: hidden;
}
.corridor-hero-img {
  width: 340px;
  min-width: 340px;
  height: auto;
  object-fit: cover;
  object-position: center center;
  display: block;
  flex-shrink: 0;
}
.corridor-hero-overlay {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2rem 2.5rem;
  background: linear-gradient(to right, rgba(10,24,44,0.0) 0%, rgba(10,24,44,0.92) 30%);
}
.corridor-hero-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.25;
}
.corridor-hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  margin: 0;
  line-height: 1.6;
}

/* Body */
.corridor-body {
  padding: 2rem 0 3rem;
}

/* Stats row */
.corridor-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 2rem;
}
.cstat {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 12px;
  text-align: center;
}
.cstat-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}
.cstat-lbl {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

/* Intro text */
.corridor-intro {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 2.5rem;
}

/* Section wrapper */
.corridor-section {
  margin-bottom: 2.5rem;
}
.corridor-section-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1rem;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--border);
}

/* Route cards */
.corridor-routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 10px;
}
.croute-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.croute-airports {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
.croute-iata {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}
.croute-arrow {
  font-size: 13px;
  color: var(--muted);
}
.croute-names {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.4;
}
.croute-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

/* Badges */
.corridor-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  line-height: 1.4;
}
.cbadge-green { background: #d6f0e0; color: #145c30; }
.cbadge-blue  { background: #ddeeff; color: #0949be; }
.cbadge-amber { background: #fef3cc; color: #7a4f00; }
.cbadge-gray  { background: #eaedf1; color: #3d4f60; }

/* Airlines strip */
.corridor-airlines {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cairline-pill {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

/* Tips */
.corridor-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px;
}
.ctip-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.ctip-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.ctip-text {
  font-size: 13px;
  color: var(--text);
  line-height: 1.65;
  margin: 0;
}

/* Booking box */
.corridor-booking-box {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 2.5rem;
  text-align: center;
}
.corridor-booking-note {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* FAQ */
.corridor-faq {
  display: flex;
  flex-direction: column;
}
.cfaq-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cfaq-item:last-child {
  border-bottom: none;
}
.cfaq-q {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 6px;
}
.cfaq-a {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* Responsive */
@media (max-width: 720px) {
  .corridor-stats { grid-template-columns: repeat(2, 1fr); }
  .corridor-hero {
    flex-direction: column;
    min-height: unset;
  }
  .corridor-hero-img {
    width: 100%;
    min-width: unset;
    height: 220px;
    object-fit: cover;
    object-position: center 30%;
  }
  .corridor-hero-overlay {
    background: #0e1c2e;
    padding: 1.25rem 1rem 1.5rem;
  }
  .corridor-hero-title { font-size: 21px; }
}
