/* ── Articles index ──────────────────────────────────────────────────────── */

.articles-grid {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.article-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 1.6rem 1.8rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  transition: border-color .2s, background .2s;
}
.article-card:hover {
  border-color: rgba(212,165,116,0.25);
  background: rgba(255,255,255,0.06);
}
.article-card-kicker {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .5rem;
}
.article-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  margin-bottom: .65rem;
}
.article-card-excerpt {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: .85rem;
}
.article-card-meta {
  font-size: .75rem;
  color: rgba(255,255,255,0.35);
  display: flex;
  gap: .4rem;
  align-items: center;
}

/* ── Article page ────────────────────────────────────────────────────────── */

.article-page {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}
.article-back {
  display: inline-block;
  font-size: .82rem;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 2rem;
  opacity: .7;
  transition: opacity .15s;
}
.article-back:hover { opacity: 1; }

.article-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: .75rem;
}
.article-meta {
  font-size: .78rem;
  color: rgba(255,255,255,0.35);
  display: flex;
  gap: .4rem;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Prose */
.article-body { color: rgba(255,255,255,0.80); line-height: 1.8; }
.article-body p  { margin-bottom: 1.25rem; font-size: .97rem; }
.article-body h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 600;
  color: #fff;
  margin: 2.2rem 0 .75rem;
  line-height: 1.2;
}
.article-body ul {
  margin: 0 0 1.25rem 1.25rem;
  padding: 0;
}
.article-body li {
  font-size: .97rem;
  margin-bottom: .45rem;
}
.article-body strong { color: #fff; font-weight: 600; }

.article-footnotes {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.article-footnotes ol {
  margin: 0 0 0 1.25rem;
  padding: 0;
}
.article-footnotes li {
  font-size: .75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  margin-bottom: .4rem;
}
.article-footnotes li a {
  color: rgba(255,255,255,0.35);
}
sup a {
  font-size: .65rem;
  color: var(--amber);
  text-decoration: none;
  vertical-align: super;
  line-height: 0;
}
sup a:hover {
  text-decoration: underline;
}

.article-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}
.article-footer-eyebrow {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .5rem;
}
.article-footer h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.2rem, 3.5vw, 1.6rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: .5rem;
}
.article-footer p {
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
}
.article-footer-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
