/* ── ARTÍCULO INDIVIDUAL ── */

/* HERO */
.article-hero {
  background: linear-gradient(135deg, #d46a3a 0%, #7a2d5a 100%);
  padding-bottom: 0;
}

.article-hero-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  text-align: center;
}

.article-tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.15);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 1.4rem;
}

.article-hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 300;
  color: white;
  line-height: 1.2;
  margin-bottom: 1.4rem;
}

.article-hero-intro {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}

.article-meta-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
}

/* CUERPO DEL ARTÍCULO */
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 2rem 80px;
}

.article-lead {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #7a5068;
  line-height: 1.9;
  border-left: 3px solid #d46a3a;
  padding-left: 1.4rem;
  margin-bottom: 3rem;
}

.article-body p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: #7a5068;
  line-height: 1.9;
  margin-bottom: 1.6rem;
}

.article-body h2 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 400;
  color: #7a2d5a;
  line-height: 1.25;
  margin-top: 3.5rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 0.5px solid rgba(122,45,90,0.12);
}

.article-body h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #7a2d5a;
  margin-top: 2.2rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.article-body h3::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #d46a3a;
  flex-shrink: 0;
}

.article-body blockquote,
.article-quote {
  background: #faeae0;
  border-left: 3px solid #d46a3a;
  border-radius: 0 12px 12px 0;
  padding: 1.4rem 1.8rem;
  margin: 2.5rem 0;
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: #7a2d5a;
  line-height: 1.6;
}

.article-callout {
  background: #f0d0e4;
  border-radius: 14px;
  padding: 1.6rem 2rem;
  margin: 2.5rem 0;
}

.article-callout p {
  font-size: 0.9rem;
  color: #7a2d5a;
  line-height: 1.75;
  margin-bottom: 0;
}

.article-callout strong {
  font-weight: 600;
  color: #7a2d5a;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 3rem 0;
}

.ornament-line { width: 60px; height: 0.5px; background: rgba(122,45,90,0.28); }
.ornament-dot { width: 5px; height: 5px; border-radius: 50%; background: #d46a3a; }

/* CTA DENTRO DEL ARTÍCULO */
.article-cta {
  background: #7a2d5a;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  margin: 3rem 0 0;
}

.article-cta h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: white;
  margin-bottom: 0.8rem;
}

.article-cta h3::before { display: none; }

.article-cta p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.8rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 40px;
  background: #d46a3a;
  color: white;
  transition: all 0.25s;
}

.btn-primary:hover { background: #c05a2a; transform: translateY(-2px); }

.btn-secondary {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 40px;
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.25s;
}

.btn-secondary:hover { border-color: rgba(255,255,255,0.55); color: white; }

/* CARD DE AUTOR */
.author-card {
  background: #fbf6f1;
  border: 0.5px solid rgba(122,45,90,0.12);
  border-radius: 14px;
  padding: 1.8rem 2rem;
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  margin-top: 3rem;
}

.author-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #faeae0;
  border: 2px solid #d46a3a;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #d46a3a;
  overflow: hidden;
}

.author-avatar img { width: 100%; height: 100%; object-fit: cover; }

.author-info h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #7a2d5a;
  margin-bottom: 0.2rem;
}

.author-info span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  color: #d46a3a;
  font-weight: 400;
  display: block;
  margin-bottom: 0.5rem;
}

.author-info p {
  font-size: 0.8rem;
  color: #7a5068;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ARTÍCULOS RELACIONADOS */
.related-section {
  background: #fbf6f1;
  border-top: 0.5px solid rgba(122,45,90,0.12);
  padding: 60px 2rem;
}

.related-inner { max-width: 720px; margin: 0 auto; }

.related-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a3a6a;
  margin-bottom: 0.8rem;
  font-weight: 400;
}

.related-title {
  font-family: 'Nunito', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: #7a2d5a;
  margin-bottom: 2rem;
}

.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.related-card {
  border: 0.5px solid rgba(122,45,90,0.12);
  border-radius: 12px;
  padding: 1.4rem 1.6rem;
  background: #fbf6f1;
  text-decoration: none;
  transition: border-color 0.25s, transform 0.25s;
  display: block;
}

.related-card:hover { border-color: #d46a3a; transform: translateY(-2px); }

.related-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: #8a3a6a;
  background: #f0d0e4;
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 0.7rem;
}

.related-card h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #7a2d5a;
  line-height: 1.35;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .article-body { padding: 40px 1.5rem 60px; }
  .related-grid { grid-template-columns: 1fr; }
  .author-card { flex-direction: column; }
}
