/*
Theme Name: EconomíaDirecta
Theme URI: https://www.economiadirecta.es
Author: EconomíaDirecta
Author URI: https://www.economiadirecta.es
Description: Tema editorial serio y elegante para portal de finanzas personales. Sin sidebar, diseño a pantalla completa, tipografía Cormorant Garamond, interactivo con animaciones de scroll y cursor personalizado.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: economiadirecta
Tags: finance, fullwidth, no-sidebar, dark, editorial, interactive, seo, adsense
*/

/* ═══════════════════════════════════════════════
   VARIABLES
═══════════════════════════════════════════════ */
:root {
  --bg:      #f8f6f1;
  --ink:     #1a1814;
  --ink2:    #3d3a34;
  --muted:   #8a8478;
  --border:  #d8d4cc;
  --accent:  #1a3a5c;
  --accent2: #c8a84b;
  --red:     #8b2020;
  --green:   #1a5c2a;
  --surface: #f0ece4;
  --white:   #ffffff;
  --max-w:   1360px;
}

/* ═══════════════════════════════════════════════
   RESET Y BASE
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }

/* ═══════════════════════════════════════════════
   CURSOR PERSONALIZADO
═══════════════════════════════════════════════ */
.ed-cursor {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transition: transform .15s ease, background .2s;
  transform: translate(-50%, -50%);
}
.ed-cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transition: transform .35s ease, width .2s, height .2s, border-color .2s;
  transform: translate(-50%, -50%);
  opacity: 0.6;
}

/* ═══════════════════════════════════════════════
   BARRA DE PROGRESO
═══════════════════════════════════════════════ */
.read-progress {
  position: fixed; top: 0; left: 0;
  height: 3px;
  background: var(--accent2);
  width: 0%; z-index: 9999;
  transition: width .1s;
}

/* ═══════════════════════════════════════════════
   TIPOGRAFÍA
═══════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}
h1 { font-size: clamp(32px, 4vw, 56px); margin-bottom: 20px; }
h2 { font-size: 32px; margin: 40px 0 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
h3 { font-size: 24px; margin: 28px 0 12px; color: var(--accent); }
p  { margin-bottom: 20px; color: var(--ink2); }
ul, ol { margin: 0 0 20px 24px; color: var(--ink2); }
li { margin-bottom: 8px; }
strong { color: var(--ink); font-weight: 600; }
em { color: var(--accent); }
blockquote {
  border-left: 4px solid var(--accent2);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--surface);
  font-style: italic;
  color: var(--muted);
  font-size: 20px;
}
table { width: 100%; border-collapse: collapse; margin: 24px 0; }
th { background: var(--surface); color: var(--accent); font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; padding: 12px 16px; text-align: left; border-bottom: 2px solid var(--border); }
td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--ink2); }
tr:hover td { background: var(--surface); }

/* ═══════════════════════════════════════════════
   TICKER DE MERCADOS
═══════════════════════════════════════════════ */
.market-ticker {
  background: var(--ink);
  color: #aaa;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  padding: 7px 0;
  overflow: hidden;
  border-bottom: 2px solid var(--accent2);
}
.ticker-track {
  display: flex; gap: 56px;
  white-space: nowrap;
  animation: ticker-scroll 45s linear infinite;
  width: max-content;
}
@keyframes ticker-scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.ticker-item { display: flex; gap: 10px; align-items: center; }
.ticker-name { color: #666; letter-spacing: 1px; }
.ticker-up   { color: #4caf7d; }
.ticker-down { color: #e05252; }

/* ═══════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════ */
#masthead {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.site-header-inner {
  max-width: var(--max-w); margin: auto;
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.site-branding .site-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--ink); text-decoration: none;
  display: block;
}
.site-branding .site-title em { color: var(--accent); font-style: normal; border-bottom: 2px solid var(--accent2); }
.site-branding .site-description {
  font-family: 'DM Mono', monospace;
  font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--muted);
  margin-top: -2px;
}

/* ── Navegación ── */
#site-navigation ul { list-style: none; display: flex; gap: 2px; margin: 0; padding: 0; }
#site-navigation ul li a {
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  display: block; text-decoration: none;
}
#site-navigation ul li a:hover,
#site-navigation ul li.current-menu-item > a {
  color: var(--accent);
  border-bottom-color: var(--accent2);
}
#site-navigation .menu-cta > a {
  background: var(--accent); color: var(--white) !important;
  border-bottom: none !important; padding: 8px 18px !important;
}
#site-navigation .menu-cta > a:hover { background: #0f2840; }

/* ═══════════════════════════════════════════════
   AD SLOTS ADSENSE
═══════════════════════════════════════════════ */
.ad-slot {
  background: var(--surface);
  border: 1px dashed var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 10px; color: var(--border);
  letter-spacing: 2px; text-transform: uppercase;
  position: relative; margin: 24px 0;
}
.ad-slot::before {
  content: "Publicidad";
  position: absolute; top: 5px; left: 10px;
  font-size: 8px; color: var(--border); letter-spacing: 2px;
}
.ad-leaderboard { height: 90px; width: 100%; }
.ad-rectangle   { height: 250px; width: 100%; }
.ad-wrap { max-width: var(--max-w); margin: 20px auto; padding: 0 40px; }

/* ═══════════════════════════════════════════════
   LAYOUT PRINCIPAL (SIN SIDEBAR)
═══════════════════════════════════════════════ */
#primary {
  max-width: var(--max-w);
  margin: 40px auto;
  padding: 0 40px;
}
#main { width: 100%; }

/* ═══════════════════════════════════════════════
   PORTADA — HERO
═══════════════════════════════════════════════ */
.hero-block {
  display: grid;
  grid-template-columns: 1fr 1px 400px;
  gap: 0;
  min-height: 480px;
  margin-bottom: 48px;
}
.hero-divider { background: var(--border); margin: 0 40px; }
.hero-main { padding-right: 40px; display: flex; flex-direction: column; justify-content: center; }

.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before {
  content: ''; display: inline-block;
  width: 32px; height: 1px; background: var(--accent2);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -1px; margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: var(--accent); }
.hero-lead { font-size: 18px; color: var(--ink2); line-height: 1.65; margin-bottom: 24px; max-width: 560px; }
.hero-meta {
  font-family: 'DM Mono', monospace; font-size: 11px; color: var(--muted);
  display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 24px;
}
.hero-meta .author { color: var(--accent); font-weight: 500; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: var(--white);
  font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 14px 28px; border: none; cursor: pointer;
  transition: background .2s, transform .2s; width: fit-content;
  text-decoration: none;
}
.btn-primary:hover { background: #0f2840; transform: translateY(-1px); color: var(--white); }
.btn-arrow { transition: transform .2s; display: inline-block; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.hero-side { display: flex; flex-direction: column; gap: 0; }
.hero-aside-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: padding-left .2s;
}
.hero-aside-item:first-child { padding-top: 0; }
.hero-aside-item:last-child { border-bottom: none; }
.hero-aside-item:hover { padding-left: 8px; }
.aside-cat {
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--accent2); margin-bottom: 6px;
}
.aside-title {
  font-family: 'Cormorant Garamond', serif; font-size: 17px;
  font-weight: 600; line-height: 1.3; color: var(--ink);
  margin-bottom: 5px; transition: color .2s;
}
.hero-aside-item:hover .aside-title { color: var(--accent); }
.aside-meta { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--muted); }

/* ═══════════════════════════════════════════════
   SEPARADOR DE SECCIÓN
═══════════════════════════════════════════════ */
.section-rule {
  display: flex; align-items: center; gap: 20px;
  margin: 40px 0 32px;
}
.section-rule::before, .section-rule::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.section-rule-label {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 4px; text-transform: uppercase; color: var(--muted); white-space: nowrap;
}

/* ═══════════════════════════════════════════════
   GRID DE ARTÍCULOS (portada)
═══════════════════════════════════════════════ */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid var(--ink);
  border-left: 1px solid var(--border);
  margin-bottom: 40px;
}
.post-card {
  padding: 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background .2s;
  position: relative; overflow: hidden;
}
.post-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px; background: var(--accent2);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.post-card:hover { background: var(--surface); }
.post-card:hover::after { transform: scaleX(1); }
.post-card .post-num {
  font-family: 'Cormorant Garamond', serif; font-size: 48px;
  font-weight: 700; color: var(--border); line-height: 1;
  margin-bottom: 12px; transition: color .2s;
}
.post-card:hover .post-num { color: var(--accent2); }
.post-card .post-cat {
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 10px;
}
.post-card .post-title {
  font-family: 'Cormorant Garamond', serif; font-size: 20px;
  font-weight: 600; line-height: 1.3; margin-bottom: 10px;
  color: var(--ink); transition: color .2s;
}
.post-card:hover .post-title { color: var(--accent); }
.post-card .post-title a { color: inherit; text-decoration: none; }
.post-card .post-excerpt { font-size: 15px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.post-card .post-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'DM Mono', monospace; font-size: 10px; color: var(--muted);
  padding-top: 12px; border-top: 1px solid var(--border);
}
.post-meta-read { color: var(--accent); letter-spacing: 1px; }

.post-card .post-thumbnail { height: 160px; overflow: hidden; margin: -28px -28px 20px; }
.post-card .post-thumbnail img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.post-card:hover .post-thumbnail img { transform: scale(1.04); }

/* ═══════════════════════════════════════════════
   ARTÍCULO INDIVIDUAL (single.php) — FULL WIDTH
═══════════════════════════════════════════════ */
.single-article { max-width: 780px; margin: 0 auto; }

.breadcrumb {
  font-family: 'DM Mono', monospace; font-size: 11px; color: var(--muted);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 6px; }

.article-cat-tag {
  display: inline-block;
  background: rgba(26,58,92,0.08); color: var(--accent);
  font-family: 'DM Mono', monospace; font-size: 10px;
  font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 12px; margin-bottom: 16px;
}

.article-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.5px; margin-bottom: 20px;
}
.article-subtitle {
  font-size: 20px; color: var(--muted);
  font-style: italic; font-family: 'Cormorant Garamond', serif;
  margin-bottom: 24px; line-height: 1.5;
}
.article-meta {
  display: flex; flex-wrap: wrap; gap: 20px;
  font-family: 'DM Mono', monospace; font-size: 11px; color: var(--muted);
  padding: 16px 0; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); margin-bottom: 36px;
}
.article-meta .author-name { color: var(--accent); font-weight: 500; }
.update-badge {
  background: rgba(26,92,42,0.1); color: var(--green);
  padding: 2px 8px; font-size: 10px; font-weight: 700; letter-spacing: 1px;
}

.post-featured-image { width: 100%; height: 420px; object-fit: cover; margin-bottom: 36px; }

.toc-box {
  background: var(--surface); border: 1px solid var(--border);
  padding: 22px 26px; margin-bottom: 36px;
}
.toc-box h4 {
  font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 14px; color: var(--accent);
  border: none; padding: 0; font-weight: 500;
}
.toc-box ol { margin: 0 0 0 18px; }
.toc-box li { margin-bottom: 6px; font-size: 15px; }
.toc-box a { color: var(--muted); text-decoration: none; }
.toc-box a:hover { color: var(--accent); }

/* Callouts */
.callout {
  background: var(--surface); border-left: 4px solid var(--accent2);
  padding: 18px 22px; margin: 28px 0;
}
.callout-title {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase;
  font-weight: 500; margin-bottom: 8px; color: var(--accent2);
}
.callout p { margin: 0; color: var(--muted); font-size: 16px; }
.callout-green { border-color: var(--green); }
.callout-green .callout-title { color: var(--green); }
.callout-red { border-color: var(--red); }
.callout-red .callout-title { color: var(--red); }

/* Caja autor */
.author-bio-box {
  background: var(--surface); border: 1px solid var(--border);
  padding: 24px; margin-top: 48px;
  display: flex; gap: 18px; align-items: flex-start;
}
.author-avatar { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.author-bio-name { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 700; margin-bottom: 2px; }
.author-bio-role { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 1px; color: var(--accent); margin-bottom: 8px; text-transform: uppercase; }
.author-bio-text { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* ═══════════════════════════════════════════════
   ESTADÍSTICAS ANIMADAS
═══════════════════════════════════════════════ */
.stats-section {
  background: var(--ink); padding: 64px 40px; margin: 48px 0;
}
.stats-inner {
  max-width: var(--max-w); margin: auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif; font-size: 56px;
  font-weight: 700; color: var(--accent2); line-height: 1; margin-bottom: 8px;
}
.stat-label {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase; color: #555;
}

/* ═══════════════════════════════════════════════
   GUÍAS
═══════════════════════════════════════════════ */
.guides-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; background: var(--border); margin-bottom: 48px;
}
.guide-card {
  background: var(--bg); padding: 36px;
  cursor: pointer; position: relative; overflow: hidden;
  transition: background .25s;
}
.guide-card:hover { background: var(--ink); }
.guide-card:hover .guide-title { color: var(--white); }
.guide-card:hover .guide-desc  { color: #888; }
.guide-card:hover .guide-num   { color: rgba(255,255,255,0.05); }
.guide-card:hover .guide-badge { background: rgba(200,168,75,0.2); color: var(--accent2); }
.guide-num {
  font-family: 'Cormorant Garamond', serif; font-size: 100px;
  font-weight: 700; color: var(--surface);
  position: absolute; right: -10px; bottom: -20px;
  line-height: 1; transition: color .25s; pointer-events: none;
}
.guide-badge {
  display: inline-block; background: rgba(26,58,92,0.08); color: var(--accent);
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase; padding: 5px 12px; margin-bottom: 16px;
  transition: background .25s, color .25s;
}
.guide-title {
  font-family: 'Cormorant Garamond', serif; font-size: 24px;
  font-weight: 700; line-height: 1.2; margin-bottom: 10px;
  color: var(--ink); transition: color .25s;
}
.guide-desc { font-size: 15px; color: var(--muted); line-height: 1.6; transition: color .25s; }

/* ═══════════════════════════════════════════════
   LISTA DE ARTÍCULOS
═══════════════════════════════════════════════ */
.article-list-header {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-bottom: 12px; border-bottom: 2px solid var(--ink); margin-bottom: 0;
}
.article-list-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; }
.article-list-link { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); }
.article-list-item {
  display: grid; grid-template-columns: 60px 1fr auto;
  gap: 24px; align-items: center;
  padding: 20px 0; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: padding-left .2s;
}
.article-list-item:hover { padding-left: 8px; }
.article-list-item:hover .ali-title { color: var(--accent); }
.ali-idx { font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 700; color: var(--border); text-align: right; line-height: 1; }
.ali-cat { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent2); margin-bottom: 4px; }
.ali-title { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 600; line-height: 1.3; color: var(--ink); transition: color .2s; }
.ali-meta { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--muted); margin-top: 4px; }
.ali-arrow { font-size: 18px; color: var(--border); transition: color .2s, transform .2s; }
.article-list-item:hover .ali-arrow { color: var(--accent); transform: translateX(4px); }

/* ═══════════════════════════════════════════════
   PAGINACIÓN
═══════════════════════════════════════════════ */
.pagination { display: flex; gap: 8px; justify-content: center; margin: 48px 0; font-family: 'DM Mono', monospace; }
.pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: var(--surface); border: 1px solid var(--border); color: var(--muted); font-size: 13px; text-decoration: none; transition: all .2s; }
.pagination .page-numbers:hover, .pagination .page-numbers.current { background: var(--accent); color: var(--white); border-color: var(--accent); }

/* ═══════════════════════════════════════════════
   NEWSLETTER
═══════════════════════════════════════════════ */
.newsletter-section { background: var(--accent); padding: 80px 40px; position: relative; overflow: hidden; margin: 48px 0 0; }
.newsletter-section::before { content: '€'; position: absolute; right: -60px; top: -80px; font-family: 'Cormorant Garamond', serif; font-size: 380px; font-weight: 700; color: rgba(255,255,255,0.04); line-height: 1; pointer-events: none; }
.nl-inner { max-width: 600px; margin: auto; text-align: center; position: relative; }
.nl-tag { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--accent2); margin-bottom: 20px; }
.nl-title { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 16px; }
.nl-sub { font-size: 17px; color: rgba(255,255,255,0.6); margin-bottom: 36px; }
.nl-form { display: flex; max-width: 460px; margin: auto; }
.nl-input { flex: 1; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-right: none; color: white; padding: 14px 18px; font-family: 'Crimson Pro', serif; font-size: 16px; outline: none; }
.nl-input::placeholder { color: rgba(255,255,255,0.4); }
.nl-input:focus { background: rgba(255,255,255,0.15); }
.nl-btn { background: var(--accent2); color: var(--ink); border: none; padding: 14px 22px; font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: background .2s; white-space: nowrap; }
.nl-btn:hover { background: #e0be5a; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
#colophon { background: var(--ink); color: #666; padding: 64px 40px 24px; }
.footer-grid { max-width: var(--max-w); margin: 0 auto 48px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand-logo { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.footer-brand-logo em { color: var(--accent2); font-style: normal; }
.footer-about { font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
.footer-disclaimer { font-size: 11px; line-height: 1.6; color: #444; }
.footer-col h5 { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: #555; margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: #666; transition: color .2s; }
.footer-col ul li a:hover { color: var(--accent2); }
.site-info { max-width: var(--max-w); margin: auto; padding-top: 24px; border-top: 1px solid #222; display: flex; justify-content: space-between; font-family: 'DM Mono', monospace; font-size: 10px; color: #444; }

/* ═══════════════════════════════════════════════
   REVEAL ANIMATION
═══════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-block { grid-template-columns: 1fr; }
  .hero-divider { display: none; }
  .hero-side { border-top: 1px solid var(--border); padding-top: 28px; margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; }
  .posts-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  body { font-size: 16px; cursor: auto; }
  .ed-cursor, .ed-cursor-ring { display: none; }
  #site-navigation { display: none; }
  #primary { padding: 0 20px; }
  .ad-wrap { padding: 0 20px; }
  .posts-grid { grid-template-columns: 1fr; }
  .guides-grid { grid-template-columns: 1fr; }
  .hero-side { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats-section, .newsletter-section { padding: 48px 20px; }
  .nl-form { flex-direction: column; }
  .nl-input { border-right: 1px solid rgba(255,255,255,0.2); }
  #colophon { padding: 48px 20px 20px; }
}
