/* ============================================================
   WEALTHWIRE — Finance Editorial CSS
   Palette: Deep navy #0B1120, White #FFFFFF, Gold accent #F5A623,
            Slate #64748B, Light bg #F8FAFC, Border #E2E8F0
   Type: 'Inter' body, 'Playfair Display' headlines
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@700;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0B1120;
  --white:  #FFFFFF;
  --gold:   #F5A623;
  --gold2:  #E8961A;
  --slate:  #64748B;
  --light:  #F8FAFC;
  --border: #E2E8F0;
  --text:   #1E293B;
  --muted:  #94A3B8;
  --green:  #16A34A;
  --red:    #DC2626;
  --radius: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- UTILITIES ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 780px; margin: 0 auto; padding: 0 24px; }
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- AD SLOTS ---- */
.ad-slot {
  background: var(--light);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
}
.ad-slot::before {
  content: 'Advertisement';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .65rem;
  color: var(--muted);
  letter-spacing: .08em;
}
.ad-slot--leaderboard { width: 100%; height: 90px; margin: 0 auto 28px; }
.ad-slot--rectangle  { width: 100%; max-width: 336px; height: 280px; margin: 28px auto; }
.ad-slot--sidebar    { width: 300px; min-height: 600px; position: sticky; top: 88px; }
.ad-slot--banner     { width: 100%; height: 90px; margin: 32px 0; }
/* Replace dashed border with nothing when real ad loads */
.ad-slot ins { display: block; width: 100%; height: 100%; }

/* ---- HEADER / NAV ---- */
.site-header {
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.02em;
}
.site-logo .logo-icon {
  width: 34px; height: 34px;
  background: var(--gold);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.site-logo span { color: var(--gold); }

.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  transition: all .2s;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,.1);
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 7px 18px !important;
}
.nav-cta:hover { background: var(--gold2) !important; }

.hamburger { display: none; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: white; margin: 5px 0; border-radius: 2px; transition: .3s; }

/* ---- HERO (Homepage) ---- */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(245,166,35,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,.15);
  border: 1px solid rgba(245,166,35,.3);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 18px;
  letter-spacing: -.03em;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  border: none;
}
.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: var(--gold2); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(245,166,35,.4); }
.btn--outline { background: transparent; color: white; border: 1px solid rgba(255,255,255,.3); }
.btn--outline:hover { background: rgba(255,255,255,.08); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
}
.stat-label { font-size: .75rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; }

.hero-featured {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  overflow: hidden;
}
.featured-img {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a2a4a 0%, #0d1b35 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}
.featured-body { padding: 20px 22px; }
.featured-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.featured-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  line-height: 1.35;
  margin-bottom: 8px;
}
.featured-meta { font-size: .78rem; color: rgba(255,255,255,.45); }

/* ---- TICKER BAR ---- */
.ticker-bar {
  background: var(--light);
  border-bottom: 1px solid var(--border);
  padding: 9px 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  gap: 32px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--slate);
  flex-shrink: 0;
}
.ticker-item .up { color: var(--green); }
.ticker-item .down { color: var(--red); }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---- SECTION HEADERS ---- */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -.02em;
  position: relative;
}
.section-header h2::before {
  content: '';
  position: absolute;
  left: 0; bottom: -16px;
  width: 40px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.section-header a { font-size: .82rem; font-weight: 600; color: var(--gold2); }
.section-header a:hover { text-decoration: underline; }

/* ---- CARD GRID ---- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card-thumb {
  width: 100%; aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}
.card-body { padding: 18px 20px 20px; }
.card-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 8px;
}
.tag--savings { background: #EFF6FF; color: #1D4ED8; }
.tag--income  { background: #F0FDF4; color: #15803D; }
.tag--credit  { background: #FFF7ED; color: #C2410C; }
.tag--invest  { background: #F5F3FF; color: #6D28D9; }
.tag--budget  { background: #FFF1F2; color: #BE123C; }
.tag--tax     { background: #F0FDFA; color: #0F766E; }

.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.card h3 a:hover { color: var(--gold2); }
.card-excerpt { font-size: .83rem; color: var(--slate); line-height: 1.6; margin-bottom: 12px; }
.card-meta { display: flex; align-items: center; gap: 10px; font-size: .73rem; color: var(--muted); }
.card-meta .read-time { margin-left: auto; }

/* ---- FEATURED STRIP ---- */
.featured-strip {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.card--big .card-thumb { aspect-ratio: 16/8; font-size: 4rem; }
.card--big .card-body { padding: 22px 24px 24px; }
.card--big h3 { font-size: 1.3rem; }
.card--big .card-excerpt { display: block; }

/* ---- LIST SIDEBAR ---- */
.list-article { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.list-article:last-child { border-bottom: none; }
.list-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--border);
  flex-shrink: 0;
  width: 32px;
  line-height: 1;
  padding-top: 2px;
}
.list-article h4 { font-size: .87rem; font-weight: 600; line-height: 1.4; margin-bottom: 4px; }
.list-article h4 a:hover { color: var(--gold2); }
.list-article p { font-size: .75rem; color: var(--muted); }

/* ---- NEWSLETTER ---- */
.newsletter-strip {
  background: var(--navy);
  border-radius: 12px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 48px 0;
}
.newsletter-strip h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: white;
  margin-bottom: 6px;
}
.newsletter-strip p { font-size: .87rem; color: rgba(255,255,255,.55); }
.newsletter-form { display: flex; gap: 8px; flex-shrink: 0; }
.newsletter-form input {
  padding: 11px 16px;
  border-radius: 6px;
  border: none;
  font-size: .87rem;
  width: 240px;
  background: rgba(255,255,255,.1);
  color: white;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form input:focus { background: rgba(255,255,255,.15); }
.newsletter-form button {
  padding: 11px 20px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: .87rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--gold2); }

/* ---- HOMEPAGE LAYOUT ---- */
.home-main { padding: 52px 0 64px; }
.home-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.home-sidebar { display: flex; flex-direction: column; gap: 32px; }

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.widget-header {
  background: var(--navy);
  color: white;
  padding: 12px 18px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.widget-body { padding: 4px 18px 12px; }

/* ---- UTILITY ICONS (replace emoji) ---- */
.icon-gap { display: inline-flex; align-items: center; gap: 6px; }
.meta-icon { display: inline-flex; align-items: center; gap: 5px; }
.meta-icon i { width: 14px; text-align: center; color: var(--muted); }
.article-meta .meta-icon i { color: var(--muted); }
.widget-header i, .section-header h2 i, .section-header h2::before { display: none; }
.section-header h2 { display: flex; align-items: center; gap: 10px; }
.section-header h2 i { display: inline-flex; color: var(--gold); font-size: 1.2rem; }
.card-tag i { margin-right: 4px; font-size: .7rem; }
.breadcrumb i { margin-right: 4px; }
.article-cat { display: inline-flex; align-items: center; gap: 6px; }
.article-cat::before { display: none; }
.article-cat i { color: var(--gold); }
.toc-title { display: flex; align-items: center; gap: 8px; }
.toc-title i { color: var(--gold); font-size: .85rem; }
.highlight-box h4 { display: flex; align-items: center; gap: 8px; }
.highlight-box h4 i { color: var(--gold); font-size: .95rem; }
.share-btn { display: inline-flex; align-items: center; gap: 6px; }
.share-btn i { font-size: .9rem; }
.widget-header { display: flex; align-items: center; gap: 8px; }
.widget-header i { display: inline-flex; font-size: .85rem; }
.info-meta { display: flex; align-items: center; gap: 8px; }
.info-meta i { color: var(--gold); }

/* ---- ARTICLE PAGE ---- */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  padding: 48px 0 64px;
  align-items: start;
}
.article-header { margin-bottom: 28px; }
.article-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 12px;
}
.article-cat::before { content: ''; display: block; width: 20px; height: 2px; background: var(--gold); border-radius: 1px; }
.article-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.03em;
  margin-bottom: 16px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.article-meta strong { color: var(--text); font-weight: 600; }
.meta-dot { color: var(--border); }

.article-hero-img {
  width: 100%;
  aspect-ratio: 16/7;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  margin-bottom: 32px;
}

/* Article content prose */
.article-content { font-size: 1.02rem; line-height: 1.75; color: var(--text); }
.article-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 900;
  margin: 40px 0 14px;
  letter-spacing: -.02em;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}
.article-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 28px 0 10px;
}
.article-content p { margin-bottom: 18px; }
.article-content ul, .article-content ol { margin: 0 0 18px 22px; }
.article-content li { margin-bottom: 6px; }
.article-content strong { font-weight: 700; color: var(--navy); }
.article-content a { color: var(--gold2); text-decoration: underline; }
.article-content a:hover { color: var(--gold); }
.article-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 14px 20px;
  margin: 24px 0;
  background: var(--light);
  border-radius: 0 8px 8px 0;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--navy);
}
.article-content .highlight-box {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 18px 22px;
  margin: 24px 0;
}
.article-content .highlight-box h4 { font-size: .85rem; font-weight: 800; color: #92400E; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.article-content .highlight-box p { margin: 0; font-size: .92rem; }

.article-content .data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: .9rem;
}
.article-content .data-table th {
  background: var(--navy);
  color: white;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .04em;
}
.article-content .data-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
.article-content .data-table tr:nth-child(even) td { background: var(--light); }

/* TOC */
.toc {
  background: var(--light);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 0 0 32px;
}
.toc-title { font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--slate); margin-bottom: 12px; }
.toc ol { margin-left: 16px; }
.toc li { margin-bottom: 5px; font-size: .88rem; }
.toc a { color: var(--gold2); font-weight: 500; }
.toc a:hover { text-decoration: underline; }

/* Article Sidebar */
.article-sidebar { display: flex; flex-direction: column; gap: 24px; }

/* Tags */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); }
.tag-cloud a {
  background: var(--light);
  border: 1px solid var(--border);
  color: var(--slate);
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  transition: all .2s;
}
.tag-cloud a:hover { background: var(--navy); color: white; border-color: var(--navy); }

/* Share */
.share-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0;
  padding: 18px 22px;
  background: var(--light);
  border-radius: 8px;
}
.share-label { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--slate); margin-right: 4px; }
.share-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  border-radius: 5px;
  font-size: .8rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity .2s;
}
.share-btn:hover { opacity: .85; }
.share-btn--tw { background: #1DA1F2; color: white; }
.share-btn--fb { background: #1877F2; color: white; }
.share-btn--li { background: #0A66C2; color: white; }
.share-btn--copy { background: var(--border); color: var(--text); }
.share-btn--wa { background: #25D366; color: white; }
.share-btn--pi { background: #E60023; color: white; }
.share-btn--email { background: var(--slate); color: white; }
.share-bar .share-btn { font-size: .78rem; padding: 7px 11px; }
@media (max-width: 600px) {
  .share-bar { flex-wrap: wrap; }
  .share-bar .share-btn { font-size: .75rem; padding: 6px 10px; }
}

/* Related articles */
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 12px; }
.related-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform .2s;
}
.related-card:hover { transform: translateY(-2px); }
.related-thumb { aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }
.related-info { padding: 12px 14px; }
.related-info h4 { font-size: .84rem; font-weight: 700; line-height: 1.35; margin-bottom: 4px; }
.related-info a:hover { color: var(--gold2); }
.related-info span { font-size: .72rem; color: var(--muted); }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  background: var(--light);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.breadcrumb ol { display: flex; align-items: center; gap: 6px; list-style: none; font-size: .78rem; color: var(--muted); flex-wrap: wrap; }
.breadcrumb li:not(:last-child)::after { content: '›'; margin-left: 6px; }
.breadcrumb a { color: var(--slate); font-weight: 500; }
.breadcrumb a:hover { color: var(--gold2); }
.breadcrumb li:last-child { color: var(--text); font-weight: 600; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  padding: 56px 0 0;
  margin-top: 64px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .site-logo { margin-bottom: 14px; }
.footer-brand p { font-size: .85rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: white; font-size: .82rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: .85rem; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
}
.footer-bottom a { color: rgba(255,255,255,.5); margin-left: 16px; }
.footer-bottom a:hover { color: var(--gold); }
.footer-disclaimer { font-size: .72rem; color: rgba(255,255,255,.3); line-height: 1.6; padding: 14px 0 0; border-top: 1px solid rgba(255,255,255,.07); margin-top: 10px; }

/* ---- CATEGORY PAGE ---- */
.cat-header {
  background: var(--navy);
  padding: 48px 0 36px;
  color: white;
}
.cat-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 8px;
}
.cat-header p { font-size: .95rem; color: rgba(255,255,255,.6); max-width: 560px; }
.cat-meta { display: flex; align-items: center; gap: 16px; margin-top: 14px; font-size: .8rem; color: rgba(255,255,255,.4); }

/* ---- PROGRESS BAR ---- */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: var(--gold);
  z-index: 9999;
  transition: width .1s linear;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .home-layout, .article-layout { grid-template-columns: 1fr; }
  .ad-slot--sidebar { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-featured { display: none; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .featured-strip { grid-template-columns: 1fr; }
  .newsletter-strip { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-form input { width: 100%; }
  .site-nav { display: none; }
  .site-nav.open { display: flex; flex-direction: column; position: absolute; top: 62px; left: 0; right: 0; background: var(--navy); padding: 12px; border-top: 1px solid rgba(255,255,255,.1); }
  .hamburger { display: block; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
  .card-grid { grid-template-columns: 1fr; }
  .hero { padding: 44px 0 40px; }
  .article-meta { gap: 8px; }
}

/* ---- INFO / STATIC PAGES ---- */
.info-page {
  padding: 56px 0 64px;
}
.info-page .info-container {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 24px;
}
.info-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -.03em;
  margin-bottom: 8px;
}
.info-page .info-subtitle {
  font-size: 1.05rem;
  color: var(--slate);
  margin-bottom: 40px;
  line-height: 1.7;
}
.info-page h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-page h2 i { color: var(--gold); font-size: 1.1rem; }
.info-page p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 16px;
}
.info-page ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.info-page ul li {
  padding: 14px 0 14px 36px;
  border-bottom: 1px solid var(--border);
  position: relative;
  line-height: 1.6;
}
.info-page ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--green);
  font-size: .9rem;
}
.info-page .info-meta {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

/* ---- CATEGORY HERO (enhanced) ---- */
.cat-header {
  background: var(--navy);
  padding: 56px 0 44px;
  color: white;
  position: relative;
  overflow: hidden;
}
.cat-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 30% 50%, rgba(245,166,35,.08) 0%, transparent 70%);
  pointer-events: none;
}
.cat-header .cat-icon {
  font-size: 2.8rem;
  margin-bottom: 12px;
}
.cat-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 6px;
  letter-spacing: -.02em;
}
.cat-header p {
  font-size: .95rem;
  color: rgba(255,255,255,.6);
  max-width: 600px;
  line-height: 1.7;
}
.cat-header .cat-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}
.cat-header .cat-meta i { margin-right: 6px; }

/* ---- CATEGORY GRID ---- */
.cat-grid-section {
  padding: 48px 0;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.cat-grid .card .card-thumb {
  background: linear-gradient(135deg, var(--light), var(--border));
  font-size: 2.8rem;
}

/* ---- AD PLACEMENT ON INFO PAGES ---- */
.info-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  padding: 48px 0 64px;
  align-items: start;
}
.info-layout .info-main { min-width: 0; }
@media (max-width: 900px) {
  .info-layout { grid-template-columns: 1fr; }
}

/* ---- SOCIAL SHARE ON INFO ---- */
.info-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 36px 0;
  padding: 18px 22px;
  background: var(--light);
  border-radius: 8px;
}
.info-social span {
  font-size: .85rem;
  font-weight: 700;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.info-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: white;
  font-size: .95rem;
  transition: opacity .2s, transform .2s;
}
.info-social a:hover { opacity: .85; transform: translateY(-2px); }
.info-social .social-tw { background: #1DA1F2; }
.info-social .social-fb { background: #1877F2; }
.info-social .social-li { background: #0A66C2; }
.info-social .social-copy { background: var(--muted); cursor: pointer; border: none; }

/* ---- NEWSLETTER PAGE ---- */
.newsletter-page {
  padding: 40px 0 64px;
}
.newsletter-page .nl-card {
  background: var(--light);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}
.newsletter-page .nl-card input {
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  outline: none;
}
.newsletter-page .nl-card input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,166,35,.15); }
.newsletter-page .nl-card button {
  padding: 14px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
  cursor: pointer;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s;
}
.newsletter-page .nl-card button:hover { background: var(--gold2); }
.newsletter-page .nl-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-page .nl-feature {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}
.newsletter-page .nl-feature i {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.newsletter-page .nl-feature h4 {
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.newsletter-page .nl-feature p {
  font-size: .8rem;
  color: var(--slate);
}

/* ---- CONTACT FORM ---- */
.contact-form-wrap {
  max-width: 560px;
  margin: 0 auto;
}
.contact-form-wrap .form-group {
  margin-bottom: 20px;
}
.contact-form-wrap label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 6px;
  color: var(--text);
}
.contact-form-wrap label i { color: var(--gold); width: 16px; }
.contact-form-wrap input,
.contact-form-wrap select,
.contact-form-wrap textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: .95rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
}
.contact-form-wrap input:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,166,35,.12);
}
.contact-form-wrap button {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s;
}
.contact-form-wrap button:hover { background: var(--gold2); }

/* ---- FOOTER SOCIAL ---- */
.footer-social a { transition: color .2s !important; }

/* ---- NAV ICONS ON MOBILE ---- */
@media (max-width: 768px) {
  .site-nav a .nav-label { font-size: .82rem; }
  .site-nav a i { width: 18px; text-align: center; }
}

/* ---- RESPONSIVE ADJUSTMENTS ---- */
@media (max-width: 600px) {
  .newsletter-page .nl-features { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-inner { animation: none; }
  * { transition: none !important; }
}
