/*
Theme Name: Boreal Markets
Theme URI: https://borealmarkets.com
Author: SmallCap Communications Inc.
Author URI: https://smallcapcommunications.com
Description: Custom editorial theme for Boreal Markets — Canadian financial intelligence.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: boreal-markets
*/

/* ─── RESET & ROOT ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0b1c35;
  --navy-mid:    #112849;
  --navy-light:  #1a3a60;
  --gold:        #c9a84c;
  --gold-light:  #e4c068;
  --gold-pale:   #fdf6e3;
  --gold-border: rgba(201,168,76,0.25);
  --white:       #ffffff;
  --off-white:   #f6f8fc;
  --bg:          #f6f8fc;
  --border:      #dde4ef;
  --border-strong: #c8d3e6;
  --text:        #1c2738;
  --text-body:   #2c3a50;
  --muted:       #5e6e87;
  --green:       #1a7a4a;
  --red:         #c0392b;
  --blue:        #1c62b9;
  --blue-bg:     #e8f0fb;
  --card-shadow: 0 1px 4px rgba(11,28,53,0.08), 0 2px 10px rgba(11,28,53,0.05);
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.up   { color: var(--green); }
.down { color: var(--red); }

/* ─── BADGES ────────────────────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  font-family: -apple-system, Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}
.badge-markets    { background: var(--navy); color: white; }
.badge-bitcoin    { background: #f7931a; color: white; }
.badge-gold       { background: #8a6000; color: white; }
.badge-silver     { background: #5a6a7a; color: white; }
.badge-oil        { background: #3a2a00; color: white; }
.badge-commodities{ background: #7a5c00; color: white; }
.badge-uranium    { background: #5b3ec8; color: white; }
.badge-resources  { background: #1a7a4a; color: white; }
.badge-ai         { background: #5b3ec8; color: white; }
.badge-tech       { background: #1c3a60; color: white; }
.badge-biotech    { background: #0e8499; color: white; }
.badge-smallcap   { background: #2a5a2a; color: white; }
.badge-analysis   { background: #1c3a60; color: white; }

/* ─── TOP BAR ───────────────────────────────────────────────────────────────── */
.top-bar {
  background: var(--navy);
  padding: 6px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: -apple-system, Arial, sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}
.top-bar a { color: rgba(255,255,255,0.55); }
.top-bar a:hover { color: var(--gold-light); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 16px; }
.top-bar-sep { color: rgba(255,255,255,0.2); }

/* ─── HEADER ────────────────────────────────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(11,28,53,0.12);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 62px;
}
.site-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark {
  width: 36px; height: 36px;
  background: var(--navy);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mark svg { width: 22px; height: 22px; }
.logo-name {
  font-family: 'Georgia', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.3px;
}
.logo-name span { color: var(--gold); }
.logo-tagline {
  font-family: -apple-system, Arial, sans-serif;
  font-size: 9.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1px;
}
.logo-text { line-height: 1; }
.main-nav { flex: 1; display: flex; align-items: center; gap: 2px; }
.main-nav a {
  font-family: -apple-system, Arial, sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 4px;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--navy); background: var(--off-white); }
.main-nav .current-menu-item a,
.main-nav .current-cat a { color: var(--navy); font-weight: 700; }
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-subscribe {
  background: var(--gold);
  color: var(--navy);
  font-family: -apple-system, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  display: inline-block;
}
.btn-subscribe:hover { background: var(--gold-light); color: var(--navy); }

/* ─── TICKER ────────────────────────────────────────────────────────────────── */
.ticker-wrap {
  background: var(--navy-mid);
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ticker-inner { display: flex; align-items: stretch; }
.ticker-label {
  background: var(--navy);
  color: white;
  font-family: -apple-system, Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0 16px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-scroll { display: flex; overflow: hidden; flex: 1; }
.ticker-items {
  display: flex;
  animation: ticker-scroll 35s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border-right: 1px solid rgba(255,255,255,0.07);
  font-family: -apple-system, Arial, sans-serif;
  font-size: 12px;
}
.ticker-sym { color: rgba(255,255,255,0.9); font-weight: 700; }
.ticker-price { color: rgba(255,255,255,0.65); }
.ticker-chg { font-size: 11px; font-weight: 600; }
.ticker-chg.up { color: #4caf7d; }
.ticker-chg.down { color: #e05252; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── HERO SECTION ──────────────────────────────────────────────────────────── */
.hero-wrap { background: var(--navy); }
.hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  min-height: 480px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(11,28,53,0.18);
}
.hero-main {
  grid-row: 1 / 3;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 44px 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 460px;
}
.hero-main .hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-main .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,28,53,0.95) 0%, rgba(11,28,53,0.7) 45%, rgba(11,28,53,0.25) 100%);
}
.hero-cover-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-main-content { position: relative; z-index: 2; }
.hero-badge { margin-bottom: 12px; }
.hero-headline {
  font-family: 'Georgia', serif;
  font-size: 32px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.hero-dek {
  font-family: -apple-system, Arial, sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 520px;
}
.hero-byline { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.hero-byline-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--navy-light);
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-family: -apple-system, Arial, sans-serif;
  font-weight: 700; font-size: 11px; color: var(--gold); flex-shrink: 0;
}
.hero-byline-name { font-family: -apple-system, Arial, sans-serif; font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.8); }
.hero-byline-date { font-size: 11px; color: rgba(255,255,255,0.45); }
.hero-read-link {
  font-family: -apple-system, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 2px;
  display: inline-block;
  position: relative;
  z-index: 3;
}
.hero-read-link:hover { color: var(--gold-light); }

.hero-side-top {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  border-left: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-side-top .side-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-side-top .side-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,28,53,0.95) 0%, rgba(11,28,53,0.55) 50%, rgba(11,28,53,0.15) 100%);
}
.side-cover-link { position: absolute; inset: 0; z-index: 1; }
.side-content { position: relative; z-index: 2; padding: 24px; }
.side-headline {
  font-family: 'Georgia', serif;
  font-size: 17px;
  font-weight: 700;
  color: white;
  line-height: 1.3;
  margin-top: 8px;
  margin-bottom: 6px;
}
.side-byline { font-family: -apple-system, Arial, sans-serif; font-size: 11px; color: rgba(255,255,255,0.45); }

.hero-side-bottom {
  background: linear-gradient(135deg, #091828 0%, #112849 100%);
  padding: 24px;
  border-left: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-side-bottom a { color: inherit; }
.hero-side-bottom a:hover .side-headline { color: var(--gold-light); }

/* ─── PAGE LAYOUT ───────────────────────────────────────────────────────────── */
.page-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 24px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}
.full-width { grid-column: 1 / -1; }

/* ─── SECTION HEADING ───────────────────────────────────────────────────────── */
.section-heading {
  font-family: -apple-system, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--navy);
  margin-bottom: 20px;
}

/* ─── STORY CARDS (Homepage latest) ────────────────────────────────────────── */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}
.story-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
}
.story-card-thumb {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  flex-shrink: 0;
}
.story-card-thumb img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.story-card-body { padding: 14px; flex: 1; }
.story-card-body .badge { margin-bottom: 8px; }
.story-card-headline {
  font-family: 'Georgia', serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 8px;
}
.story-card-headline a:hover { color: var(--blue); }
.story-card-meta {
  font-family: -apple-system, Arial, sans-serif;
  font-size: 11px;
  color: var(--muted);
  display: flex;
  gap: 5px;
}

/* ─── ARTICLE LIST (section pages) ─────────────────────────────────────────── */
.article-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 32px;
}
.ali {
  display: flex;
  gap: 0;
  align-items: stretch;
  border-radius: 6px;
  overflow: hidden;
}
.ali:hover { background: var(--off-white); }
.ali-thumb {
  width: 88px;
  min-width: 88px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.ali-thumb img { width: 88px; height: 80px; object-fit: cover; }
.ali-body {
  padding: 12px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: flex-start;
}
.ali-hed {
  font-family: 'Georgia', serif;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
}
.ali-hed a:hover { color: var(--blue); }
.ali-meta {
  font-family: -apple-system, Arial, sans-serif;
  font-size: 11px;
  color: var(--muted);
  display: flex;
  gap: 5px;
  align-items: center;
}

/* ─── SINGLE ARTICLE ────────────────────────────────────────────────────────── */
.breadcrumb {
  font-family: -apple-system, Arial, sans-serif;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb .sep { color: var(--border-strong); }
.article-header { margin-bottom: 24px; }
.article-category-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.article-headline {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.4px;
}
.article-dek {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 20px;
  font-family: -apple-system, Arial, sans-serif;
  border-left: 3px solid var(--navy);
  padding-left: 14px;
}
.byline {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.byline-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy-light);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--border);
  font-family: -apple-system, Arial, sans-serif;
  font-weight: 700; color: var(--gold); font-size: 15px;
}
.byline-info { flex: 1; }
.byline-name { font-family: -apple-system, Arial, sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); }
.byline-role { font-family: -apple-system, Arial, sans-serif; font-size: 12px; color: var(--muted); }
.byline-meta { font-family: -apple-system, Arial, sans-serif; font-size: 12px; color: var(--muted); text-align: right; }
.article-featured-img { width: 100%; max-height: 420px; object-fit: cover; border-radius: 6px; margin-bottom: 8px; }
.article-hero-placeholder {
  width: 100%;
  height: 340px;
  border-radius: 6px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}
.img-caption { font-family: -apple-system, Arial, sans-serif; font-size: 11.5px; color: var(--muted); margin-bottom: 24px; }
.key-takeaways { background: var(--navy); border-radius: 6px; padding: 20px 22px; margin-bottom: 28px; }
.kt-label {
  font-family: -apple-system, Arial, sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.kt-label::before { content: ''; display: inline-block; width: 14px; height: 2px; background: var(--gold); }
.key-takeaways ul { list-style: none; padding: 0; }
.key-takeaways li {
  font-family: -apple-system, Arial, sans-serif;
  font-size: 14px; color: rgba(255,255,255,0.85);
  padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.5;
}
.key-takeaways li:last-child { border-bottom: none; }
.kt-bullet { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 5px; }
.entry-content { font-size: 17px; line-height: 1.78; color: var(--text-body); }
.entry-content p { margin-bottom: 22px; }
.entry-content h2 { font-size: 24px; font-weight: 700; color: var(--navy); margin: 36px 0 14px; line-height: 1.25; }
.entry-content h3 { font-size: 19px; font-weight: 700; color: var(--navy); margin: 28px 0 12px; }
.entry-content a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.entry-content strong { font-weight: 700; color: var(--navy); }
.entry-content blockquote {
  border-left: 4px solid var(--gold);
  margin: 28px 0; padding: 16px 20px;
  background: var(--gold-pale);
  border-radius: 0 6px 6px 0;
}
.entry-content blockquote p { font-size: 18px; font-style: italic; color: var(--navy); margin-bottom: 8px; }
.entry-content cite { font-family: -apple-system, Arial, sans-serif; font-size: 12px; color: var(--muted); font-style: normal; }
.entry-content ul, .entry-content ol { padding-left: 24px; margin-bottom: 22px; }
.entry-content li { margin-bottom: 8px; }
.data-table {
  width: 100%; border-collapse: collapse;
  font-family: -apple-system, Arial, sans-serif; font-size: 13.5px;
  margin: 28px 0; border-radius: 6px; overflow: hidden;
  box-shadow: var(--card-shadow); background: var(--white);
}
.data-table thead { background: var(--navy); color: white; }
.data-table th { padding: 11px 14px; text-align: left; font-size: 11px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; }
.data-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); color: var(--text); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--off-white); }
.data-table .up { color: var(--green); font-weight: 700; }
.data-table .down { color: var(--red); font-weight: 700; }
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 32px 0 28px; padding-top: 24px; border-top: 1px solid var(--border); }
.article-tag { font-family: -apple-system, Arial, sans-serif; font-size: 12px; padding: 5px 12px; border-radius: 20px; border: 1px solid var(--border); color: var(--muted); background: var(--white); }
.article-tag:hover { border-color: var(--navy); color: var(--navy); }
.author-bio {
  background: var(--white); border: 1px solid var(--border); border-radius: 6px;
  padding: 22px; margin: 32px 0; display: flex; gap: 18px; box-shadow: var(--card-shadow);
}
.author-bio-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--navy-light); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: -apple-system, Arial, sans-serif; font-weight: 700; font-size: 24px; color: var(--gold); border: 3px solid var(--border);
}
.author-bio-avatar img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; }
.author-bio-body h4 { font-family: -apple-system, Arial, sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.author-bio-body .bio-role { font-family: -apple-system, Arial, sans-serif; font-size: 12px; color: var(--blue); font-weight: 600; margin-bottom: 8px; }
.author-bio-body p { font-family: -apple-system, Arial, sans-serif; font-size: 13px; color: var(--muted); line-height: 1.6; }
.article-disclaimer {
  background: var(--off-white); border: 1px solid var(--border); border-radius: 6px;
  padding: 16px 18px; margin: 28px 0;
  font-family: -apple-system, Arial, sans-serif; font-size: 12px; color: var(--muted); line-height: 1.65;
}
.nl-strip {
  background: var(--gold-pale); border: 1px solid var(--gold-border); border-radius: 6px;
  padding: 22px 24px; margin: 32px 0;
  display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center;
}
.nl-strip h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.nl-strip p { font-family: -apple-system, Arial, sans-serif; font-size: 13px; color: var(--muted); }
.nl-form { display: flex; gap: 8px; }
.nl-input { padding: 9px 13px; border-radius: 4px; border: 1px solid var(--gold-border); background: white; font-family: -apple-system, Arial, sans-serif; font-size: 13px; width: 220px; }
.nl-btn { background: var(--navy); color: white; font-family: -apple-system, Arial, sans-serif; font-size: 13px; font-weight: 700; padding: 9px 18px; border-radius: 4px; border: none; cursor: pointer; white-space: nowrap; }
.related-section { margin: 36px 0; }
.related-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--navy); }
.related-header h3 { font-family: -apple-system, Arial, sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--navy); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card { background: var(--white); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; box-shadow: var(--card-shadow); }
.related-card-img { height: 100px; display: flex; align-items: center; justify-content: center; font-size: 28px; }
.related-card-img img { width: 100%; height: 100px; object-fit: cover; }
.related-card-body { padding: 12px 14px; }
.related-card-body .badge { margin-bottom: 6px; }
.related-card-body h4 { font-size: 14px; font-weight: 700; line-height: 1.3; color: var(--text); margin-bottom: 6px; }
.related-card-body h4 a:hover { color: var(--blue); }
.related-card-meta { font-family: -apple-system, Arial, sans-serif; font-size: 11px; color: var(--muted); }

/* ─── SIDEBAR ────────────────────────────────────────────────────────────────── */
.sidebar { position: sticky; top: 82px; }
.widget { background: var(--white); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; box-shadow: var(--card-shadow); margin-bottom: 20px; }
.widget-header { background: var(--navy); color: white; padding: 10px 16px; }
.widget-header h4 { font-family: -apple-system, Arial, sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.widget-body { padding: 4px 0; }
.mkt-item { display: flex; align-items: center; justify-content: space-between; padding: 9px 16px; border-bottom: 1px solid var(--border); font-family: -apple-system, Arial, sans-serif; font-size: 13px; }
.mkt-item:last-child { border-bottom: none; }
.mkt-sym { font-weight: 700; color: var(--navy); }
.mkt-chg { font-weight: 700; font-size: 12px; }
.trend-item { display: flex; gap: 10px; padding: 10px 16px; border-bottom: 1px solid var(--border); align-items: flex-start; }
.trend-item:last-child { border-bottom: none; }
.trend-num { font-family: -apple-system, Arial, sans-serif; font-size: 16px; font-weight: 700; color: var(--border-strong); width: 18px; flex-shrink: 0; line-height: 1.4; }
.trend-title { font-size: 13px; font-weight: 700; line-height: 1.35; color: var(--text); }
.trend-title a:hover { color: var(--blue); }
.nl-widget { background: linear-gradient(135deg, var(--navy), var(--navy-light)); border-radius: 6px; padding: 20px; margin-bottom: 20px; }
.nl-widget-tag { font-family: -apple-system, Arial, sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.nl-widget h4 { font-family: -apple-system, Arial, sans-serif; font-size: 14px; font-weight: 700; color: white; margin-bottom: 6px; }
.nl-widget p { font-family: -apple-system, Arial, sans-serif; font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.5; margin-bottom: 12px; }
.nl-widget input { width: 100%; padding: 8px 12px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.1); color: white; font-family: -apple-system, Arial, sans-serif; font-size: 12px; margin-bottom: 8px; }
.nl-widget button { width: 100%; padding: 8px; background: var(--gold); color: var(--navy); border: none; border-radius: 4px; font-family: -apple-system, Arial, sans-serif; font-size: 12px; font-weight: 700; cursor: pointer; }

/* ─── FOOTER ─────────────────────────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.65); margin-top: 32px; }
.footer-top { max-width: 1280px; margin: 0 auto; padding: 40px 24px 32px; display: grid; grid-template-columns: 220px 1fr 1fr 1fr; gap: 40px; }
.footer-brand p { font-family: -apple-system, Arial, sans-serif; font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.6; margin-top: 10px; }
.footer-col h5 { font-family: -apple-system, Arial, sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer-col a { display: block; font-family: -apple-system, Arial, sans-serif; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 14px 24px; max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; font-family: -apple-system, Arial, sans-serif; font-size: 11px; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-disclaimer { max-width: 1280px; margin: 0 auto; padding: 12px 24px 20px; font-family: -apple-system, Arial, sans-serif; font-size: 11px; color: rgba(255,255,255,0.25); line-height: 1.55; border-top: 1px solid rgba(255,255,255,0.06); }

/* ─── NEWSLETTER PAGE ───────────────────────────────────────────────────────── */
.nl-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 8px; padding: 40px; margin: 32px 0; text-align: center;
}
.nl-banner h2 { font-family: 'Georgia', serif; font-size: 28px; color: white; margin-bottom: 10px; }
.nl-banner p { font-family: -apple-system, Arial, sans-serif; font-size: 15px; color: rgba(255,255,255,0.65); margin-bottom: 24px; }
.nl-banner-form { display: flex; gap: 10px; justify-content: center; max-width: 440px; margin: 0 auto; }
.nl-banner-input { flex: 1; padding: 11px 14px; border-radius: 4px; border: none; font-size: 14px; }
.nl-banner-btn { background: var(--gold); color: var(--navy); font-family: -apple-system, Arial, sans-serif; font-size: 14px; font-weight: 700; padding: 11px 22px; border-radius: 4px; border: none; cursor: pointer; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .page-wrap { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .hero-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .hero-main { grid-row: auto; min-height: 320px; }
  .hero-side-top, .hero-side-bottom { display: none; }
}
@media (max-width: 768px) {
  .stories-grid { grid-template-columns: 1fr; }
  .article-list { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .header-inner { gap: 16px; }
  .main-nav { display: none; }
  .article-headline { font-size: 26px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
