/* ── Estilos para artículos del diccionario ────────────── */

.article {
  padding: 80px 0;
}

.article-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-align: center;
  margin-bottom: 16px;
}

.article h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 400;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.15;
  text-shadow: 0 0 20px rgba(215, 183, 131, 0.15);
}

.article h1 em {
  font-style: italic;
  color: var(--gold);
}

.article-lead {
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
  color: var(--muted);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
  line-height: 1.6;
  position: relative;
}

.article-lead::after {
  content: '✦';
  display: block;
  font-style: normal;
  font-size: 14px;
  color: var(--gold-dim);
  margin-top: 30px;
}

.article-content {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.9;
  color: var(--cream);
}

.article-content h2 {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--gold);
  margin-top: 56px;
  margin-bottom: 20px;
  font-weight: 500;
  border-left: 2px solid var(--gold-dim);
  padding-left: 20px;
}

.article-content p {
  margin-bottom: 24px;
  color: rgba(245, 234, 211, 0.8);
}

.article-content strong {
  color: var(--gold);
  font-weight: 500;
}

.cta-box {
  background: linear-gradient(135deg, rgba(215, 183, 131, 0.05) 0%, rgba(215, 183, 131, 0) 100%);
  border: 1px solid var(--gold-dim);
  border-radius: 32px;
  padding: 50px 40px;
  text-align: center;
  margin: 100px 0 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cta-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--cream);
  margin-bottom: 30px;
  line-height: 1.4;
}

.related {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--surface-border);
}

.related-title {
  text-align: center;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0.7;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.related-grid a {
  display: block;
  padding: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  text-decoration: none;
  color: var(--cream);
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.related-grid a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(215, 183, 131, 0.05);
  transform: translateY(-4px);
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}
