/*
Theme Name:  Canyons News
Theme URI:   https://news.canyons.media
Description: Official theme for Canyons News — the student-run news organization of College of the Canyons. Modern dark card UI, live broadcast integration, video-first layout.
Version:     1.0.0
Author:      Canyons Media, MEA Department, College of the Canyons
Author URI:  https://canyons.media
License:     GPL v2 or later
Text Domain: canyons-news
*/

/* ════════════════════════════════════════════════════════════
   DESIGN TOKENS
════════════════════════════════════════════════════════════ */
:root {
  --cn-red:       #c8102e;
  --cn-red-dark:  #a00d24;
  --cn-dark:      #0a0c12;
  --cn-navy:      #10131e;
  --cn-card:      #13161f;
  --cn-card2:     #1a1e2b;
  --cn-white:     #ffffff;
  --cn-muted:     rgba(255,255,255,.55);
  --cn-muted2:    rgba(255,255,255,.35);
  --cn-border:    rgba(255,255,255,.08);
  --cn-border2:   rgba(255,255,255,.13);
  --cn-glass:     rgba(255,255,255,.06);
  --cn-radius:    16px;
  --cn-radius-sm: 10px;
  --cn-radius-pill: 100px;
  --cn-site-w:    1280px;
  --cn-font:      'Inter', 'Helvetica Neue', Arial, sans-serif;
  --cn-font-disp: 'Arial Narrow', Arial, sans-serif;
  --cn-shadow:    0 8px 32px rgba(0,0,0,.45);
  --cn-shadow-sm: 0 2px 12px rgba(0,0,0,.3);
}

/* ════════════════════════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--cn-font);
  background: var(--cn-dark);
  color: var(--cn-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ════════════════════════════════════════════════════════════
   LAYOUT UTILITY
════════════════════════════════════════════════════════════ */
.cn-wrap {
  max-width: var(--cn-site-w);
  margin-inline: auto;
  padding-inline: 24px;
}
.cn-section { padding-block: 56px; }

/* ════════════════════════════════════════════════════════════
   UTILITY BAR
════════════════════════════════════════════════════════════ */
.cn-util-bar {
  background: #06080e;
  border-bottom: 1px solid var(--cn-border);
  padding: 7px 0;
  font-size: .72rem;
  font-family: var(--cn-font);
  letter-spacing: .03em;
  position: sticky;
  top: 0;
  z-index: 200;
}
.cn-util-inner {
  max-width: var(--cn-site-w);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cn-util-brand {
  color: var(--cn-muted);
  font-weight: 500;
}
.cn-util-brand strong { color: var(--cn-white); }
.cn-util-brand a { color: var(--cn-red); font-weight: 600; }
.cn-util-brand a:hover { color: #e53050; }
.cn-util-date { color: var(--cn-muted2); }

/* ════════════════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════════════ */
.cn-header {
  background: #0a0e1a;
  border-bottom: 1px solid var(--cn-border);
  position: sticky;
  top: 35px;
  z-index: 199;
}
.cn-header-inner {
  max-width: var(--cn-site-w);
  margin-inline: auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 94px;
}
.cn-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.cn-logo img { height: 38px; width: auto; }
.cn-logo-text {
  font-family: var(--cn-font-disp);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cn-white);
  letter-spacing: -.01em;
  line-height: 1;
}
.cn-logo-text span { color: var(--cn-red); }

/* Primary nav */
.cn-nav { display: flex; align-items: center; gap: 4px; flex: 1; }
.cn-nav a {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--cn-muted);
  padding: 6px 12px;
  border-radius: var(--cn-radius-sm);
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.cn-nav a:hover,
.cn-nav a.current-menu-item { color: var(--cn-white); background: var(--cn-glass); }

/* Header right actions */
.cn-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

/* Header weather pill */
.cn-hdr-wx {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cn-hdr-wx-icon { display: flex; align-items: center; }
.cn-hdr-wx-icon svg { width: 18px; height: 18px; display: block; }
.cn-hdr-wx-temp {
  font-size: .88rem;
  font-weight: 700;
  color: var(--cn-white);
}
.cn-hdr-wx-cond {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
}
.cn-hdr-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* Bell */
.cn-hdr-bell {
  background: none;
  border: none;
  color: rgba(255,255,255,.45);
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  transition: color .15s, background .15s;
}
.cn-hdr-bell:hover { color: var(--cn-white); background: var(--cn-glass); }
.cn-hdr-bell svg { width: 20px; height: 20px; }

/* Join button */
.cn-hdr-join {
  display: inline-flex;
  align-items: center;
  background: var(--cn-white);
  color: var(--cn-dark);
  font-size: .78rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--cn-radius-pill);
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s;
}
.cn-hdr-join:hover { background: #e0e0e0; }

/* LIVE badge */
.cn-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--cn-red);
  color: var(--cn-white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--cn-radius-pill);
  text-decoration: none;
  transition: background .15s;
}
.cn-live-badge:hover { background: var(--cn-red-dark); }
.cn-live-dot {
  width: 7px; height: 7px;
  background: #fff;
  border-radius: 50%;
  animation: cn-pulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes cn-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.7); }
}

/* Search toggle */
.cn-search-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cn-glass);
  border: 1px solid var(--cn-border);
  border-radius: 50%;
  color: var(--cn-muted);
  transition: color .15s, border-color .15s;
}
.cn-search-btn:hover { color: var(--cn-white); border-color: var(--cn-border2); }
.cn-search-btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }

/* Hamburger */
.cn-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px; height: 36px;
  align-items: center;
  justify-content: center;
  background: var(--cn-glass);
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius-sm);
}
.cn-nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--cn-white);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* Mobile nav drawer */
.cn-mobile-nav {
  display: none;
  background: var(--cn-navy);
  border-top: 1px solid var(--cn-border);
  padding: 16px 0;
}
.cn-mobile-nav.open { display: block; }
.cn-mobile-nav a {
  display: block;
  padding: 12px 24px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--cn-muted);
  border-bottom: 1px solid var(--cn-border);
  transition: color .15s;
}
.cn-mobile-nav a:hover { color: var(--cn-white); }
.cn-mobile-nav .cn-live-badge { margin: 16px 24px 4px; display: inline-flex; }

/* ════════════════════════════════════════════════════════════
   BREAKING TICKER
════════════════════════════════════════════════════════════ */
.cn-ticker {
  background: var(--cn-red);
  overflow: hidden;
  height: 34px;
  display: flex;
  align-items: center;
}
.cn-ticker-label {
  background: #900d20;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}
.cn-ticker-track {
  display: flex;
  animation: cn-scroll 30s linear infinite;
  white-space: nowrap;
}
.cn-ticker-track a {
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255,255,255,.92);
  padding: 0 40px 0 0;
  transition: color .15s;
}
.cn-ticker-track a:hover { color: #fff; }
@keyframes cn-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════════════════
   SECTION LABELS
════════════════════════════════════════════════════════════ */
.cn-section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.cn-section-label-text {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cn-muted);
}
.cn-section-label-line {
  flex: 1;
  height: 1px;
  background: var(--cn-border);
}
.cn-section-label--red .cn-section-label-text { color: var(--cn-red); }

/* ════════════════════════════════════════════════════════════
   NEWS CARDS  (matching inspiration: full-bleed photo,
   gradient overlay, white text, pill CTAs)
════════════════════════════════════════════════════════════ */

/* Category pill (on cards) */
.cn-cat-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--cn-radius-pill);
  color: rgba(255,255,255,.9);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 12px;
  text-decoration: none;
  transition: background .15s;
}
.cn-cat-pill:hover { background: rgba(200,16,46,.7); border-color: transparent; }
.cn-cat-pill--red { background: var(--cn-red); border-color: transparent; color: #fff; }
.cn-cat-pill--live {
  background: var(--cn-red);
  border-color: transparent;
  gap: 6px;
}
.cn-cat-pill--live::before {
  content: '';
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: cn-pulse 1.4s ease-in-out infinite;
}

/* Date/time pill */
.cn-time-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--cn-radius-pill);
  color: rgba(255,255,255,.7);
  font-size: .68rem;
  font-weight: 500;
  padding: 4px 12px;
}

/* ── HERO CARD (full viewport-width feature) ── */
.cn-hero-card {
  position: relative;
  width: 100%;
  min-height: 48vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.cn-hero-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 8s ease;
}
.cn-hero-card:hover .cn-hero-card-img { transform: scale(1.03); }
.cn-hero-card-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0)    0%,
    rgba(0,0,0,.1)   30%,
    rgba(0,0,0,.65)  65%,
    rgba(0,0,0,.92)  100%
  );
  z-index: 1;
}
.cn-hero-card-body {
  position: relative;
  z-index: 2;
  padding: 0 48px 52px;
  max-width: 820px;
}
.cn-hero-card-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.cn-hero-card-title {
  font-family: var(--cn-font-disp);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--cn-white);
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.cn-hero-card-title a { color: inherit; }
.cn-hero-card-title a:hover { text-decoration: underline; text-underline-offset: 4px; }
.cn-hero-card-excerpt {
  font-size: 1rem;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 580px;
}
.cn-hero-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cn-white);
  color: var(--cn-dark);
  font-size: .85rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--cn-radius-pill);
  transition: background .15s, transform .15s;
}
.cn-hero-card-cta:hover { background: #e8e8e8; transform: translateY(-1px); }
.cn-hero-card-cta svg { width: 16px; height: 16px; }

/* ── STANDARD NEWS CARD — full-bleed overlay style ── */
.cn-card {
  position: relative;
  border-radius: var(--cn-radius);
  overflow: hidden;
  background: var(--cn-card);
  aspect-ratio: 4 / 3;
  transition: transform .2s, box-shadow .2s;
}
.cn-card:hover { transform: translateY(-3px); box-shadow: var(--cn-shadow); }

.cn-card-link {
  display: block;
  position: absolute;
  inset: 0;
  text-decoration: none;
  color: inherit;
}

.cn-card-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.cn-card:hover .cn-card-img { transform: scale(1.04); }
.cn-card-img--empty { background: var(--cn-card2); }

.cn-card-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.1)  0%,
    rgba(0,0,0,0)   30%,
    rgba(0,0,0,.88) 100%
  );
  z-index: 1;
}

.cn-card-pills {
  position: absolute;
  top: 14px; left: 14px; right: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.cn-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 16px 18px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cn-card-eyebrow {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

.cn-card-title {
  font-family: var(--cn-font-disp);
  font-size: .98rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--cn-white);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cn-card-meta {
  font-size: .68rem;
  color: rgba(255,255,255,.45);
  margin-top: 2px;
}

/* ── VIDEO CARD ── */
.cn-vid-card {
  position: relative;
  border-radius: var(--cn-radius);
  overflow: hidden;
  background: var(--cn-card);
  aspect-ratio: 16/9;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform .2s, box-shadow .2s;
}
.cn-vid-card:hover { transform: translateY(-3px); box-shadow: var(--cn-shadow); }
.cn-vid-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.cn-vid-card:hover img { transform: scale(1.04); }
.cn-vid-card-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 35%, rgba(0,0,0,.85) 100%);
}
.cn-vid-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 18px 18px;
  z-index: 2;
}
.cn-vid-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  background: rgba(0,0,0,.55);
  border: 2px solid rgba(255,255,255,.8);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: transform .2s, background .2s;
  z-index: 2;
}
.cn-vid-card:hover .cn-vid-play { transform: translate(-50%, -50%) scale(1.1); background: rgba(200,16,46,.75); }
.cn-vid-play svg { width: 18px; height: 18px; fill: white; margin-left: 3px; }
.cn-vid-card-title {
  font-family: var(--cn-font-disp);
  font-size: .95rem;
  font-weight: 700;
  color: var(--cn-white);
  line-height: 1.25;
  margin-top: 6px;
}
.cn-vid-card-duration {
  font-size: .7rem;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}

/* ════════════════════════════════════════════════════════════
   HOMEPAGE — HERO ROW
════════════════════════════════════════════════════════════ */
.cn-homepage-hero {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3px;
  background: var(--cn-dark);
}
.cn-hero-sidebar {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cn-hero-sidebar .cn-card {
  border-radius: 0;
  flex: 1;
  aspect-ratio: unset;
  min-height: 160px;
}

/* ════════════════════════════════════════════════════════════
   LIVE / WATCH SECTION
════════════════════════════════════════════════════════════ */
.cn-watch-band {
  background: #06080e;
  padding: 48px 0;
  border-top: 1px solid var(--cn-border);
  border-bottom: 1px solid var(--cn-border);
}
.cn-watch-inner {
  max-width: var(--cn-site-w);
  margin-inline: auto;
  padding-inline: 24px;
}
.cn-watch-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.cn-watch-hdr-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.cn-watch-title {
  font-family: var(--cn-font-disp);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cn-white);
}
.cn-watch-all {
  font-size: .78rem;
  font-weight: 600;
  color: var(--cn-muted);
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius-pill);
  padding: 6px 16px;
  transition: color .15s, border-color .15s;
}
.cn-watch-all:hover { color: var(--cn-white); border-color: var(--cn-border2); }

.cn-watch-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 16px;
  align-items: start;
}

/* Featured live player embed */
.cn-live-embed {
  border-radius: var(--cn-radius);
  overflow: hidden;
  background: #000;
  aspect-ratio: 16/9;
  position: relative;
}
.cn-live-embed iframe {
  width: 100%; height: 100%;
  border: none;
  display: block;
}
.cn-live-embed-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--cn-card);
  color: var(--cn-muted);
  font-size: .9rem;
}
.cn-live-embed-placeholder .cn-live-badge { font-size: .75rem; }

/* ════════════════════════════════════════════════════════════
   NEWS GRID SECTION
════════════════════════════════════════════════════════════ */
.cn-news-band { padding: 56px 0; }
.cn-news-inner {
  max-width: var(--cn-site-w);
  margin-inline: auto;
  padding-inline: 24px;
}
.cn-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cn-news-grid--4 { grid-template-columns: repeat(4, 1fr); }
.cn-news-grid--2 { grid-template-columns: repeat(2, 1fr); }

/* ════════════════════════════════════════════════════════════
   LIST STORIES (horizontal compact)
════════════════════════════════════════════════════════════ */
.cn-list-band {
  padding: 48px 0;
  border-top: 1px solid var(--cn-border);
}
.cn-list-inner {
  max-width: var(--cn-site-w);
  margin-inline: auto;
  padding-inline: 24px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.cn-list-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--cn-border);
  text-decoration: none;
  color: inherit;
  transition: opacity .15s;
}
.cn-list-item:hover { opacity: .8; }
.cn-list-item:last-child { border-bottom: none; }
.cn-list-num {
  font-size: 1.6rem;
  font-weight: 900;
  font-family: var(--cn-font-disp);
  color: var(--cn-border2);
  line-height: 1;
  min-width: 32px;
  text-align: center;
  padding-top: 2px;
}
.cn-list-body { flex: 1; }
.cn-list-eyebrow {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cn-red);
  margin-bottom: 6px;
}
.cn-list-title {
  font-family: var(--cn-font-disp);
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--cn-white);
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cn-list-meta {
  font-size: .72rem;
  color: var(--cn-muted2);
}
.cn-list-thumb {
  width: 90px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.cn-list-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Sidebar widget */
.cn-sidebar-widget {
  background: var(--cn-card);
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius);
  padding: 20px;
  margin-bottom: 20px;
}
.cn-widget-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cn-muted);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--cn-border);
}

/* ════════════════════════════════════════════════════════════
   SINGLE ARTICLE
════════════════════════════════════════════════════════════ */
.cn-article-hdr {
  background: var(--cn-navy);
  width: 100%;
  padding: 64px 24px 0;
}
.cn-article-hdr-inner {
  max-width: 800px;
  margin-inline: auto;
}
.cn-article-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cn-red);
  margin-bottom: 18px;
}
.cn-article-title {
  font-family: var(--cn-font-disp);
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cn-white);
  margin-bottom: 18px;
  letter-spacing: -.01em;
}
.cn-article-deck {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
  margin-bottom: 24px;
}
.cn-article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid var(--cn-border);
}
.cn-article-author-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cn-article-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cn-card2);
}
.cn-article-author {
  font-size: .82rem;
  font-weight: 600;
  color: var(--cn-white);
}
.cn-article-date {
  font-size: .78rem;
  color: var(--cn-muted2);
}
.cn-article-share {
  margin-left: auto;
  display: flex;
  gap: 8px;
  align-items: center;
}
.cn-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cn-glass);
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius-pill);
  color: var(--cn-muted);
  font-size: .75rem;
  font-weight: 500;
  padding: 6px 14px;
  transition: color .15s, border-color .15s;
  text-decoration: none;
}
.cn-share-btn:hover { color: var(--cn-white); border-color: var(--cn-border2); }
.cn-share-btn svg { width: 14px; height: 14px; fill: currentColor; }

/* Featured image */
.cn-article-featured {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 0;
  display: block;
}
.cn-article-featured img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 0;
}
.cn-article-featured-cap {
  max-width: 800px;
  margin: 10px auto 0;
  padding-inline: 24px;
  font-size: .75rem;
  color: var(--cn-muted2);
  font-style: italic;
}

/* Article content zone */
.cn-article-zone {
  background: var(--cn-dark);
  padding: 48px 24px 80px;
}
.cn-article-body {
  max-width: 720px;
  margin-inline: auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,.88);
}
.cn-article-body h2 {
  font-family: var(--cn-font-disp);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cn-white);
  margin: 40px 0 16px;
  line-height: 1.2;
}
.cn-article-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cn-white);
  margin: 30px 0 12px;
}
.cn-article-body p { margin-bottom: 24px; }
.cn-article-body a { color: #5b9cf6; text-decoration: underline; text-underline-offset: 3px; }
.cn-article-body blockquote {
  border-left: 3px solid var(--cn-red);
  padding: 12px 20px;
  margin: 28px 0;
  background: var(--cn-card);
  border-radius: 0 var(--cn-radius-sm) var(--cn-radius-sm) 0;
  color: rgba(255,255,255,.8);
  font-style: italic;
}
.cn-article-body img {
  border-radius: var(--cn-radius-sm);
  margin: 24px 0;
}
.cn-article-body ul, .cn-article-body ol {
  margin-bottom: 24px;
  padding-left: 24px;
}
.cn-article-body ul { list-style: disc; }
.cn-article-body ol { list-style: decimal; }
.cn-article-body li { margin-bottom: 8px; }

/* Related articles */
.cn-related {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--cn-border);
}
.cn-related-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cn-muted);
  margin-bottom: 24px;
}
.cn-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ════════════════════════════════════════════════════════════
   ARCHIVE / CATEGORY PAGE
════════════════════════════════════════════════════════════ */
.cn-arch-hdr {
  background: var(--cn-navy);
  padding: 48px 24px 40px;
  border-bottom: 1px solid var(--cn-border);
}
.cn-arch-hdr-inner {
  max-width: var(--cn-site-w);
  margin-inline: auto;
}
.cn-arch-eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cn-red);
  margin-bottom: 10px;
}
.cn-arch-title {
  font-family: var(--cn-font-disp);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--cn-white);
  line-height: 1.1;
}
.cn-arch-desc {
  font-size: .9rem;
  color: var(--cn-muted);
  margin-top: 10px;
  max-width: 560px;
}
.cn-arch-body {
  max-width: var(--cn-site-w);
  margin-inline: auto;
  padding: 48px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.cn-arch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ════════════════════════════════════════════════════════════
   PAGINATION
════════════════════════════════════════════════════════════ */
.cn-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 40px 0 0;
}
.cn-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  background: var(--cn-glass);
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius-sm);
  color: var(--cn-muted);
  font-size: .82rem;
  font-weight: 600;
  transition: color .15s, border-color .15s, background .15s;
}
.cn-pagination .page-numbers:hover { color: var(--cn-white); border-color: var(--cn-border2); }
.cn-pagination .page-numbers.current { background: var(--cn-red); border-color: var(--cn-red); color: #fff; }
.cn-pagination .page-numbers li { display: contents; }

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.cn-footer {
  background: #06080e;
  border-top: 1px solid var(--cn-border);
  padding: 56px 0 0;
}
.cn-footer-inner {
  max-width: var(--cn-site-w);
  margin-inline: auto;
  padding-inline: 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.cn-footer-brand { }
.cn-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  text-decoration: none;
}
.cn-footer-logo img { height: 34px; }
.cn-footer-logo-text {
  font-family: var(--cn-font-disp);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cn-white);
  line-height: 1;
}
.cn-footer-logo-text span { color: var(--cn-red); }
.cn-footer-desc {
  font-size: .82rem;
  color: var(--cn-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}
.cn-footer-social {
  display: flex;
  gap: 10px;
}
.cn-footer-social a {
  width: 34px; height: 34px;
  background: var(--cn-glass);
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--cn-muted);
  font-size: .78rem;
  font-weight: 700;
  transition: color .15s, border-color .15s;
}
.cn-footer-social a:hover { color: var(--cn-white); border-color: var(--cn-border2); }
.cn-footer-col-title {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cn-muted2);
  margin-bottom: 16px;
}
.cn-footer-col-links { }
.cn-footer-col-links a {
  display: block;
  font-size: .82rem;
  color: var(--cn-muted);
  padding: 5px 0;
  transition: color .15s;
  text-decoration: none;
}
.cn-footer-col-links a:hover { color: var(--cn-white); }
.cn-footer-bar {
  border-top: 1px solid var(--cn-border);
  padding: 18px 24px;
  max-width: var(--cn-site-w);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cn-footer-copy {
  font-size: .75rem;
  color: var(--cn-muted2);
}
.cn-footer-bar-links {
  display: flex;
  gap: 20px;
}
.cn-footer-bar-links a {
  font-size: .75rem;
  color: var(--cn-muted2);
  transition: color .15s;
}
.cn-footer-bar-links a:hover { color: var(--cn-white); }
.cn-footer-bottom-bar {
  background: #030407;
  border-top: 1px solid var(--cn-border);
}

/* ════════════════════════════════════════════════════════════
   404 & SEARCH
════════════════════════════════════════════════════════════ */
.cn-404-zone {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 80px 24px;
}
.cn-404-num {
  font-family: var(--cn-font-disp);
  font-size: 7rem;
  font-weight: 900;
  color: var(--cn-border2);
  line-height: 1;
  margin-bottom: 16px;
}
.cn-404-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.cn-404-desc { color: var(--cn-muted); margin-bottom: 28px; max-width: 400px; }
.cn-btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cn-red);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--cn-radius-pill);
  transition: background .15s;
}
.cn-btn-red:hover { background: var(--cn-red-dark); }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .cn-watch-grid { grid-template-columns: 1.4fr 1fr; }
  .cn-watch-grid .cn-vid-card:last-child { display: none; }
  .cn-news-grid { grid-template-columns: repeat(2, 1fr); }
  .cn-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .cn-homepage-hero { grid-template-columns: 1fr; }
  .cn-hero-sidebar { flex-direction: row; }
  .cn-hero-sidebar .cn-card { flex: 1; }
  .cn-arch-body { grid-template-columns: 1fr; }
  .cn-arch-body .cn-sidebar-widget { display: none; }
  .cn-list-inner { grid-template-columns: 1fr; }
  .cn-related-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════════════════════════════════════════
   WEATHER WIDGET  (.cn-wx-*)
   Compact horizontal bar: current | hourly columns | cam
════════════════════════════════════════════════════════════ */
/* ─── Weather Band — iOS style ───────────────────────────── */
.cn-wx-band { padding: 20px 0 0; }
.cn-wx-inner {
  max-width: var(--cn-site-w);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ─── Dashboard weather boxes ─── */

.cn-wx-dash-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.cn-wx-dash-loc {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
}
.cn-wx-dash-loc svg { flex-shrink: 0; stroke: currentColor; opacity: .6; }
.cn-wx-dash-summary {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  color: rgba(255,255,255,.55);
}
.cn-wx-dash-icon-sm { display: flex; align-items: center; }
.cn-wx-dash-icon-sm svg { width: 16px; height: 16px; }
.cn-wx-dash-updated {
  margin-left: auto;
  font-size: .65rem;
  color: rgba(255,255,255,.25);
}

.cn-wx-dash-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.cn-wx-dash-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--cn-radius-sm);
  padding: 18px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cn-wx-dash-box-hdr {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  margin-bottom: 4px;
}
.cn-wx-dash-box-icon { display: flex; align-items: center; }
.cn-wx-dash-box-icon svg { width: 18px; height: 18px; display: block; }

.cn-wx-dash-val {
  font-family: var(--cn-font-disp);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--cn-white);
  line-height: 1;
  letter-spacing: -.01em;
  flex: 1;
}
.cn-wx-dash-unit {
  font-size: .75rem;
  font-weight: 400;
  color: rgba(255,255,255,.55);
  margin-left: 3px;
  vertical-align: super;
}

.cn-wx-dash-bar-wrap { margin-top: auto; }
.cn-wx-dash-bar {
  position: relative;
  height: 4px;
  border-radius: 2px;
  margin-bottom: 7px;
  overflow: visible;
}
.cn-wx-dash-bar--temp {
  background: linear-gradient(90deg, #4b9eff 0%, #10b981 45%, #f59e0b 75%, #ef4444 100%);
}
.cn-wx-dash-bar--wind {
  background: linear-gradient(90deg, #22d3ee 0%, #3b82f6 50%, #ef4444 100%);
}
.cn-wx-dash-bar--hum {
  background: linear-gradient(90deg, #60a5fa 0%, #3b82f6 50%, #1d4ed8 100%);
}
.cn-wx-dash-bar--pres {
  background: linear-gradient(90deg, #8b5cf6 0%, #6366f1 50%, #4f46e5 100%);
}

.cn-wx-dash-bar-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--cn-white);
  box-shadow: 0 0 0 2px rgba(0,0,0,.5), 0 1px 4px rgba(0,0,0,.4);
  z-index: 1;
}

.cn-wx-dash-bar-labels {
  display: flex;
  justify-content: space-between;
  font-size: .62rem;
  color: rgba(255,255,255,.3);
}

.cn-wx-dash-cam {
  text-decoration: none;
  color: inherit;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.cn-wx-dash-cam:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); }
.cn-wx-dash-cam-icon { display: flex; justify-content: center; margin-bottom: 4px; }
.cn-wx-dash-cam-label { font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.65); }
.cn-wx-dash-cam-sub   { font-size: .65rem; color: rgba(255,255,255,.3); }

/* Toggle button */
.cn-wx-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: 10px;
  padding: 9px 24px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--cn-radius-sm);
  color: rgba(255,255,255,.4);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .05em;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.cn-wx-toggle-btn:hover { background: rgba(255,255,255,.05); color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.15); }
.cn-wx-toggle-chev { width: 14px; height: 14px; transition: transform .25s; flex-shrink: 0; }
.cn-wx-toggle-btn.open .cn-wx-toggle-chev { transform: rotate(180deg); }

@media (max-width: 900px) {
  .cn-wx-dash-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .cn-wx-dash-grid { grid-template-columns: 1fr 1fr; }
}


/* Full forecast panel */
.cn-wx-forecast-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(0.4,0,0.2,1);
}
.cn-wx-forecast-panel.open { max-height: 1000px; }
.cn-wx-fp-inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  border: 1px solid var(--cn-border);
  border-top: none;
  border-radius: 0 0 var(--cn-radius) var(--cn-radius);
  background: var(--cn-card);
  overflow: hidden;
}

/* FP main column */
.cn-wx-fp-main {
  padding: 22px 24px 26px;
  border-right: 1px solid var(--cn-border);
}
.cn-wx-fp-section-hdr {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 12px;
}

/* FP hourly strip */
.cn-wx-fp-hourly-outer {
  overflow-x: auto;
  margin: 0 -24px;
  padding: 0 24px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.1) transparent;
}
.cn-wx-fp-hourly {
  display: flex;
  min-width: max-content;
  background: var(--cn-card2);
  border-radius: var(--cn-radius-sm);
  overflow: hidden;
  margin-bottom: 4px;
}
.cn-wx-fp-hour {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-right: 1px solid rgba(255,255,255,.05);
  flex-shrink: 0;
}
.cn-wx-fp-hour:last-child { border-right: none; }
.cn-wx-fp-hour--now { background: rgba(255,255,255,.07); }
.cn-wx-fp-h-time {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.cn-wx-fp-hour--now .cn-wx-fp-h-time { color: rgba(255,255,255,.9); }
.cn-wx-fp-h-icon svg { width: 20px; height: 20px; display: block; }
.cn-wx-fp-h-temp { font-size: .82rem; font-weight: 600; color: var(--cn-white); }

/* FP 7-day */
.cn-wx-fp-7day {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--cn-radius-sm);
  overflow: hidden;
}
.cn-wx-fp-day {
  display: grid;
  grid-template-columns: 52px 28px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.cn-wx-fp-day:last-child { border-bottom: none; }
.cn-wx-fp-day-name { font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.65); }
.cn-wx-fp-day-icon svg { width: 20px; height: 20px; display: block; }
.cn-wx-fp-day-cond { font-size: .72rem; color: rgba(255,255,255,.35); }
.cn-wx-fp-day-temps { display: flex; gap: 10px; justify-content: flex-end; }
.cn-wx-fp-day-hi { font-size: .84rem; font-weight: 700; color: var(--cn-white); }
.cn-wx-fp-day-lo { font-size: .8rem; color: rgba(255,255,255,.32); }

/* FP conditions sidebar */
.cn-wx-fp-conditions {
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cn-wx-fp-cond-hdr {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.cn-wx-fp-cond-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4caf7d;
  box-shadow: 0 0 6px #4caf7d;
  flex-shrink: 0;
}
.cn-wx-fp-cond-updated {
  margin-left: auto;
  font-size: .58rem;
  color: rgba(255,255,255,.25);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.cn-wx-fp-cond-item { display: flex; flex-direction: column; gap: 7px; }
.cn-wx-fp-cond-top { display: flex; align-items: center; justify-content: space-between; }
.cn-wx-fp-cond-lbl {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .7rem;
  color: rgba(255,255,255,.4);
}
.cn-wx-fp-cond-lbl svg { opacity: .55; stroke: currentColor; }
.cn-wx-fp-cond-val { font-size: .84rem; font-weight: 700; color: var(--cn-white); }
.cn-wx-fp-cond-track {
  height: 4px;
  background: rgba(255,255,255,.07);
  border-radius: 2px;
  overflow: hidden;
}
.cn-wx-fp-cond-fill { height: 100%; border-radius: 2px; transition: width .6s ease; }
.cn-wx-fp-cond-fill--blue   { background: linear-gradient(90deg, #3b82f6, #93c5fd); }
.cn-wx-fp-cond-fill--teal   { background: linear-gradient(90deg, #10b981, #6ee7b7); }
.cn-wx-fp-cond-fill--purple { background: linear-gradient(90deg, #8b5cf6, #c4b5fd); }

/* Campus cam tile */
.cn-wx-fp-cam {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--cn-radius-sm);
  padding: 11px 12px;
  background: rgba(255,255,255,.02);
  transition: background .15s;
  margin-top: auto;
}
.cn-wx-fp-cam:hover { background: rgba(255,255,255,.07); }
.cn-wx-fp-cam-bg {
  width: 42px; height: 42px;
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cn-wx-fp-cam-info { display: flex; flex-direction: column; gap: 2px; }
.cn-wx-fp-cam-title { font-size: .76rem; font-weight: 600; color: rgba(255,255,255,.7); }
.cn-wx-fp-cam-sub   { font-size: .62rem; color: rgba(255,255,255,.32); }

@media (max-width: 900px) {
  .cn-wx-fp-inner { grid-template-columns: 1fr; }
  .cn-wx-fp-main { border-right: none; border-bottom: 1px solid var(--cn-border); }
  .cn-wx-fp-conditions { flex-direction: row; flex-wrap: wrap; gap: 16px; padding: 16px 20px; }
  .cn-wx-fp-cond-hdr { flex: 1 1 100%; }
  .cn-wx-fp-cond-item { flex: 1 1 140px; }
  .cn-wx-fp-cam { flex: 1 1 100%; }
}
@media (max-width: 640px) {
  .cn-wx-ios-body { flex-direction: column; }
  .cn-wx-ios-main { width: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .cn-wx-ios-temp { font-size: 3.8rem; }
  .cn-wx-ios-icon-lg svg { width: 52px; height: 52px; }
  .cn-wx-ios-stat { padding-right: 14px; margin-right: 14px; }
}

@media (max-width: 768px) {
  .cn-nav { display: none; }
  .cn-nav-toggle { display: flex; }
  .cn-watch-grid { grid-template-columns: 1fr; }
  .cn-arch-grid { grid-template-columns: 1fr; }
  .cn-hero-card-body { padding: 0 24px 36px; }
  .cn-hero-card { min-height: 40vh; }
  .cn-hero-sidebar { display: none; }
  .cn-article-share { display: none; }
  .cn-footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .cn-util-date { display: none; }
  .cn-hdr-wx, .cn-hdr-divider, .cn-hdr-bell { display: none; }
}

@media (max-width: 560px) {
  .cn-news-grid { grid-template-columns: 1fr; }
  .cn-related-grid { grid-template-columns: 1fr; }
  .cn-footer-inner { grid-template-columns: 1fr; }
  .cn-footer-bar { flex-direction: column; text-align: center; }
  .cn-article-hdr { padding-top: 36px; }
  .cn-hero-card-body { padding: 0 16px 28px; }
}

/* ════════════════════════════════════════════════════════════
   SINGLE ARTICLE — FULL LAYOUT v2
   (TV player · byline · body+sidebar · related · join band)
════════════════════════════════════════════════════════════ */

/* Article header: category eyebrow */
.cn-article-eyebrow {
  margin-bottom: 16px;
}
.cn-article-cat-link {
  display: inline-flex;
  align-items: center;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cn-red);
  text-decoration: none;
  transition: color .15s;
}
.cn-article-cat-link:hover { color: #e53050; }

/* ── TV Player band ── */
.cn-tv-band {
  background: #07090f;
  border-top: 1px solid var(--cn-border);
  margin-top: 32px;
}
.cn-tv-inner {
  max-width: var(--cn-site-w);
  margin-inline: auto;
  padding: 24px;
}
.cn-tv-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 20px;
  align-items: start;
}
.cn-tv-player {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
  border-radius: var(--cn-radius);
  overflow: hidden;
}
.cn-tv-player iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
  display: block;
}
.cn-tv-now-playing {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 2px 0;
  min-width: 0;
}
.cn-tv-np-label {
  display: inline-flex;
  align-items: center;
  background: var(--cn-red);
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: var(--cn-radius-pill);
  flex-shrink: 0;
}
.cn-tv-np-title {
  font-size: .8rem;
  color: var(--cn-muted);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* TV playlist */
.cn-tv-list {
  max-height: 430px;
  overflow-y: auto;
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius);
  background: var(--cn-card);
}
.cn-tv-list::-webkit-scrollbar { width: 4px; }
.cn-tv-list::-webkit-scrollbar-track { background: transparent; }
.cn-tv-list::-webkit-scrollbar-thumb { background: var(--cn-border2); border-radius: 2px; }
.cn-tv-item {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--cn-border);
  cursor: pointer;
  transition: background .15s;
}
.cn-tv-item:last-child { border-bottom: none; }
.cn-tv-item:hover { background: var(--cn-card2); }
.cn-tv-item--active { background: var(--cn-card2); }
.cn-tv-item--active .cn-tv-item-title { color: var(--cn-red); }
.cn-tv-item-thumb {
  width: 106px;
  min-height: 70px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: var(--cn-card2);
}
.cn-tv-item-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cn-tv-item-thumb-empty { width: 100%; height: 100%; background: var(--cn-card2); }
.cn-tv-item-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.45);
}
.cn-tv-item-play svg { width: 18px; height: 18px; }
.cn-tv-item-info {
  padding: 10px 14px;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cn-tv-item-cat {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cn-red);
  margin-bottom: 4px;
}
.cn-tv-item-title {
  font-size: .82rem;
  font-weight: 600;
  color: var(--cn-white);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 4px;
  transition: color .15s;
}
.cn-tv-item-meta { font-size: .68rem; color: var(--cn-muted2); }

/* Article hero image (no video) */
.cn-article-hero-img {
  width: 100%;
  max-height: 540px;
  overflow: hidden;
  background: #07090f;
  margin-top: 32px;
}
.cn-article-hero-img img {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  display: block;
}
.cn-article-img-cap {
  max-width: var(--cn-site-w);
  margin: 8px auto 0;
  padding-inline: 24px;
  font-size: .75rem;
  color: var(--cn-muted2);
  font-style: italic;
}

/* ── Content card ── */
.cn-article-card-wrap {
  background: var(--cn-card);
  border-top: 1px solid var(--cn-border);
}
.cn-article-card-inner {
  max-width: var(--cn-site-w);
  margin-inline: auto;
  padding: 0 24px 80px;
}

/* ── Byline + share ── */
.cn-byline-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-bottom: 1px solid var(--cn-border);
  margin-bottom: 40px;
}
.cn-byline-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cn-byline-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cn-card2);
  flex-shrink: 0;
}
.cn-byline-name {
  font-size: .88rem;
  font-weight: 600;
  color: var(--cn-white);
}
.cn-byline-meta {
  font-size: .78rem;
  color: var(--cn-muted2);
  margin-top: 2px;
}
.cn-byline-share { display: flex; gap: 8px; flex-wrap: wrap; }
.cn-share-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cn-glass);
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius-pill);
  color: var(--cn-muted);
  font-size: .75rem;
  font-weight: 500;
  padding: 7px 14px;
  transition: color .15s, border-color .15s;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
}
.cn-share-pill:hover { color: var(--cn-white); border-color: var(--cn-border2); }

/* ── 2-column content zone ── */
.cn-article-content-zone {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 52px;
  align-items: start;
}

/* Article body */
.cn-art-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,.85);
}
.cn-art-body h2 {
  font-family: var(--cn-font-disp);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cn-white);
  margin: 40px 0 16px;
  line-height: 1.2;
}
.cn-art-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cn-white);
  margin: 30px 0 12px;
}
.cn-art-body p { margin-bottom: 24px; }
.cn-art-body a { color: #5b9cf6; text-decoration: underline; text-underline-offset: 3px; }
.cn-art-body blockquote {
  border-left: 3px solid var(--cn-red);
  padding: 12px 20px;
  margin: 28px 0;
  background: rgba(255,255,255,.04);
  border-radius: 0 var(--cn-radius-sm) var(--cn-radius-sm) 0;
  color: rgba(255,255,255,.75);
  font-style: italic;
}
.cn-art-body img { border-radius: var(--cn-radius-sm); margin: 24px 0; }
.cn-art-body figure { margin: 24px 0; }
.cn-art-body figcaption {
  font-size: .8rem;
  color: var(--cn-muted2);
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}
.cn-art-body ul, .cn-art-body ol { margin-bottom: 24px; padding-left: 24px; }
.cn-art-body ul { list-style: disc; }
.cn-art-body ol { list-style: decimal; }
.cn-art-body li { margin-bottom: 8px; }

/* Tags */
.cn-article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--cn-border);
}
.cn-tag-pill {
  display: inline-flex;
  align-items: center;
  background: var(--cn-glass);
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius-pill);
  color: var(--cn-muted);
  font-size: .72rem;
  font-weight: 600;
  padding: 5px 14px;
  text-decoration: none;
  transition: color .15s, border-color .15s;
}
.cn-tag-pill:hover { color: var(--cn-white); border-color: var(--cn-border2); }

/* ── Sidebar ── */
.cn-article-sidebar { position: sticky; top: 120px; }
.cn-sb-widget {
  background: var(--cn-card2);
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius);
  overflow: hidden;
  margin-bottom: 16px;
}
.cn-sb-widget-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px solid var(--cn-border);
}
.cn-sb-widget-label {
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cn-muted2);
}
.cn-sb-wx-loc { font-size: .68rem; color: var(--cn-muted2); }
.cn-sb-wx-loading {
  padding: 18px 16px;
  font-size: .8rem;
  color: var(--cn-muted2);
}
.cn-sb-wx-main { padding: 16px; }
.cn-sb-wx-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cn-sb-wx-icon svg { width: 40px; height: 40px; display: block; }
.cn-sb-wx-temp {
  font-family: var(--cn-font-disp);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cn-white);
  line-height: 1;
}
.cn-sb-wx-cond { font-size: .8rem; color: var(--cn-muted); margin-top: 3px; }
.cn-sb-wx-hl {
  display: flex;
  gap: 20px;
  font-size: .78rem;
  color: var(--cn-muted2);
  border-top: 1px solid var(--cn-border);
  padding-top: 10px;
}
.cn-sb-wx-hl strong { color: var(--cn-white); }

/* Traffic */
.cn-sb-traffic-routes { padding: 10px 16px 6px; }
.cn-sb-route {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid var(--cn-border);
}
.cn-sb-route:last-child { border-bottom: none; }
.cn-sb-route-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 20px;
  border-radius: 4px;
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
  flex-shrink: 0;
  color: #fff;
  padding: 0 5px;
  letter-spacing: .02em;
}
.cn-sb-route-i5   { background: #1a6caa; }
.cn-sb-route-14   { background: #2a8050; }
.cn-sb-route-126  { background: #7c4c18; }
.cn-sb-route-name { font-size: .78rem; color: var(--cn-muted); }
.cn-sb-traffic-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0 16px 14px;
  padding: 9px 14px;
  background: var(--cn-glass);
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius-sm);
  color: var(--cn-muted);
  font-size: .75rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .15s, border-color .15s;
}
.cn-sb-traffic-btn:hover { color: var(--cn-white); border-color: var(--cn-border2); }

/* More stories */
.cn-sb-more-list { padding: 4px 0; }
.cn-sb-story {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 16px;
  border-bottom: 1px solid var(--cn-border);
  text-decoration: none;
  color: inherit;
  transition: background .15s;
}
.cn-sb-story:last-child { border-bottom: none; }
.cn-sb-story:hover { background: rgba(255,255,255,.03); }
.cn-sb-story-img {
  width: 80px; height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cn-card);
}
.cn-sb-story-img img { width: 100%; height: 100%; object-fit: cover; }
.cn-sb-story-body { flex: 1; min-width: 0; }
.cn-sb-story-title {
  font-size: .82rem;
  font-weight: 600;
  color: var(--cn-white);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 4px;
}
.cn-sb-story-meta { font-size: .68rem; color: var(--cn-muted2); }

/* ── Related articles band ── */
.cn-related-band {
  background: var(--cn-dark);
  border-top: 1px solid var(--cn-border);
  padding: 56px 0;
}
.cn-related-inner {
  max-width: var(--cn-site-w);
  margin-inline: auto;
  padding-inline: 24px;
}
.cn-related-4up {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ── Join band ── */
.cn-join-band {
  background: var(--cn-red);
  padding: 72px 0;
}
.cn-join-inner {
  max-width: var(--cn-site-w);
  margin-inline: auto;
  padding-inline: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.cn-join-eyebrow {
  display: inline-flex;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--cn-radius-pill);
  padding: 4px 14px;
  margin-bottom: 18px;
}
.cn-join-headline {
  font-family: var(--cn-font-disp);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -.01em;
}
.cn-join-sub {
  font-size: .95rem;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 420px;
}
.cn-join-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.cn-join-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--cn-red);
  font-size: .88rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--cn-radius-pill);
  text-decoration: none;
  transition: background .15s, transform .15s;
}
.cn-join-btn-primary:hover { background: #ffe4e8; transform: translateY(-1px); }
.cn-join-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,.82);
  font-size: .88rem;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: var(--cn-radius-pill);
  border: 1px solid rgba(255,255,255,.28);
  text-decoration: none;
  transition: border-color .15s, color .15s;
}
.cn-join-btn-ghost:hover { border-color: rgba(255,255,255,.6); color: #fff; }
.cn-join-roles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.cn-join-role {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--cn-radius);
  padding: 20px 12px;
  text-align: center;
  transition: background .15s;
}
.cn-join-role:hover { background: rgba(255,255,255,.18); }
.cn-join-role-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
}
.cn-join-role-icon svg { width: 32px; height: 32px; }
.cn-join-role-name {
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.88);
}

/* ── Article v2 responsive ── */
@media (max-width: 1100px) {
  .cn-tv-layout { grid-template-columns: 1fr 280px; }
  .cn-article-content-zone { grid-template-columns: 1fr 260px; gap: 36px; }
  .cn-join-inner { gap: 40px; }
  .cn-related-4up { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .cn-tv-layout { grid-template-columns: 1fr; }
  .cn-tv-list { max-height: 220px; }
  .cn-article-content-zone { grid-template-columns: 1fr; }
  .cn-article-sidebar { position: static; }
  .cn-join-inner { grid-template-columns: 1fr; gap: 40px; }
  .cn-join-sub { max-width: none; }
}

@media (max-width: 640px) {
  .cn-tv-inner { padding-inline: 0; }
  .cn-tv-player { border-radius: 0; }
  .cn-byline-share { display: none; }
  .cn-join-roles { grid-template-columns: repeat(2, 1fr); }
  .cn-related-4up { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .cn-join-roles { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════════════════════════════════════════
   BREAKING NEWS SLIDER
════════════════════════════════════════════════════════════ */
.cn-breaking-section {
  padding: 32px 0 0;
}

/* Slider viewport — clips overflow, shows peek via padding-right */
.cn-slider-outer {
  max-width: var(--cn-site-w);
  margin-inline: auto;
  padding-inline: 24px;
  overflow: hidden;
  position: relative;
}

/* Sliding track */
.cn-slider-track {
  display: flex;
  gap: 16px;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

/* Individual slide card */
.cn-slide-card {
  position: relative;
  flex: 0 0 calc(78% - 8px);   /* ~78% wide, rest peeks */
  border-radius: 20px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
  aspect-ratio: 16 / 7;        /* shorter than before */
  max-height: 420px;
  background: var(--cn-card);
  box-shadow: 0 6px 28px rgba(0,0,0,.5);
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.cn-slide-card:hover { transform: scale(1.01); box-shadow: 0 10px 36px rgba(0,0,0,.6); }

/* Photo */
.cn-slide-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 6s ease;
}
.cn-slide-img--empty {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cn-card2) 0%, #1e2438 100%);
}
.cn-slide-card--active .cn-slide-img { transform: scale(1.04); }

/* Gradient overlay — stronger at bottom */
.cn-slide-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0)    0%,
    rgba(0,0,0,.08)  35%,
    rgba(0,0,0,.55)  65%,
    rgba(0,0,0,.90)  100%
  );
  z-index: 1;
}

/* Category pill — top-left */
.cn-slide-top {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
}
.cn-slide-cat {
  display: inline-flex;
  align-items: center;
  background: #2563eb;
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: var(--cn-radius-pill);
}

/* Bottom text area */
.cn-slide-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 22px 22px;
  z-index: 2;
}
.cn-slide-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.cn-slide-author {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
}
.cn-slide-sep {
  color: rgba(255,255,255,.35);
  font-size: .78rem;
}
.cn-slide-time {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
}
.cn-slide-title {
  font-family: var(--cn-font-disp);
  font-size: clamp(1.1rem, 2.8vw, 1.5rem);
  font-weight: 700;
  color: var(--cn-white);
  line-height: 1.2;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}

/* Controls row */
.cn-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 0 28px;
}
.cn-slider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--cn-border2);
  background: var(--cn-glass);
  color: rgba(255,255,255,.6);
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
  flex-shrink: 0;
  padding: 0;
}
.cn-slider-btn:hover {
  background: rgba(255,255,255,.12);
  color: var(--cn-white);
  border-color: rgba(255,255,255,.3);
}
.cn-slider-btn svg { width: 15px; height: 15px; display: block; }
.cn-slider-btn--pause { background: rgba(255,255,255,.08); }
.cn-slider-btn--pause[aria-pressed="true"] {
  background: var(--cn-red);
  border-color: var(--cn-red);
  color: #fff;
}

/* Dot pagination */
.cn-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.cn-dot {
  width: 8px; height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,.22);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width .3s ease, background .3s ease;
  flex-shrink: 0;
}
.cn-dot--active {
  width: 28px;
  background: var(--cn-white);
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 900px) {
  .cn-slide-card { flex: 0 0 calc(88% - 8px); border-radius: 16px; }
}
@media (max-width: 560px) {
  .cn-breaking-section { padding-top: 20px; }
  .cn-slider-outer { padding-inline: 16px; }
  .cn-slide-card { flex: 0 0 calc(92% - 8px); border-radius: 14px; aspect-ratio: 4/3; }
  .cn-slide-body { padding: 0 16px 18px; }
  .cn-slide-title { font-size: 1.05rem; }
  .cn-breaking-hdr { padding-inline: 16px; }
}
/* ═══════════════════════════════════════════════════════════
   RECRUITING CTA BAND (footer — appears on every page)
═══════════════════════════════════════════════════════════ */
.cn-recruit-band {
    background: var(--cn-red, #c8102e);
    padding: 72px 24px 60px;
    text-align: center;
    width: 100%;
}

.cn-recruit-inner {
    max-width: 640px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

/* Circular logo */
.cn-recruit-logo-wrap {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    border: 2px solid rgba(255,255,255,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.cn-recruit-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cn-recruit-logo-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Eyebrow */
.cn-recruit-eyebrow {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
}

.cn-recruit-eyebrow svg {
    flex-shrink: 0;
    opacity: .75;
    color: rgba(255,255,255,.9);
}

/* Headline */
.cn-recruit-headline {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.08;
    color: #fff;
    margin: 0;
    letter-spacing: -.02em;
}

/* Description */
.cn-recruit-desc {
    font-size: .96rem;
    line-height: 1.65;
    color: rgba(255,255,255,.72);
    margin: 0;
    max-width: 540px;
}

/* Buttons */
.cn-recruit-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.cn-recruit-btn {
    display: inline-block;
    padding: 13px 28px;
    border-radius: 100px;
    font-size: .88rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .15s ease, color .15s ease, border-color .15s ease;
    white-space: nowrap;
}

.cn-recruit-btn--solid {
    background: #fff;
    color: var(--cn-red, #c8102e);
}

.cn-recruit-btn--solid:hover {
    background: #f0f0f2;
}

.cn-recruit-btn--ghost {
    background: rgba(255,255,255,.1);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.3);
}

.cn-recruit-btn--ghost:hover {
    background: rgba(255,255,255,.2);
    border-color: rgba(255,255,255,.5);
}

/* Roles row */
.cn-recruit-roles {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 6px;
}

.cn-recruit-role {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.cn-recruit-role-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
}

.cn-recruit-role-icon:hover {
    background: rgba(255,255,255,.2);
}

.cn-recruit-role-icon svg {
    width: 26px;
    height: 26px;
}

.cn-recruit-role-name {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: rgba(255,255,255,.65);
    text-transform: uppercase;
}

/* Mobile */
@media (max-width: 600px) {
    .cn-recruit-band { padding: 56px 20px 48px; }
    .cn-recruit-roles { gap: 18px; }
    .cn-recruit-role-icon { width: 42px; height: 42px; border-radius: 12px; }
    .cn-recruit-role-icon svg { width: 22px; height: 22px; }
}
