/* article.css — shared styles for insight / thought leadership article pages */

/* ── Hero ──────────────────────────────────────────────────────────────── */
.article-hero {
  position: relative;
  padding: 140px 0 72px;
  overflow: hidden;
}
.article-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}
.article-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.article-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4.5vw, 52px);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.article-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.article-meta-bar i {
  color: var(--gold);
  margin-right: 5px;
}

/* ── Layout ─────────────────────────────────────────────────────────────── */
.article-body-section {
  background: var(--white);
  padding: 72px 0 96px;
}
.article-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
}
@media(max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; gap: 48px; }
}

/* ── Article body text ───────────────────────────────────────────────────── */
.article-content {
  min-width: 0;
}
.article-lead {
  font-size: 18px;
  line-height: 1.75;
  color: var(--navy);
  font-weight: 400;
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--border);
}
.article-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--navy);
  margin: 40px 0 16px;
  line-height: 1.25;
}
.article-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #3a3a4a;
  margin-bottom: 20px;
}
.article-content strong {
  color: var(--navy);
  font-weight: 600;
}
.article-content ul {
  margin: 0 0 20px 20px;
  padding: 0;
}
.article-content ul li {
  font-size: 15px;
  line-height: 1.7;
  color: #3a3a4a;
  margin-bottom: 8px;
}
.article-divider {
  height: 1px;
  background: var(--border);
  margin: 48px 0 28px;
}
.article-footer-note {
  font-size: 14px !important;
  color: var(--text-mid) !important;
  background: rgba(201,168,76,.06);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  line-height: 1.6 !important;
}

/* ── Callout box ─────────────────────────────────────────────────────────── */
.article-callout {
  background: var(--bg-off, #F2F0EC);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  border-radius: 0 10px 10px 0;
  margin: 32px 0;
}
.article-callout p {
  margin: 0 !important;
  font-size: 15px !important;
  font-style: italic;
}

/* ── Sidebar ─────────────────────────────────────────────────────────────── */
.article-sidebar {
  position: sticky;
  top: 100px;
}
.sidebar-block {
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.sidebar-block:last-of-type {
  border-bottom: none;
}
.sidebar-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--bg-off, #F2F0EC);
  color: var(--navy);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  transition: background .2s;
}
.sidebar-link i {
  color: var(--gold);
  font-size: 13px;
  flex-shrink: 0;
}
.sidebar-link:hover {
  background: rgba(201,168,76,.12);
}
.sidebar-art {
  display: block;
  font-size: 13px;
  color: var(--navy);
  text-decoration: none;
  line-height: 1.5;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.sidebar-art:last-child { border-bottom: none; }
.sidebar-art:hover { color: var(--gold); }

.sidebar-cta {
  background: var(--navy);
  border-radius: 12px;
  padding: 24px;
  margin-top: 32px;
}
.sidebar-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 10px;
}
.sidebar-cta p {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-bottom: 20px;
  line-height: 1.5;
}
