/* ── READING PROGRESS BAR ── */
.reading-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-soft) 100%);
  z-index: 9999;
  transition: width .15s ease-out;
}

/* ── ARTICLE LAYOUT ── */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 24px 60px;
}

.article-header { margin-bottom: 48px; }

.article-header .breadcrumb {
  margin-bottom: 32px;
  font-size: .82rem;
  color: var(--text-3);
}
.article-header .breadcrumb a {
  color: var(--text-2);
  text-decoration: none;
  transition: color .2s;
}
.article-header .breadcrumb a:hover { color: var(--gold); }
.article-header .breadcrumb span { color: var(--border-2); }
.article-header .breadcrumb .current { color: var(--gold); }

.article-cat {
  display: inline-block;
  background: var(--gold-light);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.article-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--navy);
  margin-bottom: 24px;
}

.article-lead {
  font-size: 1.18rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 36px;
  font-weight: 400;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.article-author img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.article-author strong {
  display: block;
  font-size: .92rem;
  color: var(--navy);
  font-weight: 600;
}
.article-author span {
  font-size: .78rem;
  color: var(--text-2);
}

.article-info {
  display: flex;
  gap: 8px;
  font-size: .82rem;
  color: var(--text-2);
  letter-spacing: .3px;
}

.article-cover {
  margin: 0 -40px 56px;
}
.article-cover img {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 20px 60px rgba(10, 37, 64, .12);
}

/* ── ARTICLE BODY (typography) ── */
.article-body {
  font-family: 'Inter', sans-serif;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text);
}

.article-body .lede {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--navy);
  margin-bottom: 32px;
  font-style: italic;
}

.article-body p {
  margin-bottom: 24px;
  color: #2a3344;
}

.article-body h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--navy);
  margin: 48px 0 20px;
  line-height: 1.2;
}
.article-body h2::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 18px;
}

.article-body h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--navy);
  margin: 36px 0 16px;
  line-height: 1.3;
}

.article-body strong {
  color: var(--navy);
  font-weight: 600;
}

.article-body a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 1px;
  transition: color .2s;
}
.article-body a:hover { color: var(--gold); }

.article-body ul, .article-body ol {
  margin: 0 0 28px 0;
  padding-left: 0;
  list-style: none;
}
.article-body ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}
.article-body ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 14px;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.article-body ol {
  counter-reset: ordered;
}
.article-body ol li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 12px;
  counter-increment: ordered;
}
.article-body ol li::before {
  content: counter(ordered);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
  font-size: 1.2rem;
}

/* Blockquote */
.article-body blockquote {
  margin: 48px -20px;
  padding: 32px 40px;
  border-left: 3px solid var(--gold);
  background: var(--gold-light);
  border-radius: 0 14px 14px 0;
}
.article-body blockquote p {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-style: italic;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 12px;
}
.article-body blockquote cite {
  font-style: normal;
  font-size: .85rem;
  color: var(--text-2);
  font-weight: 500;
  letter-spacing: .3px;
}

/* Callout */
.article-callout {
  display: flex;
  gap: 20px;
  background: var(--navy);
  color: white;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  margin: 40px -20px;
  position: relative;
  overflow: hidden;
}
.article-callout::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(201, 169, 97, 0.12) 0%, transparent 50%);
  pointer-events: none;
}
.callout-icon {
  width: 44px; height: 44px;
  background: rgba(201, 169, 97, .15);
  color: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(201, 169, 97, .25);
}
.callout-icon svg { width: 22px; height: 22px; }
.article-callout strong {
  display: block;
  color: var(--gold);
  font-size: .78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.article-callout p {
  color: rgba(255, 255, 255, .85);
  font-size: .95rem;
  line-height: 1.65;
  margin: 0;
}

/* Table */
.article-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: .92rem;
}
.article-table thead { background: var(--bg-2); }
.article-table th {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  padding: 14px 18px;
  font-size: .9rem;
  border-bottom: 2px solid var(--gold);
}
.article-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.article-table tbody tr:hover { background: var(--bg-2); }

/* ── ARTICLE CTA ── */
.article-cta {
  margin: 64px -20px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.article-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 0% 100%, rgba(201, 169, 97, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 100% 0%, rgba(201, 169, 97, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.article-cta h3 {
  position: relative;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: white;
  margin-bottom: 12px;
}
.article-cta p {
  position: relative;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 28px;
  font-size: 1rem;
}
.article-cta .btn-gold {
  position: relative;
}

/* ── SHARE ── */
.article-share {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 48px;
}
.article-share span {
  font-size: .82rem;
  color: var(--text-2);
  font-weight: 500;
  letter-spacing: .3px;
  margin-right: auto;
}
.article-share a {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  transition: all .2s;
}
.article-share a:hover {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
  transform: translateY(-2px);
}

/* ── RELATED ── */
.article-related {
  background: var(--bg-2);
  padding: 80px 24px 100px;
  margin-top: 60px;
}
.article-related .section-header,
.article-related .related-grid {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.article-related .related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.article-related .related-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.article-related .related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.article-related .related-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.article-related .related-card p {
  color: var(--text-2);
  font-size: .85rem;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .article-cover { margin: 0 0 40px; }
  .article-body blockquote { margin: 32px 0; padding: 24px 28px; }
  .article-callout { margin: 32px 0; padding: 24px; flex-direction: column; gap: 14px; }
  .article-cta { margin: 48px 0; padding: 36px 28px; }
}
