/*
Theme Name: NiccoCFP
Theme URI: https://niccocfp.com.br
Author: NiccoCFP
Author URI: https://niccocfp.com.br
Description: Tema customizado para o blog de educação financeira NiccoCFP - Niccolò Marangon
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: niccocfp
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

:root {
  --navy: #0b1a2e;
  --navy-mid: #122040;
  --navy-light: #1a2f55;
  --gold: #c8982a;
  --gold-light: #e0b84a;
  --gold-pale: #f5e6c0;
  --cream: #faf7f0;
  --white: #ffffff;
  --gray-100: #f0eff0;
  --gray-400: #9a9baa;
  --gray-600: #5c5d6e;
  --text-dark: #1a1b2e;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ─── NAVBAR ─── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11,26,46,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,152,42,0.2);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}

.nav-brand {
  display: flex; align-items: center; gap: 14px; text-decoration: none;
}
.nav-logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900; font-size: 18px; color: var(--navy);
}
.nav-brand-text { display: flex; flex-direction: column; }
.nav-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px; font-weight: 700;
  color: var(--white); letter-spacing: 0.5px; line-height: 1.1;
}
.nav-brand-sub {
  font-size: 10px; font-weight: 500;
  color: var(--gold); letter-spacing: 2px; text-transform: uppercase;
}

.nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.5px;
  color: rgba(255,255,255,0.7); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy) !important;
  padding: 8px 20px; border-radius: 6px;
  font-weight: 600 !important; letter-spacing: 0.3px !important;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.88; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: 68px;
}

.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,152,42,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,152,42,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,152,42,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,47,85,0.8) 0%, transparent 70%);
  bottom: 0; left: -80px;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 0 5%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  width: 100%;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,152,42,0.12);
  border: 1px solid rgba(200,152,42,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 11px; font-weight: 600;
  color: var(--gold-light); letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}
.hero-tag::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-light); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  font-weight: 900; line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-title em {
  font-style: italic; color: var(--gold-light);
}

.hero-desc {
  font-size: 16px; line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin-bottom: 40px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex; gap: 16px; align-items: center;
  animation: fadeUp 0.8s 0.3s ease both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); padding: 14px 28px; border-radius: 8px;
  font-weight: 700; font-size: 14px; letter-spacing: 0.3px;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,152,42,0.35);
}

.btn-ghost {
  color: rgba(255,255,255,0.7); padding: 14px 28px;
  font-size: 14px; font-weight: 500;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }

.hero-stats {
  display: flex; gap: 40px; margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: fadeUp 0.8s 0.4s ease both;
}
.stat-item { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700; color: var(--gold-light);
}
.stat-label {
  font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,0.4); letter-spacing: 1px; text-transform: uppercase;
}

/* Hero right — featured card */
.hero-card-wrap {
  position: relative;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-featured-card {
  background: var(--navy-light);
  border: 1px solid rgba(200,152,42,0.2);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}

.hero-card-img {
  width: 100%; height: 220px;
  background: linear-gradient(135deg, var(--navy-mid) 0%, #1e3a6e 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 60px; letter-spacing: -2px; position: relative; overflow: hidden;
}
.hero-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--navy-light));
}

.hero-card-body { padding: 28px; }
.hero-card-category {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.hero-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700; line-height: 1.35;
  color: var(--white); margin-bottom: 14px;
}
.hero-card-excerpt {
  font-size: 13px; line-height: 1.65;
  color: rgba(255,255,255,0.5); margin-bottom: 20px;
}
.hero-card-meta {
  display: flex; align-items: center; justify-content: space-between;
}
.hero-card-author {
  display: flex; align-items: center; gap: 10px;
}
.author-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 14px; font-weight: 700; color: var(--navy);
}
.author-name {
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.8);
}
.author-date {
  font-size: 11px; color: rgba(255,255,255,0.4);
}
.read-link {
  font-size: 12px; font-weight: 600; color: var(--gold);
  text-decoration: none; letter-spacing: 0.3px;
  display: flex; align-items: center; gap: 4px;
}

.hero-card-float {
  position: absolute;
  top: -20px; right: -20px;
  background: var(--navy);
  border: 1px solid rgba(200,152,42,0.3);
  border-radius: 12px; padding: 16px 20px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.float-label { font-size: 10px; color: rgba(255,255,255,0.4); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.float-value { font-family: 'DM Mono', monospace; font-size: 18px; font-weight: 500; color: #4ade80; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── SECTION HEADER ─── */
.section-header {
  text-align: center; margin-bottom: 56px;
}
.section-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: ''; flex: 1; max-width: 48px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 700; line-height: 1.2;
  color: var(--navy);
}
.section-title.light { color: var(--white); }

/* ─── ARTICLES GRID ─── */
.articles-section {
  padding: 96px 5%; background: var(--cream);
  max-width: 100%;
}
.articles-inner { max-width: 1200px; margin: 0 auto; }

.filter-bar {
  display: flex; gap: 8px; margin-bottom: 48px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px; border-radius: 100px;
  font-size: 13px; font-weight: 500;
  border: 1.5px solid transparent; cursor: pointer;
  transition: all 0.2s; background: transparent;
  color: var(--gray-600);
  border-color: #ddd;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--navy); color: var(--white);
  border-color: var(--navy);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.article-card {
  background: var(--white);
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(11,26,46,0.12);
}
.article-card a {
  text-decoration: none;
  color: inherit;
}

.article-card.featured {
  grid-column: span 2;
  display: grid; grid-template-columns: 1fr 1fr;
}

.card-img {
  width: 100%; height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; position: relative;
  overflow: hidden;
}
.article-card.featured .card-img { height: 100%; min-height: 280px; }

.card-img-bg-1 { background: linear-gradient(135deg, #0b1a2e 0%, #1a3a6e 100%); }
.card-img-bg-2 { background: linear-gradient(135deg, #1a2e1a 0%, #2d5a2d 100%); }
.card-img-bg-3 { background: linear-gradient(135deg, #2e1a1a 0%, #5a2d2d 100%); }
.card-img-bg-4 { background: linear-gradient(135deg, #1a1a2e 0%, #3a2d6e 100%); }
.card-img-bg-5 { background: linear-gradient(135deg, #2e2a1a 0%, #6e5a1a 100%); }

.card-body { padding: 24px; }
.article-card.featured .card-body {
  display: flex; flex-direction: column; justify-content: center;
  padding: 36px;
}

.card-category {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700; line-height: 1.35;
  color: var(--navy); margin-bottom: 12px;
}
.article-card.featured .card-title { font-size: 24px; }

.card-excerpt {
  font-size: 13px; line-height: 1.65;
  color: var(--gray-600); margin-bottom: 20px;
}
.card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--gray-100);
}
.card-meta {
  font-size: 11px; color: var(--gray-400);
  display: flex; align-items: center; gap: 12px;
}
.card-meta span { display: flex; align-items: center; gap: 4px; }
.read-time {
  font-size: 11px; font-weight: 600;
  color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px;
  display: flex; align-items: center; gap: 4px;
}

/* ─── NEWSLETTER BAND ─── */
.newsletter-band {
  background: var(--navy);
  padding: 80px 5%;
  position: relative; overflow: hidden;
}
.newsletter-band::before {
  content: 'NICCO NEWS';
  position: absolute; right: 5%; top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 120px; font-weight: 900;
  color: rgba(200,152,42,0.06);
  white-space: nowrap; pointer-events: none; user-select: none;
}

.newsletter-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 1;
}

.newsletter-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,152,42,0.15);
  border: 1px solid rgba(200,152,42,0.3);
  border-radius: 100px; padding: 6px 16px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}

.newsletter-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 700; line-height: 1.2;
  color: var(--white); margin-bottom: 16px;
}
.newsletter-title em { font-style: italic; color: var(--gold-light); }

.newsletter-desc {
  font-size: 15px; line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}

.newsletter-proof {
  display: flex; align-items: center; gap: 12px;
  margin-top: 20px;
}
.proof-avatars { display: flex; }
.proof-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--navy);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  margin-left: -8px; display: flex; align-items: center;
  justify-content: center; font-size: 13px; font-weight: 700; color: var(--navy);
}
.proof-avatar:first-child { margin-left: 0; }
.proof-text { font-size: 12px; color: rgba(255,255,255,0.5); }
.proof-text strong { color: var(--gold-light); }

.newsletter-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: flex; gap: 12px; }
.form-input {
  flex: 1; padding: 14px 18px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 8px; color: var(--white);
  font-size: 14px; font-family: 'DM Sans', sans-serif;
  outline: none; transition: border-color 0.2s;
}
.form-input::placeholder { color: rgba(255,255,255,0.3); }
.form-input:focus { border-color: var(--gold); }
.form-note {
  font-size: 11px; color: rgba(255,255,255,0.3);
  display: flex; align-items: center; gap: 6px;
}
.form-note::before { content: '🔒'; font-size: 12px; }

/* ─── NICCO NEWS PREVIEW ─── */
.nicconews-section {
  padding: 96px 5%; background: var(--cream);
}
.nicconews-inner { max-width: 1200px; margin: 0 auto; }

.news-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; margin-top: 56px;
}

.news-card {
  background: var(--white); border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.07);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(11,26,46,0.1);
}

.news-card-header {
  background: var(--navy);
  padding: 20px 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.news-edition {
  font-family: 'Playfair Display', serif;
  font-size: 14px; font-weight: 700; color: var(--white);
}
.news-date {
  font-family: 'DM Mono', monospace;
  font-size: 12px; color: var(--gold);
}

.news-card-body { padding: 28px; }
.news-headline {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700; line-height: 1.35;
  color: var(--navy); margin-bottom: 20px;
}

.news-items { display: flex; flex-direction: column; gap: 14px; }
.news-item {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 13px; line-height: 1.55; color: var(--gray-600);
}
.news-item-num {
  font-family: 'DM Mono', monospace;
  font-size: 11px; font-weight: 500; color: var(--gold);
  min-width: 24px;
}

/* ─── ABOUT SECTION ─── */
.about-section {
  padding: 96px 5%;
  background: linear-gradient(180deg, var(--cream) 0%, #f0ece4 100%);
}
.about-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: center;
}

.about-visual { position: relative; }

.about-card {
  background: var(--navy);
  border-radius: 16px; padding: 40px;
  text-align: center;
  border: 1px solid rgba(200,152,42,0.2);
}
.about-initials {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 900; color: var(--navy);
  margin: 0 auto 16px;
}
.about-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700; color: var(--white);
  margin-bottom: 4px;
}
.about-card-role {
  font-size: 12px; color: var(--gold); letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 20px;
}

.cert-grid {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin-bottom: 20px;
}
.cert-badge {
  padding: 6px 14px; border-radius: 6px;
  background: rgba(200,152,42,0.15);
  border: 1px solid rgba(200,152,42,0.3);
  font-family: 'DM Mono', monospace;
  font-size: 11px; font-weight: 500; color: var(--gold-light);
}

.company-logos {
  display: flex; gap: 12px; justify-content: center;
}
.company-pill {
  padding: 8px 16px; border-radius: 100px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.6);
}

.about-float-card {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--white);
  border-radius: 12px; padding: 20px 28px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  text-align: center;
}
.float-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 900; color: var(--navy);
}
.float-stat-label {
  font-size: 11px; font-weight: 600; color: var(--gold);
  letter-spacing: 1px; text-transform: uppercase;
}

.about-content {}
.about-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.about-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 700; line-height: 1.2;
  color: var(--navy); margin-bottom: 24px;
}
.about-title em { font-style: italic; color: var(--gold); }

.about-text {
  font-size: 15px; line-height: 1.75;
  color: var(--gray-600); margin-bottom: 16px;
}

.about-pillars {
  display: flex; flex-direction: column; gap: 20px;
  margin-top: 32px;
}
.pillar {
  display: flex; gap: 16px; align-items: flex-start;
}
.pillar-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(200,152,42,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.pillar-title {
  font-size: 14px; font-weight: 700; color: var(--navy);
  margin-bottom: 4px;
}
.pillar-desc {
  font-size: 13px; line-height: 1.55; color: var(--gray-600);
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--navy);
  padding: 64px 5% 0;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700; color: var(--white);
  margin-top: 12px;
}
.footer-brand-sub {
  font-size: 10px; font-weight: 600; color: var(--gold);
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.4);
  max-width: 320px;
}

.footer-col-title {
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}
.footer-links {
  display: flex; flex-direction: column; gap: 12px;
}
.footer-links a {
  font-size: 13px; color: rgba(255,255,255,0.5);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 28px 0;
  display: flex; justify-content: space-between; align-items: flex-start;
  font-size: 12px; color: rgba(255,255,255,0.3);
}
.footer-disclaimer {
  font-size: 11px; color: rgba(255,255,255,0.2);
  margin-top: 8px; max-width: 700px; line-height: 1.5;
}

/* ─── SINGLE POST ─── */
.single-post-content {
  max-width: 760px;
  margin: 120px auto 60px;
  padding: 0 5%;
}
.single-post-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 24px;
}
.single-post-content p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--gray-600);
  margin-bottom: 24px;
}
.single-post-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin: 40px 0 16px;
}
.single-post-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 12px;
}
.single-post-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 24px;
  margin: 24px 0;
  background: rgba(200,152,42,0.05);
  border-radius: 0 8px 8px 0;
}
.single-post-content blockquote p {
  font-style: italic;
  color: var(--navy);
}
.single-post-content ul, .single-post-content ol {
  margin: 16px 0 24px 24px;
  color: var(--gray-600);
}
.single-post-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card-wrap { display: none; }
  .hero-stats { gap: 24px; }
  .articles-grid { grid-template-columns: 1fr; }
  .article-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 40px; }
  .news-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .site-header { padding: 0 4%; }
  .nav-links { display: none; }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── WP ADMIN BAR FIX ─── */
.admin-bar .site-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}
