/* ====================================
   news-detail.css — Elegant & Tipografico
   ==================================== */

/* --- Hero Section --- */
.news-hero {
  padding: 4rem 1rem 2rem;
  background: var(--gradient-secondary);
}
.news-hero .news-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
}
.news-hero .news-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}
.hero-divider {
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border: none;
  margin: 0 auto;
  border-radius: 2px;
}

/* --- Article Section --- */
.article-section {
  background: var(--body-bg);
  padding: 3rem 0;
}
.article-section p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}
.article-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 3rem 0 1rem;
  position: relative;
}
.article-section h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--gradient-primary);
  margin-top: 0.5rem;
  border-radius: 2px;
}

/* --- Lists --- */
.article-section ul {
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}
.article-section ul li {
  margin-bottom: 0.75rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-secondary);
}

/* --- Callout Box --- */
.callout {
  background: rgba(211,84,0,0.08);
  border-left: 5px solid var(--secondary-color);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  border-radius: 0.5rem;
}
.callout h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}
.callout ul {
  padding-left: 1.25rem;
}
.callout ul li {
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-secondary);
}

/* --- Share Buttons --- */
.share-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}
.share-btn {
  font-family: 'Press Start 2P', cursive;
  font-size: 0.85rem;
  text-transform: uppercase;
  background: var(--gradient-primary);
  border: none;
  padding: 0.6rem 1.2rem;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(211,84,0,0.4);
}

/* --- Utility --- */
.footer-space {
  height: 4rem;
}
