/* shared article styles – imported via <link> */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:#0d1b35; --navy-mid:#14264d; --navy-light:#1b3260;
  --gold:#c9a84c; --gold-light:#e2c070; --gold-pale:#f8f0d8;
  --white:#ffffff; --off-white:#f7f5f0;
  --gray-200:#e0dbd1; --gray-text:#6b7280; --text:#1a1a2e;
  --font:'Heebo',sans-serif; --radius:14px;
}
html { scroll-behavior:smooth; }
body { font-family:var(--font); background:var(--off-white); color:var(--text); line-height:1.7; font-size:17px; }
.container { max-width:780px; margin:0 auto; padding:0 24px; }
.container-wide { max-width:1100px; margin:0 auto; padding:0 24px; }

/* NAV */
.navbar { background:var(--white); border-bottom:1px solid var(--gray-200); position:sticky; top:0; z-index:999; box-shadow:0 2px 12px rgba(0,0,0,0.07); }
.nav-inner { display:flex; align-items:center; justify-content:space-between; padding:14px 24px; max-width:1100px; margin:0 auto; }
.logo { display:flex; align-items:center; gap:12px; text-decoration:none; }
.logo-icon { width:40px; height:40px; background:linear-gradient(135deg,var(--navy),var(--navy-light)); border-radius:9px; display:flex; align-items:center; justify-content:center; color:var(--gold); font-size:15px; font-weight:900; flex-shrink:0; }
.logo-text strong { display:block; font-size:16px; font-weight:900; color:var(--navy); line-height:1.2; }
.logo-text span { font-size:11px; color:var(--gray-text); }
.nav-back { display:inline-flex; align-items:center; gap:6px; text-decoration:none; color:var(--navy); font-weight:700; font-size:14px; padding:9px 16px; border:1.5px solid var(--gray-200); border-radius:8px; transition:background 0.2s; }
.nav-back:hover { background:var(--off-white); }

/* ARTICLE HERO */
.article-hero { background:linear-gradient(150deg,var(--navy) 0%,var(--navy-light) 100%); color:var(--white); padding:52px 0 48px; }
.art-label { font-size:12px; font-weight:800; letter-spacing:0.14em; text-transform:uppercase; color:var(--gold); margin-bottom:12px; }
.art-title { font-size:clamp(22px,3.5vw,36px); font-weight:900; line-height:1.25; margin-bottom:14px; }
.art-meta { font-size:14px; color:rgba(255,255,255,0.6); display:flex; align-items:center; gap:16px; flex-wrap:wrap; }
.art-meta span { display:flex; align-items:center; gap:5px; }

/* ARTICLE BODY */
.article-body { padding:56px 0 72px; }
.article-content h2 { font-size:22px; font-weight:900; color:var(--navy); margin:36px 0 14px; padding-right:16px; border-right:4px solid var(--gold); }
.article-content h3 { font-size:18px; font-weight:800; color:var(--navy); margin:28px 0 10px; }
.article-content p { font-size:17px; color:#3a3a4a; line-height:1.85; margin-bottom:18px; }
.article-content strong { color:var(--navy); font-weight:700; }
.article-content ul, .article-content ol { padding-right:24px; margin-bottom:18px; }
.article-content li { font-size:16.5px; color:#3a3a4a; line-height:1.8; margin-bottom:8px; }
.highlight-box { background:var(--gold-pale); border:1px solid rgba(201,168,76,0.4); border-radius:12px; padding:22px 24px; margin:28px 0; }
.highlight-box p { margin:0; color:#5a4500; font-weight:600; }

/* CTA */
.article-cta { background:linear-gradient(135deg,var(--navy),var(--navy-light)); color:var(--white); border-radius:16px; padding:36px 32px; text-align:center; margin-top:48px; }
.article-cta h3 { font-size:22px; font-weight:900; margin-bottom:10px; }
.article-cta p { color:rgba(255,255,255,0.75); margin-bottom:24px; }
.btn-cta { display:inline-block; padding:14px 32px; background:var(--gold); color:var(--navy); border-radius:9px; font-weight:900; font-size:16px; text-decoration:none; transition:filter 0.2s; }
.btn-cta:hover { filter:brightness(1.07); }
