/* ══════════════════════════════════════
   WHAT'S UP COLUMBUS — DESIGN TOKENS
   Palette: Ohio State Scarlet & Slate Gray
   Scarlet: #BB0000 (Ohio State / city flag)
   Slate:   #5E6B75 (Ohio slate — section labels, active states)
══════════════════════════════════════ */
:root {
  --white:      #FFFFFF;
  --bg:         #FFFFFF;     /* page background */
  --tan:        #E4E4E4;     /* light gray borders/dividers */
  --tan-light:  #F4F4F4;     /* light gray section bg */
  --charcoal:   #1A1A1A;     /* near-black — primary text */
  --gray:       #707070;     /* gray — secondary text */
  --gray-300:   #888888;     /* gray mid */
  --gray-light: #E0E0E0;     /* gray borders */
  --gray-50:    #F5F5F5;     /* subtle section bg */
  --black:      #111111;     /* footer / dark section bg */
  --scarlet:    #BB0000;     /* OHIO STATE SCARLET — links, hovers, CTAs */
  --slate:      #5E6B75;     /* OHIO SLATE GRAY — section labels, active states */

  --font-sans:  'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-serif: 'Newsreader', Georgia, 'Times New Roman', serif;

  /* ── Neutral aliases (Lasso standard tokens → site colors) ── */
  --text:          var(--charcoal);
  --text-muted:    var(--gray-300);
  --primary-100:   var(--tan);
  --primary-500:   var(--scarlet);
  --primary-700:   var(--scarlet);
  --primary-800:   var(--charcoal);
  --accent-400:    var(--scarlet);
  --accent-500:    var(--slate);
  --gray-600:      var(--gray-300);
  --background:    var(--bg);
  --border:        var(--gray-light);
  --surface-100:   var(--tan-light);
  --box-shadow-sm: 0 1px 3px 0 rgba(34, 40, 42, 0.1);
  --box-shadow-md: 0 4px 20px 0 rgba(33, 37, 41, 0.05);
  --box-shadow-lg: 0 4px 20px 0 rgba(33, 37, 41, 0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { background: #f0f0f0; scroll-behavior: smooth; }
body {
  background: #f0f0f0;
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 0; line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  display: flex; flex-direction: column; min-height: 100vh;
}
.pg-wrap { width: 100%; overflow-x: hidden; font-size: 16px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ══════════════════════════════════════
   LOGO
══════════════════════════════════════ */
.logo {
  max-width: 120px;
  flex-shrink: 0;
}
.logo a { display: flex; }

/* ══════════════════════════════════════
   SITE HEADER — AO style
══════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg);
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; gap: 24px;
}
.header-nav {
  flex: 1; display: flex; align-items: center; justify-content: center;
  overflow-x: auto; scrollbar-width: none; gap: 0;
}
.header-nav::-webkit-scrollbar { display: none; }
.header-nav a {
  font-size: 13px; font-weight: 600; color: var(--charcoal);
  padding: 8px 12px; white-space: nowrap; letter-spacing: 0.3px;
  transition: color 0.15s; border-bottom: 2px solid transparent;
  display: flex; align-items: center; height: 64px;
}
.header-nav a:hover { color: var(--scarlet); }
.header-nav a.active { color: var(--slate); }
.header-right { flex-shrink: 0; display: flex; align-items: center; gap: 12px; }
.header-subscribe {
  font-size: 13px; font-weight: 700; color: var(--white);
  background: var(--charcoal); padding: 9px 20px;
  border-radius: 4px; transition: background 0.15s; white-space: nowrap;
  letter-spacing: 0.3px;
}
.header-subscribe:hover { background: var(--scarlet); }

/* ══════════════════════════════════════
   MOBILE MENU
══════════════════════════════════════ */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  padding: 8px; flex-shrink: 0; margin-left: auto;
}
.nav-toggle-bar {
  display: block; width: 22px; height: 2px;
  background: var(--charcoal); border-radius: 2px;
  transition: transform 0.22s ease-out, opacity 0.22s ease-out;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 300;
  background: var(--background);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; height: 54px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.mobile-menu-logo img { height: 26px; width: auto; display: block; }
.mobile-menu-close {
  width: 40px; height: 40px; background: none; border: none;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--charcoal); border-radius: 50%;
  transition: background 0.15s;
}
.mobile-menu-close:hover { background: rgba(0,0,0,0.06); }
.mobile-menu-close svg { width: 20px; height: 20px; }
.mobile-menu-nav {
  flex: 1; display: flex; flex-direction: column;
  overflow-y: auto; padding-bottom: 24px;
}
.mobile-menu-nav a {
  font-size: 17px; font-weight: 600; color: var(--charcoal);
  padding: 16px 24px; border-bottom: 1px solid var(--border);
  transition: color 0.15s, background 0.15s; letter-spacing: 0.1px;
  display: block;
}
.mobile-menu-nav a:last-child { border-bottom: none; }
.mobile-menu-nav a:hover,
.mobile-menu-nav a:active { color: var(--scarlet); background: rgba(187,0,0,0.03); }
.mobile-menu-nav a.active { color: var(--slate); }
.mobile-menu-nav a.mobile-menu-cta {
  margin: 20px 24px 0; padding: 14px 20px; border: none; border-bottom: none;
  background: var(--charcoal); color: var(--white);
  border-radius: 6px; text-align: center; font-size: 15px;
  transition: background 0.15s;
}
.mobile-menu-nav a.mobile-menu-cta:hover { background: var(--scarlet); color: var(--white); }

/* ══════════════════════════════════════
   SECTION HEADER — AO pattern
   Small label + bold two-tone title + view-all link
══════════════════════════════════════ */
.sec-hd {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 24px; gap: 16px;
}
.sec-hd-left { display: flex; flex-direction: column; gap: 4px; }
.sec-label {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.8px; color: var(--slate);
  display: block;
}
.sec-title {
  font-size: 36px; font-weight: 700; color: var(--charcoal);
  letter-spacing: 0.4px; line-height: 1.1; white-space: nowrap;
}
.sec-title .accent { color: var(--scarlet); }
.sec-viewall {
  font-size: 13px; font-weight: 600; color: var(--scarlet);
  white-space: nowrap; flex-shrink: 0; padding-bottom: 4px;
  display: flex; align-items: center; gap: 4px; transition: color 0.15s;
}
.sec-viewall:hover { color: var(--charcoal); }
.sec-viewall::after { content: ''; display: inline-block; width: 14px; height: 14px; flex-shrink: 0; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 12H20M20 12L14 6M20 12L14 18' stroke='%23BB0000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat; }

/* ══════════════════════════════════════
   CONTENT WRAPPERS
══════════════════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-block { padding: 48px 0; border-bottom: 1px solid var(--gray-light); }
.section-block:last-of-type { border-bottom: none; }

/* ══════════════════════════════════════
   HERO — AO split layout
══════════════════════════════════════ */
.hero-section {
  border-bottom: 2px solid var(--scarlet);
  padding: 0 max(24px, calc((100vw - 1200px) / 2 + 24px)) 0 40px;
}
.hero-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 500px;
}

/* ── Left: text column ── */
.hero-text {
  padding-left:   max(20px, calc((100vw - 1200px) / 2 - 16px));
  padding-right:  40px;
  padding-top:    40px;
  padding-bottom: 40px;
  display: flex; flex-direction: column; justify-content: center;
}

.hero-rule { display: none; }

.hero-eyebrow {
  font-size: 10px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2.5px; color: var(--gray);
  margin-bottom: 14px; display: block;
}
.hero-eyebrow::before { display: none; }

.hero-title {
  display: block;
  font-family: var(--font-sans);
  font-size: 26px; font-weight: 800; color: var(--charcoal);
  line-height: 1.25; letter-spacing: -0.3px; margin-bottom: 14px;
  transition: color 0.2s ease-out;
  cursor: pointer;
}
.hero-title:hover { color: var(--scarlet); }

.hero-excerpt {
  font-size: 16px; font-weight: 400; color: var(--gray);
  line-height: 1.65; margin-bottom: 0;
}

/* read-more CTA, below excerpt */
.hero-meta { margin-top: 24px; }
.hero-readmore {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--scarlet); color: #fff;
  font-size: 13px; font-weight: 700; letter-spacing: 0.4px;
  padding: 11px 24px; border-radius: 4px;
  transition: background 0.2s ease-out, gap 0.2s ease-out;
  white-space: nowrap; cursor: pointer;
}
.hero-readmore::after {
  content: ''; display: inline-block; flex-shrink: 0;
  width: 16px; height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 12H20M20 12L16 8M20 12L16 16' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat; background-position: center;
  transition: transform 0.2s ease-out;
}
.hero-readmore:hover  { background: var(--charcoal); gap: 12px; }
.hero-readmore:hover::after { transform: translateX(3px); }

/* ── Right: image column ── */
.hero-image-col {
  padding: 44px 0 0 0;
  display: flex; flex-direction: column; align-items: stretch;
}
.hero-img-frame {
  position: relative; overflow: hidden; flex: 1;
}
.hero-img-frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.7s ease-out;
}
.hero-img-slide.active:hover img { transform: scale(1.025); }

.hero-image-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.06) 0%,
    transparent 22%,
    transparent 48%,
    rgba(0,0,0,0.82) 100%
  );
}

.hero-image-label-wrap {
  position: absolute; top: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.58);
  padding: 9px 22px;
  display: flex; align-items: center;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.15s ease-out;
}
.hero-image-label-wrap.cap-updating { opacity: 0; }
.hero-image-label {
  font-size: 10.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2.2px; color: rgba(255,255,255,0.95);
  display: flex; align-items: center; gap: 0;
}
.hero-image-label::before { display: none; }
.hero-image-label::after {
  content: '';
  display: inline-block;
  width: 4px; height: 16px;
  background: var(--scarlet);
  flex-shrink: 0;
  margin-left: 9px;
}

.hero-image-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 52px 28px 24px;
}
.hero-image-caption-title {
  font-family: var(--font-sans);
  font-size: 24px; font-weight: 700; color: var(--white);
  line-height: 1.18; letter-spacing: -0.3px;
}
.hero-image-caption-sub {
  font-size: 13.5px; font-weight: 400; color: rgba(255,255,255,0.80);
  line-height: 1.5; margin-top: 7px;
}
.hero-image-caption-attr {
  display: flex; align-items: center; gap: 8px; margin-top: 12px;
}
.hero-cap-attr-label {
  font-size: 9px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.8px; color: rgba(255,255,255,0.45);
}
.hero-cap-attr-name {
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.90);
  letter-spacing: 0.1px;
}
.hero-image-caption-byline { display: none; }

/* ══════════════════════════════════════
   MORE STRIP — hidden
══════════════════════════════════════ */
.more-strip { display: none; }

/* ══════════════════════════════════════
   HERO CAROUSEL
══════════════════════════════════════ */
.hero-slides-text {
  flex: 1; display: grid; min-height: 0; overflow: hidden;
}
.hero-slide {
  grid-column: 1; grid-row: 1;
  display: flex; flex-direction: column; justify-content: center;
  gap: 0; opacity: 0; transition: opacity 0.45s ease-out;
  pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }

.hero-img-slide {
  display: block; position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.45s ease-out;
  pointer-events: none;
}
.hero-img-slide.active { opacity: 1; pointer-events: auto; }
.hero-img-slide img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.7s ease-out;
}

/* Shared caption: pointer-events:none so clicks pass through to the active slide <a> below */
.hero-image-caption {
  pointer-events: none;
  transition: opacity 0.15s ease-out;
}
.hero-image-caption.cap-updating {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide, .hero-img-slide { transition: none !important; }
  .hero-image-caption { transition: none !important; }
  .hero-progress-fill { animation: none !important; width: 100% !important; }
}

.hero-progress {
  height: 3px; background: var(--tan);
  overflow: hidden; flex-shrink: 0;
}
.hero-progress-fill {
  height: 100%; width: 0; background: var(--scarlet);
}
.hero-progress-fill.running {
  animation: heroProgress 6s linear forwards;
}
@keyframes heroProgress { from { width: 0 } to { width: 100% } }

.hero-carousel-nav {
  display: flex; align-items: center;
  justify-content: center; gap: 16px;
  padding: 14px 0 20px; flex-shrink: 0;
}
.hero-dots { display: flex; gap: 7px; align-items: center; }
.hero-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gray-light); border: none; cursor: pointer;
  padding: 0; flex-shrink: 0;
  transition: background 0.2s, width 0.2s, border-radius 0.2s;
}
.hero-dot.active { background: var(--scarlet); width: 20px; border-radius: 3px; }
.hero-dot:hover:not(.active) { background: var(--gray-300); }

/* ══════════════════════════════════════
   LATEST NEWS — featured + sidebar layout
══════════════════════════════════════ */
.feat-sidebar-layout {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 0; border-top: 1px solid var(--gray-light);
}
.feat-main {
  padding: 24px 32px 24px 0;
  border-right: 1px solid var(--gray-light);
}
.feat-inner { display: block; }
.article-feat-img {
  width: 100%; height: 300px; object-fit: cover;
  display: block; margin-bottom: 20px; flex-shrink: 0;
}
.feat-content { display: flex; flex-direction: column; }

.feat-second-group {
  margin-top: 24px;
  border-top: 1px solid var(--gray-light);
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.feat-second {
  display: flex; flex-direction: column;
  padding: 18px 24px 18px 0;
  border-right: 1px solid var(--gray-light);
  color: var(--charcoal);
}
.feat-second:last-child { padding-right: 0; border-right: none; padding-left: 24px; }
.feat-second:hover .feat-second-title { color: var(--scarlet); }
.feat-second-title {
  font-size: 15px; font-weight: 700; color: var(--charcoal);
  line-height: 1.38; letter-spacing: 0.1px; margin-bottom: 8px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden; min-height: calc(1.38em * 3);
  transition: color 0.15s;
}
.feat-second-byline {
  font-size: 10.5px; font-weight: 600; color: var(--gray-300);
  text-transform: uppercase; letter-spacing: 0.8px; margin-top: auto;
}
.feat-second-excerpt {
  font-size: 12.5px; font-weight: 400; color: var(--gray); line-height: 1.6; display: block; margin-top: 6px;
}
.art-category {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.8px; color: var(--scarlet); margin-bottom: 10px;
  display: block;
}
.feat-title {
  font-size: 26px; font-weight: 700; color: var(--charcoal);
  line-height: 1.18; letter-spacing: 0.2px; margin-bottom: 12px;
  display: block; transition: color 0.15s;
}
.feat-title:hover { color: var(--scarlet); }
.feat-excerpt {
  font-size: 14px; font-weight: 400; color: var(--gray);
  line-height: 1.65; margin-bottom: 12px;
}
.art-byline {
  font-size: 11px; font-weight: 600; color: var(--gray-300);
  text-transform: uppercase; letter-spacing: 0.8px; display: block;
}
.feat-readmore {
  font-size: 12.5px; font-weight: 700; color: var(--scarlet);
  display: flex; align-items: center; gap: 4px; transition: color 0.15s;
  margin-top: 14px; align-self: flex-start;
}
.feat-readmore::after { content: ''; display: inline-block; width: 14px; height: 14px; flex-shrink: 0; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 12H20M20 12L14 6M20 12L14 18' stroke='%23BB0000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat; }
.feat-readmore:hover { color: var(--charcoal); }

.feat-sidebar { padding: 24px 0 24px 28px; }
.sidebar-head {
  font-size: 14px; font-weight: 700; color: var(--charcoal);
  letter-spacing: 0.2px; padding-bottom: 12px;
  border-bottom: 2px solid var(--scarlet); margin-bottom: 4px;
}
.sidebar-art {
  display: flex; gap: 12px; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--gray-light);
  color: var(--charcoal);
}
.sidebar-art:last-child { border-bottom: none; }
.sidebar-art:hover .sidebar-art-title { color: var(--scarlet); }
.sidebar-art:hover .sidebar-art-num { color: var(--scarlet); }
.sidebar-art-num {
  font-size: 20px; font-weight: 700; color: var(--gray-light);
  flex-shrink: 0; line-height: 1.2; min-width: 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: color 0.15s;
}
.sidebar-art-body { flex: 1; }
.sidebar-art-cat {
  font-size: 9.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.6px; color: var(--scarlet); margin-bottom: 5px; display: block;
}
.sidebar-art-title {
  font-size: 14px; font-weight: 600; color: var(--charcoal);
  line-height: 1.38; transition: color 0.15s; display: block;
  letter-spacing: 0.1px;
}
.sidebar-art-date {
  font-size: 10.5px; color: var(--gray-300); margin-top: 5px; display: block;
  font-weight: 500;
}

/* ══════════════════════════════════════
   TEXT-ONLY 3-COL GRID (Things To Do, etc.)
══════════════════════════════════════ */
.text-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr;
  gap: 0; border-top: 1px solid var(--gray-light);
}
.tg-feat {
  display: flex; flex-direction: column; padding: 24px 28px 24px 0;
  border-right: 1px solid var(--gray-light); color: var(--charcoal);
}
.tg-feat:hover .tg-feat-title { color: var(--scarlet); }
.tg-feat-title {
  font-size: 22px; font-weight: 700; color: var(--charcoal);
  line-height: 1.22; letter-spacing: 0.2px; margin-bottom: 10px;
  display: block; transition: color 0.15s;
}
.tg-feat-excerpt {
  font-size: 13.5px; font-weight: 400; color: var(--gray); line-height: 1.65; display: block;
}
.tg-stack {
  display: flex; flex-direction: column;
  border-right: 1px solid var(--gray-light);
}
.tg-stack:last-child { border-right: none; }
.tg-item {
  display: block; padding: 20px 20px;
  border-bottom: 1px solid var(--gray-light);
  color: var(--charcoal); flex: 1;
}
.tg-item:last-child { border-bottom: none; }
.tg-item:hover .tg-title { color: var(--scarlet); }
.tg-title {
  font-size: 15px; font-weight: 700; color: var(--charcoal);
  line-height: 1.35; letter-spacing: 0.1px; margin-bottom: 6px;
  display: block; transition: color 0.15s;
}
.tg-excerpt {
  font-size: 12.5px; font-weight: 400; color: var(--gray); line-height: 1.6; display: block;
}

/* ══════════════════════════════════════
   NEWSLETTER — AO style (light gray bg)
══════════════════════════════════════ */
.nl-strip { background: var(--scarlet); padding: 48px 24px; }
.nl-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.nl-label {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.8px; color: rgba(255,255,255,0.65); margin-bottom: 8px;
}
.nl-title {
  font-size: 28px; font-weight: 700; color: var(--white);
  line-height: 1.2; letter-spacing: 0.3px;
}
.nl-title .accent { color: rgba(255,255,255,0.8); }
.nl-sub {
  font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 6px; line-height: 1.5;
}
.nl-hd { flex: 0 0 auto; max-width: 340px; }
.nl-viewall {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase; letter-spacing: 1.2px;
  transition: color 0.15s;
}
.nl-viewall:hover { color: var(--white); }

.nl-card {
  flex: 1; min-width: 0; max-width: 680px;
  background: var(--charcoal); border-radius: 4px; overflow: hidden;
}
.nl-card-main {
  display: flex; flex-direction: column; padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.15s; color: rgba(255,255,255,0.5);
}
.nl-card-main:hover { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.8); }
.nl-card-cat {
  font-size: 9.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.8px; color: var(--scarlet);
  margin-bottom: 8px; display: block;
}
.nl-card-title {
  font-size: 15px; font-weight: 700;
  line-height: 1.35; display: block; transition: color 0.15s;
}
.nl-card-readmore {
  font-size: 11.5px; font-weight: 700;
  margin-top: 10px; display: block;
  text-transform: uppercase; letter-spacing: 0.8px;
}

.nl-card-pair { display: grid; grid-template-columns: 1fr 1fr; }
.nl-card-sec {
  display: flex; flex-direction: column; padding: 14px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.15s;
}
.nl-card-sec:hover { background: rgba(255,255,255,0.06); }
.nl-card-sec:last-child { border-right: none; }
.nl-card-sec-title {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.5);
  line-height: 1.38; transition: color 0.15s;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.nl-card-sec:hover .nl-card-sec-title { color: rgba(255,255,255,0.8); }

/* ══════════════════════════════════════
   4-COLUMN CARD GRID (Food & Dining, Sports)
══════════════════════════════════════ */
.card-grid-4 {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border-top: 1px solid var(--gray-light);
}
.cg-card {
  display: flex; flex-direction: column; color: var(--charcoal);
  padding: 20px 28px 20px 24px;
  border-right: 1px solid var(--gray-light);
  cursor: pointer;
}
.cg-card:first-child { padding-left: 0; }
.cg-card:last-child { border-right: none; padding-right: 0; }
.cg-card:hover .cg-title { color: var(--scarlet); }
.cg-loc {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.4px; color: var(--slate); margin-bottom: 8px;
  display: block;
}
.cg-title {
  font-size: 15px; font-weight: 700; color: var(--charcoal);
  line-height: 1.4; letter-spacing: 0.1px; margin-bottom: 8px;
  display: block; transition: color 0.15s; flex: 1;
}
.cg-excerpt {
  font-size: 12.5px; font-weight: 400; color: var(--gray); line-height: 1.6;
  margin-bottom: 8px;
}
.cg-readmore {
  font-size: 12px; font-weight: 700; color: var(--scarlet);
  display: flex; align-items: center; gap: 4px;
  margin-top: auto; padding-top: 10px; transition: color 0.15s; align-self: flex-start;
}
.cg-readmore::after { content: ''; display: inline-block; width: 14px; height: 14px; flex-shrink: 0; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 12H20M20 12L14 6M20 12L14 18' stroke='%23BB0000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat; }
.cg-readmore:hover { color: var(--charcoal); }

/* ══════════════════════════════════════
   FEATURED STORY — AO "Discover Stories" pattern
══════════════════════════════════════ */
.story-layout {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 0; border-top: 1px solid var(--gray-light);
  padding-top: 24px;
}
.story-feat {
  display: flex; flex-direction: column; color: var(--charcoal);
  padding-right: 32px; border-right: 1px solid var(--gray-light);
}
.story-feat:hover .story-feat-title { color: var(--scarlet); }
.story-feat-title {
  font-size: 30px; font-weight: 800; color: var(--charcoal);
  line-height: 1.18; letter-spacing: -0.2px; margin-bottom: 14px;
  display: block; transition: color 0.15s;
}
.story-feat-excerpt {
  font-size: 14px; color: var(--gray); line-height: 1.65; margin-bottom: 12px; display: block;
}
.story-readmore {
  font-size: 13px; font-weight: 700; color: var(--scarlet);
  display: flex; align-items: center; gap: 4px;
  transition: color 0.15s; align-self: flex-start;
}
.story-readmore::after { content: ''; display: inline-block; width: 14px; height: 14px; flex-shrink: 0; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 12H20M20 12L14 6M20 12L14 18' stroke='%23BB0000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat; }
.story-readmore:hover { color: var(--charcoal); }

.story-list { border-left: 1px solid var(--gray-light); padding-left: 28px; }
.story-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--gray-light);
  color: var(--charcoal);
}
.story-item:first-child { padding-top: 0; }
.story-item:last-child { border-bottom: none; }
.story-item:hover .story-item-title { color: var(--scarlet); }
.story-item-thumb {
  width: 80px; height: 60px; flex-shrink: 0; overflow: hidden;
  background: var(--tan);
}
.story-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.story-item-body { flex: 1; }
.story-item-cat {
  font-size: 9.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--scarlet); margin-bottom: 5px; display: block;
}
.story-item-title {
  font-size: 14px; font-weight: 600; color: var(--charcoal);
  line-height: 1.38; transition: color 0.15s; display: block;
}
.story-item-by {
  font-size: 10.5px; color: var(--gray-300); margin-top: 4px; display: block;
}

/* ══════════════════════════════════════
   PAIRED COLUMNS — Arts/Real Estate
══════════════════════════════════════ */
.pair-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid var(--gray-light);
}
.pair-col { padding: 24px 36px 0 0; }
.pair-col + .pair-col { padding: 24px 0 0 36px; border-left: 1px solid var(--gray-light); }
.pair-feat {
  display: block; padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-light); color: var(--charcoal);
}
.pair-feat:hover .pair-feat-title { color: var(--scarlet); }
.pair-feat-title {
  font-size: 20px; font-weight: 700; color: var(--charcoal);
  line-height: 1.25; letter-spacing: 0.2px; margin-bottom: 8px;
  display: block; transition: color 0.15s;
}
.pair-feat-excerpt {
  font-size: 13px; color: var(--gray); line-height: 1.6; display: block;
}
.pair-items { display: flex; flex-direction: column; }
.pair-item {
  display: block; padding: 14px 0;
  border-bottom: 1px solid var(--gray-light); color: var(--charcoal);
}
.pair-item:last-child { border-bottom: none; }
.pair-item:hover .pair-item-title { color: var(--scarlet); }
.pair-item-title {
  font-size: 14px; font-weight: 600; color: var(--charcoal);
  line-height: 1.4; transition: color 0.15s; display: block;
}
.pair-item-excerpt {
  font-size: 12.5px; font-weight: 400; color: var(--gray); line-height: 1.6; display: block; margin-top: 4px;
}

/* ══════════════════════════════════════
   NEIGHBORHOODS — Green bg featured + lists
══════════════════════════════════════ */
.neigh-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 0; border-top: 1px solid var(--gray-light);
}
.neigh-featured {
  background: var(--bg); color: var(--charcoal);
  padding: 24px 32px 24px 0;
  display: flex; flex-direction: column;
}
.nf-label {
  font-size: 10px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.8px; color: var(--slate); margin-bottom: 14px;
  display: block;
}
.nf-name {
  font-family: var(--font-serif);
  font-size: 26px; font-weight: 600; font-style: italic; color: var(--charcoal);
  line-height: 1.2; letter-spacing: 0.1px; margin-bottom: 12px; flex: 1;
  transition: color 0.15s;
}
.neigh-featured:hover .nf-name { color: var(--scarlet); }
.nf-desc {
  font-size: 13px; color: var(--gray); line-height: 1.65;
  margin-bottom: 18px;
}
.nf-link {
  font-size: 12px; font-weight: 700; color: var(--scarlet);
  display: flex; align-items: center; gap: 5px; transition: color 0.15s;
  align-self: flex-start;
}
.nf-link::after { content: ''; display: inline-block; width: 14px; height: 14px; flex-shrink: 0; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 12H20M20 12L14 6M20 12L14 18' stroke='%23BB0000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat; }
.nf-link:hover { color: var(--charcoal); }
.neigh-col {
  border-left: 1px solid var(--gray-light);
  padding: 4px 0 24px 24px;
}
.neigh-col-head {
  padding: 8px 0 12px; border-bottom: 1px solid var(--gray-light);
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 0;
}
.neigh-col-head h3 {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.4px; color: var(--gray);
}
.neigh-col-count { font-size: 10px; color: var(--gray); }
.neigh-list { list-style: none; }
.neigh-list li { border-bottom: 1px solid var(--gray-light); }
.neigh-list li:last-child { border-bottom: none; }
.neigh-list a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 8px 11px 0; font-size: 13.5px; font-weight: 500; color: var(--charcoal);
  transition: color 0.15s; letter-spacing: 0.1px;
}
.neigh-list a:hover { color: var(--scarlet); }
.neigh-list a .arrow {
  font-size: 12px; color: var(--gray-light); transition: color 0.15s;
}
.neigh-list a:hover .arrow { color: var(--scarlet); }

/* ══════════════════════════════════════
   EDITORIAL BAND
══════════════════════════════════════ */
.editorial-band {
  background: var(--charcoal); padding: 52px 24px;
}
.eb-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.eb-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2.2px; color: var(--scarlet); margin-bottom: 16px; display: block;
}
.eb-headline {
  font-family: var(--font-serif);
  font-size: 28px; font-weight: 600; font-style: italic;
  color: rgba(255,255,255,0.9); line-height: 1.3; margin-bottom: 14px;
}
.eb-copy {
  font-size: 13.5px; color: rgba(255,255,255,0.45); line-height: 1.7;
}
.eb-right { display: flex; flex-direction: column; gap: 22px; }
.eb-stats {
  display: flex; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
}
.eb-stat {
  flex: 1; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  padding: 0 12px;
}
.eb-stat:last-child { border-right: none; }
.eb-num {
  font-family: var(--font-serif);
  font-size: 30px; font-weight: 700; color: var(--scarlet);
  line-height: 1; display: block; margin-bottom: 5px;
}
.eb-desc {
  font-size: 9px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.3px; color: rgba(255,255,255,0.38);
}
.eb-topics-label {
  font-size: 9.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.6px; color: rgba(255,255,255,0.3); margin-bottom: 10px; display: block;
}
.eb-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.eb-tag {
  font-size: 11.5px; font-weight: 600; color: rgba(255,255,255,0.6);
  padding: 5px 14px; border: 1px solid rgba(255,255,255,0.16);
  letter-spacing: 0.2px; transition: color 0.15s, border-color 0.15s;
}
.eb-tag:hover { color: var(--white); border-color: rgba(255,255,255,0.42); }

/* ══════════════════════════════════════
   EXPLORE TILES (AO browse section)
══════════════════════════════════════ */
.explore-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px;
  margin-top: 20px;
}
.explore-tile {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border: 1.5px solid var(--tan);
  border-radius: 4px;
  font-size: 13px; font-weight: 600; color: var(--charcoal);
  background: var(--bg); transition: all 0.15s; letter-spacing: 0.1px;
}
.explore-tile:hover {
  border-color: var(--scarlet); color: var(--scarlet);
  background: rgba(187,0,0,0.03);
}
.explore-tile::after { content: ''; display: inline-block; width: 13px; height: 13px; flex-shrink: 0; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 12H20M20 12L14 6M20 12L14 18' stroke='%231A1A1A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat; opacity: 0.4; }
.explore-tile:hover::after { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 12H20M20 12L14 6M20 12L14 18' stroke='%23BB0000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); opacity: 1; }
/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  background: var(--black);
  padding: 60px 24px 0;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 160px 232px;
  gap: 64px; align-items: flex-start;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand {}
.footer-logo-link { display: inline-block; margin-bottom: 18px; }
.footer-logo {
  height: 36px; width: auto;
  filter: brightness(0) invert(1); opacity: 0.72;
}
.footer-tagline {
  font-size: 13px; line-height: 1.7;
  color: rgba(255,255,255,0.28);
  max-width: 280px;
}
.footer-nav-group { display: flex; flex-direction: column; }
.footer-nav-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.8px; color: rgba(255,255,255,0.22);
  margin-bottom: 16px; display: block;
}
.footer-nav-group a {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.42);
  padding: 5px 0; transition: color 0.15s; line-height: 1.4;
}
.footer-nav-group a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 20px 0 28px;
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.footer-copy { font-size: 11.5px; color: rgba(255,255,255,0.42); white-space: nowrap; }

/* ══════════════════════════════════════
   DISCOVER COLUMBUS
══════════════════════════════════════ */
.discover-section {
  background: var(--black); padding: 72px 24px;
  text-align: center;
}
.community-inner { max-width: 1200px; margin: 0 auto; }
.community-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2.2px; color: var(--slate); margin-bottom: 16px; display: block;
}
.community-title {
  font-size: 26px; font-weight: 800; color: var(--white);
  line-height: 1.28; letter-spacing: -0.2px;
  max-width: 560px; margin: 0 auto 56px;
}
.community-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.cm-item { display: flex; flex-direction: column; align-items: center; }
.cm-icon-wrap {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; flex-shrink: 0;
  transition: border-color 0.15s, background 0.15s;
}
.cm-item:hover .cm-icon-wrap {
  border-color: var(--scarlet);
  background: rgba(187,0,0,0.28);
}
.cm-title { transition: opacity 0.15s; }
.cm-item:hover .cm-title { opacity: 0.85; }
.cm-icon-wrap svg {
  width: 28px; height: 28px;
  stroke: var(--scarlet); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.cm-icon-wrap--fill svg {
  fill: var(--scarlet); stroke: none; stroke-width: 0;
}
.cm-title {
  font-size: 17px; font-weight: 700; color: var(--white);
  margin-bottom: 10px; letter-spacing: 0.1px;
}
.cm-desc {
  font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.7;
  max-width: 300px; margin: 0 auto 20px; flex: 1;
}
.cm-link {
  font-size: 13px; font-weight: 700; color: var(--scarlet);
  display: inline-flex; align-items: center; gap: 5px;
  transition: color 0.15s; margin-top: auto;
}
.cm-link::after { content: ''; display: inline-block; width: 14px; height: 14px; flex-shrink: 0; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 12H20M20 12L14 6M20 12L14 18' stroke='%23BB0000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat; }
.cm-link:hover { color: var(--white); }
.cm-link:hover::after { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 12H20M20 12L14 6M20 12L14 18' stroke='%23FFFFFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }

/* ══════════════════════════════════════
   SITE DISCLAIMER
══════════════════════════════════════ */
.site-disclaimer {
  font-size: 11px; color: rgba(255,255,255,0.38);
  text-align: right; line-height: 1.55;
  max-width: 480px; margin: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-section { padding: 0 max(24px, calc((100vw - 1200px) / 2 + 24px)) 0 24px; }
  .hero-inner { grid-template-columns: 1fr 1fr; grid-template-rows: 440px; }
  .hero-title { font-size: 22px; }
  .feat-inner { grid-template-columns: 1fr; }
  .feat-sidebar-layout { grid-template-columns: 1fr 280px; }
}
@media (max-width: 767px) {
  .header-inner { height: 54px; padding: 0 16px; gap: 0; }
  .header-nav { display: none; }
  .header-right { display: none; }
  .nav-toggle { display: flex; }
  .sec-title { font-size: 26px; }
  .hero-section { padding: 0; }
  .hero-inner { grid-template-columns: 1fr; height: auto; }
  .hero-text { padding: 28px 20px; border-bottom: 1px solid var(--gray-light); justify-content: flex-start; }
  .hero-slides-text { overflow: visible; }
  .hero-title { font-size: 22px; letter-spacing: -0.2px; }
  .hero-search-wrap { max-width: 100%; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-image-col { height: 240px; padding: 0; }
  .more-strip { display: none; }
  .container { padding: 0 16px; }
  .section-block { padding: 32px 0; }
  .feat-sidebar-layout { grid-template-columns: 1fr; }
  .feat-main { padding: 16px 0; border-right: none; border-bottom: 1px solid var(--gray-light); }
  .feat-sidebar { padding: 20px 0 0; }
  .feat-second-group { grid-template-columns: 1fr; }
  .feat-second { padding: 14px 0; border-right: none; border-bottom: 1px solid var(--gray-light); }
  .feat-second:last-child { padding-left: 0; border-bottom: none; }
  .text-grid { grid-template-columns: 1fr; }
  .tg-feat { padding: 16px 0; border-right: none; border-bottom: 1px solid var(--gray-light); }
  .tg-stack { border-right: none; }
  .tg-item { padding: 14px 0; }
  .card-grid-4 { grid-template-columns: 1fr 1fr; gap: 16px; }
  .story-layout { grid-template-columns: 1fr; gap: 24px; }
  .story-list { border-left: none; padding-left: 0; border-top: 1px solid var(--gray-light); padding-top: 20px; }
  .pair-layout { grid-template-columns: 1fr; }
  .pair-col { padding: 20px 0 0; }
  .pair-col + .pair-col { padding: 20px 0 0; border-left: none; border-top: 1px solid var(--gray-light); }
  .neigh-grid { grid-template-columns: 1fr; }
  .neigh-col { border-left: none; border-top: 1px solid var(--gray-light); }
  .eb-inner { grid-template-columns: 1fr; gap: 32px; }
  .eb-stats { flex-wrap: wrap; }
  .eb-stat { min-width: 40%; border-right: none; padding: 12px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .explore-grid { grid-template-columns: repeat(2, 1fr); }
  .nl-inner { flex-direction: column; gap: 24px; }
  .nl-hd { max-width: 100%; }
  .nl-card { max-width: 100%; }
  .discover-section { padding: 48px 16px; }
  .community-grid { grid-template-columns: 1fr; gap: 36px; }
  .site-footer { padding: 40px 16px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .footer-logo-link { display: flex; justify-content: center; }
  .footer-tagline { max-width: 100%; text-align: center; }
  .footer-nav-group { align-items: center; text-align: center; }
  .footer-bottom { flex-direction: column; align-items: center; gap: 10px; text-align: center; }
  .site-disclaimer { text-align: center; max-width: 100%; }

  /* ─ Sports: remove desktop right padding/border ─ */
  .story-feat { padding-right: 0; border-right: none; }

  /* ─ Food cards: fix 2-col padding and borders ─ */
  .cg-card {
    padding: 16px 0; border-right: none;
    border-bottom: 1px solid var(--gray-light);
  }
  .cg-card:first-child { padding-left: 0; }
  .cg-card:last-child { padding-right: 0; }
  .cg-card:nth-last-child(-n+2) { border-bottom: none; }
  /* odd = left column: right separator; even = right column: no separator */
  .cg-card:nth-child(odd) { border-right: 1px solid var(--gray-light); }

  /* ─ Things To Do: separator between stacked groups ─ */
  .tg-stack + .tg-stack { border-top: 1px solid var(--gray-light); padding-top: 2px; }
  /* restore border-bottom on the last item of the first stack */
  .tg-stack:not(:last-child) .tg-item:last-child { border-bottom: 1px solid var(--gray-light); }

  /* ─ Section pair-col titles: match responsive size ─ */
  .pair-col .sec-title { white-space: normal; }
  .pair-feat-title { font-size: 18px; }
  .pair-feat-excerpt { font-size: 13px; }

  /* ─ Editorial band: readable headline ─ */
  .eb-headline { font-size: 22px; margin-bottom: 10px; }
  .editorial-band { padding: 40px 16px; }

  /* ─ Discover Columbus: reduce title size and spacing ─ */
  .community-title { font-size: 22px; margin-bottom: 28px; }
  .cm-title { font-size: 16px; }
  .cm-desc { font-size: 13px; margin-bottom: 14px; }

  /* ─ Explore tiles: more compact ─ */
  .explore-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .explore-tile { font-size: 12.5px; padding: 12px 14px; }

  /* ─ Section headers: allow wrap on narrow screens ─ */
  .sec-hd { flex-wrap: wrap; align-items: center; gap: 8px; }
  .sec-hd-left { flex: 1; min-width: 0; }
  .sec-viewall { flex-shrink: 0; }

  /* ─ Sidebar articles: compact touch targets ─ */
  .sidebar-art { padding: 12px 0; }
  .sidebar-art-num { font-size: 16px; min-width: 20px; }

  /* ─ Newsletter band: mobile card stack ─ */
  .nl-card-pair { grid-template-columns: 1fr; }
  .nl-card-sec { border-right: none; border-bottom: 1px solid var(--gray-light); }
  .nl-card-sec:last-child { border-bottom: none; }
}

/* ══════════════════════════════════════
   LAYOUT RESET
══════════════════════════════════════ */
.home .container.main {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.container.layout {
  max-width: 100%;
  padding: 0;
}

.container.layout .row.layout {
  margin: 0;
}

.container.layout .row.layout > .cols {
  overflow-x: hidden;
}

.home .container.layout .row.layout > .cols {
  padding: 0;
}

.pages .main-wrapper .container.main {
  padding: 24px 16px;
}

/* ══════════════════════════════════════
   FONTS RESET
══════════════════════════════════════ */
.main-paragraph h1,
.main-paragraph h2 {
  font-weight: 700;
  color: var(--text);
}

.main-paragraph h1,
.main-paragraph h2,
.main-paragraph h3,
.main-paragraph p,
.main-paragraph strong {
  color: var(--text);
}

.main-paragraph h1 {
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

.main-paragraph h2 {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 40px 0 18px;
}

.main-paragraph h3 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
  margin: 24px 0 10px;
}

.main-paragraph p {
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 16px;
}

.main-paragraph strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  .main-paragraph h1 {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .main-paragraph h2 {
    font-size: 25px;
    margin: 32px 0 16px;
  }

  .main-paragraph h3 {
    font-size: 20px;
    margin: 22px 0 8px;
  }

  .main-paragraph p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 14px;
  }
}

/* ══════════════════════════════════════
   TABLE RESET
══════════════════════════════════════ */
table { margin: 32px 0; }

table th, table td {
  border-color: var(--border) !important;
  padding: 8px 16px !important;
}

table td {
  color: var(--text) !important;
}

table th {
  background: var(--primary-500) !important;
  color: var(--white) !important;
  font-size: 13px !important;
  font-weight: bold !important;
}

table tbody tr:nth-child(even) td {
  background: var(--surface-100) !important;
}

@media (max-width: 992px) {
  table {
    display: block !important;
    overflow-x: auto !important;
    border: 0 !important
  }
}

/* ══════════════════════════════════════
   CONTACT US FORM
══════════════════════════════════════ */
#contact-form {
  margin: 45px auto 0;
  max-width: 500px;
}

#contact-form input,
#contact-form textarea {
  flex: 1;
  border: 2px solid var(--border);
  border-radius: 6px;
  outline: 0;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text);
  min-width: 100%;
}

#contact-form input:active,
#contact-form input:focus,
#contact-form textarea:active,
#contact-form textarea:focus {
  border: 2px solid var(--primary-500);
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
  color: var(--text-muted);
}

#contact-form button {
  background: var(--primary-500);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  padding: 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
  width: 100%;
}

#contact-form button:hover {
  background: var(--accent-500);
}

/* ═══════════════════════════════════
           WIDGETS
═══════════════════════════════════ */

/* IMAGE STYLE RESET */
.item-current-image img {
  box-shadow: none !important;
  border-radius: 4px !important;
  border-color: var(--border) !important;
}

/* SUBLIST */
.item-sublist a {
  width: 100%;
  height: 100%;
}

.item.item-bubbles {
  margin-bottom: 32px;
}

.item-bubbles .row {
  margin: 0;
}

.bubbles-chip {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  display: flex;
  font-weight: 500;
  height: 100%;
  padding: 16px 48px 16px 24px;
  position: relative;
  transition: padding 0.2s ease-in-out;
}

.bubbles-chip:hover {
  color: var(--primary-800);
  background: var(--surface-100);
  border-color: var(--primary-100);
  padding-left: 20px;
}

.bubbles-chip:active,
.bubbles-chip:focus {
  background: var(--accent-500);
  color: var(--white);
}

.bubbles-link {
  display: block;
  width: 100%;
  max-width: 100%;
  text-decoration: none;
}

.bubbles-link .bubbles-outer {
  height: 100%;
  padding: 5px;
  max-width: 100%;
}

.sibling.link-button .bubbles-link .bubbles-outer,
.sibling.link-button .bubbles-chip {
  height: auto;
}

.col-gap:has(> .item-bubbles)::before {
  display: none !important;
}

.bubbles-chip::after {
  content: url("data:image/svg+xml,%3Csvg width='13' height='12' viewBox='0 0 13 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.87771 7.01782H1.02042C0.737361 7.01782 0.496528 6.91886 0.297917 6.72094C0.0993056 6.52317 0 6.2833 0 6.00136C0 5.71942 0.0993056 5.4781 0.297917 5.2774C0.496528 5.07657 0.737361 4.97615 1.02042 4.97615H8.87771L5.66583 1.76428C5.46111 1.55955 5.35681 1.31719 5.35292 1.03719C5.34889 0.757332 5.45076 0.510249 5.65854 0.295943C5.86632 0.0948319 6.11014 -0.00377823 6.39 0.000110661C6.66986 0.00399955 6.91236 0.108583 7.1175 0.313861L12.0713 5.27407C12.1699 5.37282 12.2464 5.4856 12.3008 5.6124C12.3551 5.73935 12.3823 5.86865 12.3823 6.00032C12.3823 6.13199 12.3551 6.26122 12.3008 6.38803C12.2464 6.51497 12.1727 6.62497 12.0798 6.71803L7.10958 11.688C6.89403 11.9037 6.65368 12.0081 6.38854 12.0012C6.12354 11.9942 5.88715 11.8862 5.67938 11.6772C5.4716 11.4629 5.36771 11.2166 5.36771 10.9382C5.36771 10.6599 5.4716 10.4192 5.67938 10.2162L8.87771 7.01782Z' fill='%23C0272D'/%3E%3C/svg%3E%0A");
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s ease-in-out;
}

.bubbles-chip:hover::after {
  right: 10px;
}

/* SUBLIST CARDS */
.item-sublist:has(.sublist.card) .row > div {
  padding: 5px !important;
}

.sublist.card {
  border: none;
  border-radius: 6px;
  box-shadow: var(--box-shadow-md);
  transition: 0.2s ease-in;
}

.sublist.card:hover {
  box-shadow: var(--box-shadow-lg);
  color: var(--primary-500);
  transform: translateY(-4px);
}

.sublist.card h5 {
  margin-bottom: 0;
  font-weight: 500;
}

.sublist.card .card-body {
  padding: 16px;
}

@media (max-width: 767.98px) {
  .row div:has(> .sublist.card) {
    padding: 0 !important;
  }

  .row:has(> div .sublist.card) {
    margin: 0;
    gap: 10px;
  }

  .sublist.card {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .sublist.card .card-img-top {
    border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
    width: 120px;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
  }

  .sublist.card .card-body {
    flex: 1;
    padding: 1rem;
  }

  .sublist.card .card-body * {
    line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .sublist.card .card-body h5 {
    font-size: 16px;
  }
}
