/* =====================================================================
   ARTIGOS — herda main.css. Estilos de leitura premium.
   ===================================================================== */
.article-hero {
  padding-top: 11rem; padding-bottom: clamp(3rem, 7vw, 5rem);
  position: relative; overflow: hidden;
}
.article-hero::after {
  content: ''; position: absolute; left: 50%; top: 0; translate: -50% 0;
  width: 80vw; max-width: 900px; height: 380px; z-index: -1; opacity: .55;
  background: radial-gradient(circle, rgba(188,134,147,0.4), transparent 65%);
  filter: blur(20px);
}
.article-hero .wrap { max-width: 860px; }
.breadcrumb { display: flex; gap: 0.5rem; align-items: center; font-size: 0.82rem; color: var(--txt-faint); margin-bottom: 2rem; }
.breadcrumb a { color: var(--txt-soft); transition: color .3s; }
.breadcrumb a:hover { color: var(--violet-300); }
.breadcrumb svg { width: 14px; height: 14px; }
.article-hero h1 { font-size: clamp(2.6rem, 7vw, 5rem); margin: 1.2rem 0; }
.article-hero .lead { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

.article-body { padding-bottom: clamp(4rem, 9vw, 7rem); }
.article-body .wrap { max-width: 760px; }
.prose > * { margin-bottom: 1.5rem; }
.prose p { font-size: 1.08rem; color: var(--txt); line-height: 1.8; }
.prose p:first-of-type::first-letter {
  font-family: var(--font-display); font-size: 3.4rem; line-height: 0.8; float: left;
  margin: 0.35rem 0.7rem 0 0; color: var(--violet-300);
}
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 3rem 0 1rem; }
.prose h3 { font-size: 1.3rem; margin: 2rem 0 0.8rem; color: var(--txt-strong); }
.prose strong { color: var(--txt-strong); font-weight: 500; }

.callout {
  padding: 1.6rem 1.8rem; border-radius: var(--radius);
  background: var(--glass); border: 1px solid var(--glass-border);
  border-left: 3px solid var(--violet-400);
}
.callout p { margin: 0; color: var(--txt); font-style: italic; }

.symptom-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; margin: 1.5rem 0; }
.symptom {
  display: flex; align-items: center; gap: 0.8rem; padding: 1rem 1.2rem;
  background: var(--glass); border: 1px solid var(--glass-border); border-radius: 16px;
  font-size: 0.98rem; color: var(--txt); transition: border-color .4s, transform .4s;
}
.symptom:hover { border-color: var(--glass-border-strong); transform: translateX(4px); }
.symptom svg { width: 18px; height: 18px; color: var(--violet-300); flex-shrink: 0; }

.article-cta {
  margin-top: 3.5rem; padding: clamp(2rem, 5vw, 3rem); border-radius: var(--radius-lg);
  text-align: center; border: 1px solid var(--line-strong);
  background: linear-gradient(150deg, #fbeef1 0%, var(--cream-2) 60%, #f4e0e5 100%); box-shadow: var(--shadow-md);
}
.article-cta h3 { font-size: 1.6rem; margin-bottom: 0.8rem; color: var(--ink); }
.article-cta p { color: var(--txt-soft); margin-bottom: 1.6rem; }

.article-nav { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 3rem; }

@media (max-width: 600px) {
  .symptom-grid { grid-template-columns: 1fr; }
}
