:root {
  --navy: #071a3d;
  --navy-2: #0b2552;
  --navy-3: #102f65;
  --red: #d71920;
  --red-dark: #b70e14;
  --blue-link: #1f63c6;
  --ink: #111827;
  --muted: #667085;
  --line: #dfe5ee;
  --soft: #f4f6f9;
  --white: #ffffff;
  --shadow: 0 14px 38px rgba(7, 26, 61, .10);
  --radius: 14px;
  --max-width: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  padding-bottom: 0;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--blue-link); }
button, input { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }

.container { width: min(var(--max-width), calc(100% - 32px)); margin-inline: auto; }
.skip-link { position: absolute; left: -999px; top: 0; }
.skip-link:focus { left: 16px; top: 16px; z-index: 999; background: #fff; padding: 10px 14px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header { position: sticky; top: 0; z-index: 50; background: var(--navy); color: #fff; box-shadow: 0 2px 10px rgba(0,0,0,.15); }
.header-inner { min-height: 68px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; }
.brand { font-family: "Libre Franklin", Georgia, serif; font-size: clamp(1.45rem, 2vw, 2rem); font-weight: 800; letter-spacing: -0.04em; white-space: nowrap; }
.main-nav { display: flex; align-items: center; gap: 20px; font-weight: 600; font-size: .92rem; }
.main-nav a { color: rgba(255,255,255,.92); }
.main-nav a:hover { color: #fff; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-button, .login-button { border: 0; background: transparent; color: #fff; }
.icon-button { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; font-size: 1.2rem; }
.icon-button:hover { background: rgba(255,255,255,.1); }
.login-button { font-weight: 700; }
.mobile-menu-button { display: none; }
.mobile-menu-button span { width: 20px; height: 2px; background: #fff; display: block; margin: 2px 0; }

.breaking-bar { background: #fff; border-bottom: 1px solid var(--line); }
.breaking-inner { min-height: 48px; display: grid; grid-template-columns: auto auto 1fr auto; align-items: center; gap: 14px; }
.breaking-label { background: var(--red); color: #fff; font-weight: 800; font-size: .78rem; padding: 6px 9px; border-radius: 4px; }
.breaking-inner time { font-weight: 800; font-size: .9rem; }
.breaking-viewport { min-width: 0; overflow: hidden; }
.breaking-viewport p { margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 600; }
.breaking-next { border: 0; background: transparent; font-size: 1.25rem; color: var(--navy); }

.page-grid { display: grid; grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr); gap: 20px; padding-block: 22px 40px; align-items: start; }
.hero-card, .live-panel, .content-section, .newsletter-section { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.hero-card { position: relative; min-height: 420px; }
.hero-image { position: absolute; inset: 0; height: 100%; border-radius: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,12,32,.88) 0%, rgba(4,12,32,.58) 50%, rgba(4,12,32,.16) 100%); }
.hero-content { position: absolute; inset: auto 0 0 0; color: #fff; padding: clamp(24px, 4vw, 46px); max-width: 760px; }
.hero-content h1 { font-family: "Libre Franklin", sans-serif; font-size: clamp(2rem, 4.3vw, 4.15rem); line-height: 1.02; letter-spacing: -.045em; margin: 12px 0 14px; }
.hero-content p { font-size: clamp(1rem, 1.5vw, 1.18rem); max-width: 680px; color: rgba(255,255,255,.88); margin: 0 0 14px; }

.media-placeholder { position: relative; background:
  linear-gradient(135deg, rgba(7,26,61,.92), rgba(16,47,101,.75)),
  repeating-linear-gradient(45deg, rgba(255,255,255,.06) 0 12px, transparent 12px 24px);
  display: grid; place-items: center; color: rgba(255,255,255,.78); font-weight: 800; letter-spacing: .08em; font-size: .78rem; overflow: hidden; }
.media-placeholder::before { content: ""; position: absolute; inset: 10%; border: 1px solid rgba(255,255,255,.22); border-radius: 12px; }
.media-placeholder span { position: relative; z-index: 1; }
.ratio-16-10 { aspect-ratio: 16 / 10; border-radius: 10px; }
.ratio-16-9 { aspect-ratio: 16 / 9; border-radius: 10px; }
.media-placeholder.dark { background: linear-gradient(135deg, #051329, #183e78); }

.eyebrow { display: inline-flex; align-items: center; font-size: .7rem; letter-spacing: .08em; font-weight: 800; color: var(--navy-3); margin-top: 12px; }
.eyebrow-red { background: var(--red); color: #fff; padding: 5px 8px; border-radius: 3px; margin: 0; }
.eyebrow-light { color: #b9d0ff; margin-top: 0; }
.meta { color: var(--muted); font-size: .8rem; }
.hero-card .meta { color: rgba(255,255,255,.7); }

.live-panel { padding: 18px; }
.section-heading { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 14px; }
.section-heading h2 { margin: 0; font-size: 1.02rem; letter-spacing: .02em; text-transform: uppercase; color: var(--navy); }
.section-heading a { font-size: .82rem; font-weight: 700; color: var(--blue-link); }
.live-heading > div { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.live-heading h2 { text-transform: none; font-size: 1.1rem; }
.live-heading span:last-child { font-size: .82rem; color: var(--muted); }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(215,25,32,.13); }
.live-list { list-style: none; padding: 0; margin: 0; }
.live-list li { display: grid; grid-template-columns: 48px 1fr; gap: 10px; padding: 12px 0; border-top: 1px solid var(--line); }
.live-list time { font-weight: 800; font-size: .82rem; }
.live-list a { font-size: .9rem; font-weight: 600; line-height: 1.35; }
.panel-button { display: block; margin-top: 12px; background: var(--soft); border-radius: 8px; text-align: center; padding: 11px; font-weight: 800; color: var(--navy); }

.content-section { padding: 18px; }
.stories-section { grid-column: 1; }
.video-section { grid-column: 2; grid-row: span 2; }
.podcast-section { grid-column: 1; }
.story-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.story-card h3 { font-size: 1rem; line-height: 1.28; margin: 6px 0; }
.story-card p { color: var(--muted); margin: 0 0 8px; font-size: .86rem; }

.featured-video { position: relative; }
.featured-video h3 { margin: 10px 0 2px; font-size: 1.1rem; }
.play-button { position: absolute; top: 28%; left: 50%; transform: translate(-50%, -50%); width: 58px; height: 58px; border-radius: 50%; border: 2px solid #fff; background: rgba(7,26,61,.74); color: #fff; font-size: 1.1rem; }
.duration { position: absolute; right: 8px; top: 43%; background: #000; color: #fff; padding: 4px 6px; border-radius: 4px; font-size: .75rem; }
.mini-video-list { margin-top: 14px; display: grid; gap: 12px; }
.mini-video-list article { display: grid; grid-template-columns: 112px 1fr; gap: 10px; align-items: center; padding-top: 12px; border-top: 1px solid var(--line); }
.mini-thumb { aspect-ratio: 16/9; border-radius: 8px; }
.mini-video-list h3 { margin: 0 0 4px; font-size: .92rem; line-height: 1.25; }

.podcast-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.podcast-card { background: linear-gradient(145deg, var(--navy), var(--navy-3)); color: #fff; border-radius: 12px; padding: 18px; min-height: 210px; display: flex; flex-direction: column; }
.podcast-card h3 { font-size: 1.25rem; margin: 10px 0 4px; }
.podcast-card p { color: rgba(255,255,255,.72); font-size: .88rem; margin: 0; }
.audio-row { margin-top: auto; display: grid; grid-template-columns: 36px 1fr auto; align-items: center; gap: 10px; }
.audio-row button { width: 36px; height: 36px; border-radius: 50%; border: 0; background: #fff; color: var(--navy); }
.wave { height: 26px; background: repeating-linear-gradient(90deg, rgba(255,255,255,.85) 0 2px, transparent 2px 6px); mask-image: linear-gradient(180deg, transparent 0, black 20%, black 80%, transparent 100%); opacity: .7; }
.audio-row time { font-size: .75rem; color: rgba(255,255,255,.72); }

.newsletter-section { grid-column: 1 / -1; background: linear-gradient(135deg, var(--navy), var(--navy-3)); color: #fff; padding: 22px 26px; display: grid; grid-template-columns: 1fr auto; gap: 16px 24px; align-items: center; }
.newsletter-section > div { display: flex; gap: 16px; align-items: center; }
.newsletter-icon { font-size: 2rem; }
.newsletter-section h2 { margin: 0; font-size: 1.35rem; }
.newsletter-section p { margin: 2px 0 0; color: rgba(255,255,255,.74); }
.newsletter-form { display: flex; min-width: min(480px, 100%); }
.newsletter-form input { flex: 1; min-width: 0; border: 0; padding: 13px 14px; border-radius: 8px 0 0 8px; }
.newsletter-form button { border: 0; background: var(--red); color: #fff; font-weight: 800; padding: 0 20px; border-radius: 0 8px 8px 0; }
.newsletter-status { grid-column: 1 / -1; margin: 0 !important; font-size: .85rem; }

.analysis-section { grid-column: 1; }
.analysis-list { display: grid; gap: 14px; }
.analysis-list article { display: grid; grid-template-columns: 46px 1fr; gap: 12px; align-items: start; padding-top: 12px; border-top: 1px solid var(--line); }
.author-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; font-weight: 800; }
.analysis-list h3 { margin: 0; font-size: 1rem; }
.analysis-list p { margin: 3px 0; color: var(--muted); font-size: .86rem; }

.commercial-section { grid-column: 2; background: #fcfcfd; border-style: dashed; }
.commercial-card { display: grid; gap: 14px; }
.commercial-image { background: linear-gradient(135deg, #3b465d, #8a97ad); }
.sponsor-label { display: inline-flex; background: #eef1f5; color: #4b5563; font-weight: 800; font-size: .7rem; padding: 5px 7px; border-radius: 4px; }
.commercial-card h3 { margin: 9px 0 6px; font-size: 1.1rem; }
.commercial-card p { margin: 0; color: var(--muted); font-size: .88rem; }

.studio-section { grid-column: 1 / -1; }
.studio-card { position: relative; overflow: hidden; background: linear-gradient(135deg, #071a3d 0%, #102f65 62%, #8f1021 180%); color: #fff; border-radius: 12px; padding: clamp(24px, 4vw, 48px); }
.studio-card::after { content: ""; position: absolute; width: 420px; height: 420px; border: 1px solid rgba(255,255,255,.15); border-radius: 44% 56% 48% 52%; right: -120px; top: -170px; transform: rotate(25deg); }
.studio-kicker { color: #cddaff; margin: 0 0 8px; font-weight: 700; }
.studio-card h3 { max-width: 700px; font-size: clamp(1.5rem, 3vw, 2.5rem); line-height: 1.1; margin: 0 0 20px; }
.studio-button { display: inline-flex; border: 1px solid rgba(255,255,255,.55); padding: 10px 14px; border-radius: 7px; font-weight: 800; }
.studio-card ul { display: flex; flex-wrap: wrap; gap: 18px; padding: 0; margin: 28px 0 0; list-style: none; color: rgba(255,255,255,.78); font-size: .9rem; }

.site-footer { background: var(--navy); color: #fff; padding: 42px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 32px; }
.footer-brand { display: inline-block; margin-bottom: 10px; }
.site-footer p { color: rgba(255,255,255,.68); max-width: 300px; }
.site-footer h2 { font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; }
.site-footer a { display: block; color: rgba(255,255,255,.72); margin: 8px 0; font-size: .88rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 30px; padding-top: 16px; color: rgba(255,255,255,.55); font-size: .8rem; }

.mobile-bottom-nav { display: none; }

@media (max-width: 1080px) {
  .header-inner { grid-template-columns: auto 1fr auto; gap: 12px; }
  .mobile-menu-button { display: grid; }
  .main-nav { position: absolute; top: 68px; left: 0; right: 0; background: var(--navy); padding: 16px; display: none; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.12); }
  .main-nav.open { display: flex; }
  .brand { justify-self: center; }
  .login-button { display: none; }
  .story-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  body { padding-bottom: 72px; }
  .container { width: min(100% - 20px, var(--max-width)); }
  .site-header { position: sticky; }
  .header-inner { min-height: 60px; }
  .main-nav { top: 60px; }
  .breaking-inner { grid-template-columns: auto 1fr auto; gap: 9px; min-height: 50px; }
  .breaking-inner time { display: none; }
  .page-grid { grid-template-columns: 1fr; gap: 14px; padding-top: 14px; }
  .hero-card { min-height: 470px; }
  .hero-overlay { background: linear-gradient(180deg, rgba(4,12,32,.06) 15%, rgba(4,12,32,.92) 88%); }
  .hero-content h1 { font-size: clamp(2rem, 9vw, 3.2rem); }
  .live-panel, .stories-section, .video-section, .podcast-section, .analysis-section, .commercial-section, .studio-section, .newsletter-section { grid-column: 1; }
  .video-section { grid-row: auto; }
  .story-grid { grid-template-columns: 1fr 1fr; }
  .podcast-grid { grid-template-columns: 1fr; }
  .newsletter-section { grid-template-columns: 1fr; }
  .newsletter-form { min-width: 0; width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mobile-bottom-nav { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; background: #fff; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(5, 1fr); padding: 8px 4px max(8px, env(safe-area-inset-bottom)); box-shadow: 0 -8px 24px rgba(7,26,61,.08); }
  .mobile-bottom-nav a { display: grid; justify-items: center; gap: 2px; font-size: 1rem; color: #687386; }
  .mobile-bottom-nav span { font-size: .65rem; font-weight: 700; }
  .mobile-bottom-nav a.active { color: var(--navy); }
}

@media (max-width: 560px) {
  .brand { font-size: 1.45rem; }
  .header-actions .icon-button { width: 34px; height: 34px; }
  .hero-card { min-height: 430px; }
  .hero-content { padding: 22px; }
  .hero-content p { font-size: .95rem; }
  .story-grid { grid-template-columns: 1fr; }
  .story-card { display: grid; grid-template-columns: 118px 1fr; gap: 10px; padding-top: 12px; border-top: 1px solid var(--line); }
  .story-card .media-placeholder { grid-row: 1 / span 4; }
  .story-card .eyebrow { margin-top: 0; }
  .story-card h3 { margin: 2px 0; }
  .story-card p { display: none; }
  .newsletter-form { display: grid; grid-template-columns: 1fr; gap: 8px; }
  .newsletter-form input, .newsletter-form button { border-radius: 8px; min-height: 46px; }
  .footer-grid { grid-template-columns: 1fr; }
  .studio-card ul { gap: 12px; }
}
