/* ── Blog Article Styles ── */

.article-header {
  background: var(--bg);
  padding: 10rem 0 5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.article-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 60% at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.article-header__inner { position: relative; z-index: 1; max-width: 780px; }
.article-header__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-faint);
  margin-bottom: 2rem;
  transition: color 0.2s ease;
}
.article-header__back:hover { color: var(--gold); }
.article-header__tag {
  display: inline-flex;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.article-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.article-header__meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--text-faint);
  font-size: 0.78rem;
  font-weight: 500;
}
.article-header__meta span { display: flex; align-items: center; gap: 0.4rem; }

.article-body {
  padding: 5rem 0 7rem;
  background: var(--bg);
}
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 6rem;
  align-items: start;
}
.article-content { max-width: 100%; }
.article-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 3rem 0 1rem;
}
.article-content h2:first-child { margin-top: 0; }
.article-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.article-content strong { color: var(--white); font-weight: 600; }
.article-content ul {
  list-style: none;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.article-content ul li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}
.article-content ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.45rem;
  top: 7px;
}
.article-pullquote {
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.75rem;
  margin: 2.5rem 0;
  background: rgba(201,168,76,0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.article-pullquote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--white) !important;
  line-height: 1.6;
  margin: 0 !important;
}
.article-cta {
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 14px;
  padding: 2.5rem;
  margin-top: 4rem;
  text-align: center;
}
.article-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.article-cta p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.75rem; }

.article-sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1.75rem;
  margin-bottom: 1.25rem;
}
.sidebar-card h4 {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.sidebar-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
.sidebar-related { display: flex; flex-direction: column; gap: 1rem; }
.sidebar-related a {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s ease;
}
.sidebar-related a:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-related a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; gap: 3rem; }
  .article-sidebar { position: static; }
  .article-header { padding: 8rem 0 3.5rem; }
}
@media (max-width: 480px) {
  .article-header h1 { font-size: 1.75rem; }
}
