/* ══ AUTHORITY ARTICLES — Clean Reading Layout ══ */

/* Article hero */
.article-hero {
  background: var(--espresso);
  padding: 160px 64px 80px;
  position: relative;
  overflow: hidden;
}
.article-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 40%, rgba(184,148,42,.06) 0%, transparent 60%);
  pointer-events: none;
}
.article-hero-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.article-category {
  font-size: .58rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}
.article-category a {
  color: var(--gold);
  text-decoration: none;
}
.article-category a:hover {
  text-decoration: underline;
}
.article-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--warm-cream);
  margin-bottom: 24px;
}
.article-h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.article-excerpt {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(245,239,230,.55);
  max-width: 640px;
  margin-bottom: 32px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.article-meta-item {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245,239,230,.3);
}
.article-meta-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(184,148,42,.35);
}

/* Article body */
.article-body {
  background: var(--light-cream);
  padding: 80px 64px;
}
.article-content {
  max-width: 780px;
  margin: 0 auto;
}
.article-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--espresso);
  margin: 56px 0 22px;
}
.article-content h2:first-child {
  margin-top: 0;
}
.article-content h2 em {
  font-style: italic;
  color: var(--gold);
}
.article-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--espresso);
  margin: 36px 0 14px;
}
.article-content p {
  font-size: 1.02rem;
  line-height: 1.95;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.article-content p strong {
  font-weight: 500;
  color: var(--text-main);
}
.article-content ul, .article-content ol {
  margin: 0 0 24px 24px;
  color: var(--text-muted);
}
.article-content li {
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 8px;
}
.article-content li strong {
  font-weight: 500;
  color: var(--text-main);
}

/* Expert insight callout */
.expert-insight {
  background: var(--espresso);
  border-left: 3px solid var(--gold);
  padding: 28px 32px;
  margin: 36px 0;
}
.expert-insight p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  color: var(--warm-cream);
  line-height: 1.65;
  margin-bottom: 8px;
}
.expert-insight .expert-attr {
  font-family: 'Barlow', sans-serif;
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
  margin: 0;
}

/* Data table */
.article-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: .92rem;
}
.article-table th {
  background: var(--espresso);
  color: var(--warm-cream);
  font-weight: 400;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 14px 18px;
  text-align: left;
}
.article-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--gold-dim);
  color: var(--text-muted);
  line-height: 1.6;
}
.article-table td strong {
  font-weight: 500;
  color: var(--text-main);
}
.article-table tr:hover td {
  background: rgba(184,148,42,.04);
}

/* Divider */
.article-divider {
  height: 1px;
  background: var(--gold-dim);
  margin: 48px 0;
}

/* Article FAQ */
.article-faq {
  background: var(--warm-cream);
  padding: 80px 64px;
  border-top: 1px solid var(--gold-dim);
}
.article-faq-inner {
  max-width: 780px;
  margin: 0 auto;
}

/* Author bio card */
.author-card {
  background: var(--espresso);
  padding: 40px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin: 0;
}
.author-card-img {
  width: 90px;
  height: 90px;
  border-radius: 0;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
  filter: brightness(0.9) saturate(0.8);
}
.author-card-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--warm-cream);
  margin: 0 0 4px;
}
.author-card-info .author-role {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.author-card-info p {
  font-size: .85rem;
  line-height: 1.75;
  color: rgba(245,239,230,.45);
  margin: 0 0 14px;
}
.author-card-link {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}
.author-card-link:hover {
  color: var(--gold-light);
}

/* Related articles / CTA section */
.article-cta-section {
  background: var(--deep-brown);
  padding: 80px 64px;
}
.article-cta-inner {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.article-cta-card {
  padding: 32px 28px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(184,148,42,.12);
  transition: all .3s;
}
.article-cta-card:hover {
  background: rgba(184,148,42,.05);
  border-color: rgba(184,148,42,.35);
}
.article-cta-card .cta-label {
  font-size: .58rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.article-cta-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--warm-cream);
  margin-bottom: 10px;
  line-height: 1.35;
}
.article-cta-card p {
  font-size: .82rem;
  line-height: 1.7;
  color: rgba(245,239,230,.4);
  margin-bottom: 16px;
}
.article-cta-card a {
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}
.article-cta-card a:hover {
  color: var(--gold-light);
}

/* Articles hub page */
.articles-hub-hero {
  background: var(--espresso);
  padding: 160px 64px 80px;
}
.articles-hub-inner {
  max-width: 900px;
  margin: 0 auto;
}
.articles-list {
  background: var(--light-cream);
  padding: 80px 64px;
}
.articles-list-inner {
  max-width: 900px;
  margin: 0 auto;
}
.article-card {
  display: block;
  padding: 40px 0;
  border-bottom: 1px solid var(--gold-dim);
  text-decoration: none;
  transition: all .3s;
}
.article-card:first-child {
  padding-top: 0;
}
.article-card:hover h2 {
  color: var(--gold);
}
.article-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color .3s;
}
.article-card p {
  font-size: .92rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.article-card-meta {
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(107,79,58,.45);
}

/* Responsive */
@media (max-width: 768px) {
  .article-hero { padding: 120px 24px 56px; }
  .article-body { padding: 56px 24px; }
  .article-faq { padding: 56px 24px; }
  .article-cta-section { padding: 56px 24px; }
  .article-cta-inner { grid-template-columns: 1fr; }
  .author-card { flex-direction: column; padding: 28px 24px; }
  .author-card-img { width: 72px; height: 72px; }
  .articles-hub-hero { padding: 120px 24px 56px; }
  .articles-list { padding: 56px 24px; }
}
