@import url('material-ui.css');

:root {
  --primary: #d60000;
  --primary-hover: #b80000;
  --dark: #111111;
  --navy: #0b1220;
  --bg: #f6f7fb;
  --card: #ffffff;
  --border: #e5e7eb;
  --text: #374151;
  --text-dark: #111111;
  --text-muted: #6b7280;
  --success: #16a34a;
  --warning: #f59e0b;
  --error: #dc2626;
  --info: #2563eb;
  --content-max: 1280px;
  --radius: 12px;
  --radius-hero: 20px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--primary); }
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: -0.02em;
}
p { margin: 0; }

.container {
  width: min(var(--content-max), calc(100% - 48px));
  margin-inline: auto;
}
.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;
}
.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--space-3);
}
.col-8 { grid-column: span 8; }
.col-4 { grid-column: span 4; }
.stack-24,
.stack-32 {
  display: grid;
  align-content: start;
}
.stack-24 { gap: var(--space-3); }
.stack-32 { gap: var(--space-4); }
.card-grid {
  display: grid;
  gap: var(--space-3);
}
.card-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.list-clean {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-2);
}
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
}
.meta {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
}
.meta-strong { font-size: 14px; }
.meta-category {
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .05em;
}
.divider-dot { color: rgba(255,255,255,.6); }
.divider-dot-soft { color: rgba(255,255,255,.4); }

.top-strip {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.top-strip-inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding-block: 8px;
}
.top-strip-meta,
.top-strip-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.top-strip-live {
  color: #86efac;
  font-weight: 700;
}
.datetime-select,
.lang-selector {
  min-width: 130px;
  padding: 0 12px;
  background: #fff;
}

.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-shell {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: var(--space-3);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  flex-shrink: 0;
}
.brand-copy {
  display: grid;
  gap: 2px;
}
.brand-title {
  color: var(--navy);
  font-size: 22px;
  line-height: 1.1;
}
.brand-tagline {
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 700;
  font-size: 11px;
  color: var(--text-muted);
}
.top-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}
.top-nav a {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
}
.top-nav a.active { color: var(--primary); }
.live-btn {
  margin-left: 4px;
  background: var(--primary);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.live-btn:hover { background: var(--primary-hover); }
.search-inline {
  width: min(100%, 280px);
}
.search-inline input {
  width: 100%;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 16px;
  background: #fff;
}
.search-inline input:focus,
.newsletter-form input:focus,
.auth-field input:focus,
.auth-field select:focus,
.auth-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(214,0,0,.08);
}
.header-utils {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.header-link {
  font-weight: 700;
  color: var(--text);
}
.header-admin-btn {
  min-height: 40px;
  padding-inline: 18px;
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
}
.header-admin-btn:hover { color: #fff; }
.mobile-menu-btn {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--navy);
  border-radius: 10px;
  min-height: 42px;
  padding: 0 14px;
  font-weight: 700;
}

.breaking-strip {
  background: linear-gradient(90deg, #d60000 0%, #bf0000 100%);
  color: #fff;
}
.breaking-inner {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: hidden;
}
.badge-breaking {
  flex-shrink: 0;
  background: #fff;
  color: var(--primary);
}
.breaking-item {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

.home-main {
  padding: 28px 0 48px;
}
.main-home {
  align-items: start;
}
.main-column,
.sidebar-column {
  min-width: 0;
}
.content-block {
  display: grid;
  gap: var(--space-3);
}
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}
.section-head h2 {
  font-size: 28px;
  color: var(--navy);
  border-left: 4px solid var(--primary);
  padding-left: 16px;
}
.section-head-compact { margin-bottom: 20px; }
.section-head-compact h2 {
  font-size: 20px;
  border-left: 0;
  padding-left: 0;
}

.hero-card,
.news-card,
.panel,
.live-promo {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.hero-card-elevated {
  overflow: hidden;
  border-radius: var(--radius-hero);
  box-shadow: 0 20px 40px -12px rgba(11, 18, 32, .12);
}
.hero-media {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}
.hero-content {
  padding: clamp(24px, 3vw, 40px);
  display: grid;
  gap: 16px;
}
.badge-category {
  justify-self: start;
  background: var(--bg);
  color: var(--primary);
}
.hero-title {
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.1;
}
.hero-summary {
  font-size: 18px;
  color: var(--text);
  max-width: 68ch;
}
.hero-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.hero-cta {
  min-height: 48px;
  padding: 0 28px;
}

.news-card,
.panel {
  padding: 24px;
  height: 100%;
}
.news-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.news-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
}
.news-card-feature { min-height: 250px; }
.feature-card-title { font-size: 24px; line-height: 1.25; }
.feature-card-summary { color: var(--text); }
.news-card-footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.latest-card { padding: 16px; }
.card-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
}
.latest-card-title {
  font-size: 18px;
  margin: 0;
  line-height: 1.35;
}
.gallery-card h3 { font-size: 18px; line-height: 1.35; }
.category-panel-title {
  display: inline-block;
  padding-bottom: 4px;
  margin-bottom: 4px;
  border-bottom: 2px solid var(--primary);
  font-size: 20px;
}
.category-list { gap: 14px; }
.category-link {
  color: var(--text-dark);
  font-weight: 700;
  display: inline-block;
}
.category-meta { margin-top: 4px; font-size: 12px; }
.category-action,
.sidebar-action-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--primary);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.empty-panel {
  display: grid;
  gap: 8px;
  place-content: center;
  min-height: 220px;
}

.panel-trending {
  border-top: 4px solid var(--primary);
}
.trend-list { gap: 18px; }
.trend-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: start;
}
.trend-rank {
  font-size: 24px;
  font-weight: 900;
  color: #cbd5e1;
  line-height: 1;
}
.trend-link,
.video-link {
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.4;
  display: block;
}
.trend-meta { margin-top: 4px; }
.panel-dark {
  background: var(--navy);
  border-color: transparent;
}
.panel-dark h2,
.panel-dark .list-dark-link,
.panel-dark a { color: #fff; }
.list-dark li {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.list-dark li:last-child { border-bottom: 0; padding-bottom: 0; }
.list-dark-link { font-weight: 700; }
.video-list { gap: 14px; }
.video-list-item {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 12px;
  align-items: center;
}
.video-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary);
}
.sponsored-panel img {
  width: 100%;
  border-radius: 10px;
}
.newsletter-panel {
  background: var(--bg);
  border: 2px dashed var(--border);
}
.newsletter-copy {
  margin-bottom: 20px;
  line-height: 1.5;
}
.newsletter-form {
  display: grid;
  gap: 12px;
}
.newsletter-form input {
  min-height: 46px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0 14px;
  background: #fff;
}
.newsletter-form button,
.btn-primary,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  font-weight: 800;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-hover);
  color: #fff;
}
.live-promo {
  padding: 32px;
  background: linear-gradient(135deg, rgba(11,18,32,.98), rgba(25,33,52,.94));
  color: rgba(255,255,255,.84);
  display: grid;
  gap: 14px;
}
.live-promo h2,
.live-promo a { color: #fff; }
.live-promo .btn { justify-self: start; }

.site-footer {
  background: var(--navy);
  padding: 64px 0 32px;
  border-top: 8px solid var(--primary);
  color: rgba(255,255,255,.78);
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.footer-row-top {
  align-items: flex-start;
  margin-bottom: 48px;
}
.footer-brand-block { max-width: 420px; }
.footer-brand-title {
  display: block;
  font-size: 24px;
  color: #fff;
  margin-bottom: 12px;
}
.footer-brand-copy {
  color: rgba(255,255,255,.62);
  font-size: 14px;
  line-height: 1.7;
}
.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
}
.footer-links-grid a,
.footer-meta-links a {
  font-weight: 700;
  color: rgba(255,255,255,.88);
}
.footer-row-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 32px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-copyright {
  color: rgba(255,255,255,.4);
  font-size: 12px;
}

.article-body {
  font-size: 18px;
  line-height: 1.8;
  color: #374151;
}
.article-body blockquote {
  border-left: 4px solid var(--primary);
  background: var(--bg);
  padding: 24px;
  margin: 32px 0;
  font-style: italic;
  color: var(--text-dark);
}
.tag-chip {
  background: var(--bg);
  color: var(--text);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
}
.tag-chip:hover {
  background: var(--primary);
  color: #fff;
}

.auth-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.auth-brand {
  background: linear-gradient(160deg, #0b1220, #111827);
  color: #fff;
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.auth-panel {
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--bg);
}
.auth-card {
  width: min(460px, 100%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
}
.auth-field { margin-bottom: 14px; display: grid; gap: 6px; }
.auth-field input,
.auth-field select,
.auth-field textarea {
  height: 50px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 14px;
}
.error-msg {
  border: 1px solid #fca5a5;
  color: #991b1b;
  background: #fef2f2;
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 12px;
}
.success-msg {
  border: 1px solid #86efac;
  color: #166534;
  background: #f0fdf4;
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 12px;
}

html[dir="rtl"] .top-strip-inner,
html[dir="rtl"] .nav-shell,
html[dir="rtl"] .header-utils {
  direction: rtl;
}
html[dir="rtl"] .section-head h2 {
  border-left: 0;
  border-right: 4px solid var(--primary);
  padding-left: 0;
  padding-right: 16px;
}

@media (max-width: 1180px) {
  .container { width: min(var(--content-max), calc(100% - 64px)); }
  .nav-shell {
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "brand search controls"
      "nav nav nav";
    row-gap: 16px;
    padding: 16px 0;
  }
  .brand { grid-area: brand; }
  .search-inline { grid-area: search; width: 100%; }
  .header-utils { grid-area: controls; }
  .top-nav { grid-area: nav; flex-wrap: wrap; }
  .col-md-12 { grid-column: span 12; }
  .card-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .auth-shell { grid-template-columns: 1fr; }
  .auth-brand { padding: 32px 20px; }
  .top-strip-inner { align-items: flex-start; }
  .hero-footer,
  .footer-row,
  .footer-row-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .container { width: min(100%, calc(100% - 32px)); }
  .grid-12,
  .card-grid-2,
  .card-grid-3 {
    grid-template-columns: 1fr;
  }
  .col-8,
  .col-4,
  .col-md-12 { grid-column: span 1; }
  .top-strip-inner,
  .top-strip-meta,
  .top-strip-controls {
    gap: 8px;
  }
  .nav-shell {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding: 12px 0;
  }
  .mobile-menu-btn {
    display: inline-flex;
    margin-left: auto;
  }
  .top-nav {
    width: 100%;
    order: 4;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px;
  }
  .top-nav.is-open { display: flex; }
  .top-nav a { width: 100%; }
  .search-inline,
  .header-utils {
    width: 100%;
  }
  .header-utils {
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .lang-form { flex: 1 1 160px; }
  .lang-selector { width: 100%; }
  .hero-media { aspect-ratio: 16 / 10; }
  .hero-summary { font-size: 16px; }
  .news-card,
  .panel,
  .live-promo { padding: 20px; }
  .footer-links-grid { grid-template-columns: 1fr 1fr; gap: 12px 20px; }
}


.topic-rail-wrap {
  border-top: 1px solid var(--border);
  background: #fff;
}
.topic-rail {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 0;
  scrollbar-width: none;
}
.topic-rail::-webkit-scrollbar { display: none; }
.topic-link {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
}
.topic-link:hover {
  background: rgba(214,0,0,.08);
  color: var(--primary);
}
.home-intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.8fr);
  gap: var(--space-3);
  margin-bottom: 32px;
}
.intro-card,
.must-read-card,
.editor-card,
.quick-link-card {
  border-radius: var(--radius);
}
.intro-card {
  border: 1px solid var(--border);
  background: #fff;
  padding: 20px 24px;
}
.intro-card-primary {
  display: grid;
  gap: 8px;
  background: linear-gradient(135deg, rgba(11,18,32,.98), rgba(26,35,58,.94));
  color: #fff;
}
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,.7);
}
.intro-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.intro-card-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  min-height: 100%;
}
.must-read-grid,
.editor-grid,
.quick-links-grid {
  display: grid;
  gap: var(--space-3);
}
.must-read-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.must-read-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 18px;
  display: grid;
  gap: 10px;
}
.must-read-card h3,
.editor-card h3 {
  font-size: 18px;
  line-height: 1.35;
}
.editor-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.editor-card {
  background: linear-gradient(180deg, #fff 0%, #f9fafc 100%);
  border: 1px solid var(--border);
  padding: 24px;
  display: grid;
  gap: 12px;
}
.editor-badge {
  display: inline-flex;
  justify-self: start;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(214,0,0,.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
}
.quick-panel {
  background: #fff;
}
.quick-links-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.quick-link-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--navy);
  font-weight: 700;
  text-align: center;
  padding: 12px;
}
.quick-link-card:hover {
  border-color: rgba(214,0,0,.25);
  background: #fff5f5;
}
.trust-panel {
  background: #fff;
}
.trust-list li {
  position: relative;
  padding-left: 20px;
  color: var(--text);
}
.trust-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 900;
}
.site-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.footer-links-block {
  display: grid;
  gap: 16px;
}
.footer-links-block h3 {
  color: #fff;
  font-size: 16px;
}
.footer-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.footer-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 1200px) {
  .nav-shell {
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "brand search utils"
      "nav nav nav";
    padding: 14px 0;
  }
  .brand { grid-area: brand; }
  .top-nav { grid-area: nav; overflow-x: auto; padding-bottom: 4px; }
  .search-inline { grid-area: search; width: 100%; }
  .header-utils { grid-area: utils; }
  .home-intro-band,
  .must-read-grid,
  .site-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .intro-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .card-grid-3,
  .card-grid-2,
  .editor-grid,
  .must-read-grid,
  .quick-links-grid,
  .site-footer-grid,
  .home-intro-band,
  .intro-card-grid {
    grid-template-columns: 1fr;
  }
  .hero-footer,
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

.hs-app { min-height: 100vh; }
.rtl { direction: rtl; }
.input-control {
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-dark);
}
.shell-page { padding: 32px 0 56px; }
.shell-narrow { max-width: 860px; }
.shell-card { margin-inline: auto; }
.page-hero-simple { min-height: 0; }
.prose-panel,
.article-body { display: grid; gap: 16px; }
.prose-panel p,
.article-body p,
.article-body li { color: var(--text); }
.textarea-control {
  min-height: 140px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  width: 100%;
  resize: vertical;
  font: inherit;
}
.notice-panel { border-left: 4px solid var(--info); }
.notice-warning { border-left-color: var(--warning); }
.notice-error { border-left-color: var(--error); }
.badge-breaking { background: rgba(214,0,0,.12); color: var(--primary); }
.badge-info { background: rgba(37,99,235,.12); color: var(--info); }
.footer-copy { color: rgba(255,255,255,.78); }
.footer-pill-light { background: rgba(11,18,32,.08); color: var(--navy); }
.article-shell { align-items: start; padding-top: 12px; }
.article-main .panel { overflow-wrap: anywhere; }
.feature-mini-grid .news-card { min-height: 100%; }
.panel h1, .panel h2, .panel h3 { margin-bottom: 8px; }
.top-strip-controls .input-control { min-width: 150px; }

@media (max-width: 900px) {
  .col-md-12 { grid-column: 1 / -1; }
  .top-strip-inner,
  .top-strip-controls,
  .nav-shell,
  .header-utils { align-items: stretch; }
  .search-inline { width: 100%; }
  .shell-page { padding-top: 24px; }
}

@media (max-width: 760px) {
  .top-strip-controls { width: 100%; }
  .top-strip-controls .input-control { width: 100%; min-width: 0; }
  .mobile-menu-btn { display: inline-flex; align-items: center; justify-content: center; }
  .top-nav { display: none; }
  .top-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-column: 1 / -1;
    width: 100%;
    padding: 12px 0 4px;
  }
  .header-utils { grid-column: 1 / -1; justify-content: flex-start; flex-wrap: wrap; }
}


.btn-secondary {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background: var(--bg);
  color: var(--navy);
}
.article-share-toolbar {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.28);
  display: grid;
  gap: 14px;
}
.article-share-copy {
  display: grid;
  gap: 4px;
}
.article-share-copy strong {
  color: var(--text-dark);
  font-size: 15px;
}
.article-share-copy span,
.article-share-feedback {
  color: var(--text-muted);
  font-size: 14px;
}
.article-share-feedback {
  min-height: 20px;
  margin: 0;
}
.article-share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.article-share-actions .btn {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
}
.share-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(11, 18, 32, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.24);
  color: var(--navy);
  font-weight: 700;
}
.share-chip:hover {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.22);
  color: var(--primary);
}
@media (max-width: 768px) {
  .article-share-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .article-share-actions .btn,
  .share-chip {
    width: 100%;
  }
}


:root {
  --surface-raised: #ffffff;
  --surface-soft: #f8fafc;
  --surface-accent: #fff5f5;
  --text-heading: #0f172a;
  --shadow-sm: 0 10px 24px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 20px 40px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 26px 60px rgba(11, 18, 32, 0.14);
}
body {
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(214, 0, 0, 0.035), transparent 28%),
    linear-gradient(180deg, #fbfcff 0%, var(--bg) 34%, #eef2f8 100%);
}
.page-bg {
  background: transparent;
}
.hs-app .sticky-header {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.hero-card,
.news-card,
.panel,
.live-promo,
.shell-card {
  box-shadow: var(--shadow-sm);
}
.panel,
.news-card,
.hero-card,
.quick-panel,
.trust-panel,
.newsletter-panel,
.must-read-card,
.editor-card,
.intro-card {
  background: var(--surface-raised);
}
.section-head h2,
.panel h1,
.panel h2,
.panel h3,
.hero-title,
.brand-title {
  color: var(--text-heading);
}
.page-shell-lead {
  padding: 28px 0 40px;
}
.page-header-band {
  display: grid;
  gap: 14px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(11, 18, 32, 0.98), rgba(24, 37, 64, 0.95));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  color: rgba(255,255,255,0.84);
  box-shadow: var(--shadow-lg);
}
.page-kicker {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 11px;
  font-weight: 800;
}
.page-title {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  color: #fff;
}
.page-lead {
  max-width: 70ch;
  font-size: 17px;
}
.panel-accent {
  border-top: 4px solid var(--primary);
}
.story-list,
.story-list li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.story-list li + li {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 14px;
}
.story-link-strong {
  color: var(--text-heading);
  font-weight: 800;
  line-height: 1.45;
}
.story-link-strong:hover {
  color: var(--primary);
}
.prose-panel,
.article-body {
  background: var(--surface-raised);
}
.article-body img,
.prose-panel img {
  border-radius: 16px;
}
.article-body a,
.prose-panel a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-body h2,
.article-body h3,
.article-body h4 {
  margin-top: 12px;
}
.quick-link-card,
.topic-link,
.footer-pill-light {
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}
.quick-link-card:hover,
.topic-link:hover,
.footer-pill-light:hover {
  transform: translateY(-1px);
}
@media (max-width: 900px) {
  .page-shell-lead {
    padding: 24px 0 32px;
  }
  .page-header-band {
    padding: 22px 20px;
  }
}
@media (max-width: 760px) {
  .page-title {
    font-size: 28px;
  }
  .page-lead {
    font-size: 15px;
  }
}
