:root{
  --moon:#6F9A94;--moon-dark:#4F7A74;--moon-deeper:#2F343E;
  --moon-light:#EAF2F0;--dawn:#D4A078;--dawn-soft:#F6E8DA;
  --text:#2F343E;--muted:#5C6370;
  --line:rgba(111,154,148,.28);--line-mid:rgba(111,154,148,.4);
  --surface:#fff;--pill:999px;
  --font:'Manrope',system-ui,sans-serif;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--font);color:var(--text);line-height:1.65;
  background:#F3E9DC;
  min-height:100vh;
}
a{color:var(--moon-dark);text-decoration:none}
a:hover{text-decoration:underline}

.nav-wrap{position:sticky;top:14px;z-index:40;display:flex;justify-content:center;padding:0 16px;pointer-events:none}
.nav{
  pointer-events:auto;display:flex;align-items:center;gap:16px;flex-wrap:wrap;justify-content:center;
  padding:10px 18px;border-radius:var(--pill);
  background:rgba(255,255,255,.92);border:1px solid var(--line);
  box-shadow:0 8px 28px rgba(47,52,62,.08);
}
.nav a{color:var(--muted);font-size:13px;font-weight:500;text-decoration:none}
.nav a:hover{color:var(--moon-deeper);text-decoration:none}
.nav a.cta{color:#fff;background:var(--moon);padding:8px 14px;border-radius:var(--pill);font-weight:600}
.nav a.cta:hover{opacity:.92}

.shell{max-width:680px;margin:0 auto;padding:36px 20px 72px}
.shell-wide{max-width:880px}

.kicker{font-size:12px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--moon-dark);margin-bottom:10px}
.blog-hero{margin-bottom:8px;padding-bottom:28px;border-bottom:1px solid var(--line)}
.page-title{font-size:clamp(1.75rem,4vw,2.35rem);line-height:1.2;color:var(--moon-deeper);margin:0 0 12px;font-weight:700}
.lead{font-size:1.1rem;color:var(--muted);margin:0;max-width:40rem;line-height:1.55}

.post-list{display:flex;flex-direction:column;gap:28px;margin:32px 0 40px}
.post-card{
  padding:28px 30px 26px;border-radius:18px;background:var(--surface);
  border:1px solid var(--line);
}
.post-kicker{font-size:12px;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:var(--moon-dark);margin:0 0 10px}
.post-title{font-size:clamp(1.25rem,2.6vw,1.5rem);line-height:1.3;margin:0 0 14px;font-weight:700}
.post-title a{color:var(--moon-deeper);text-decoration:none}
.post-title a:hover{color:var(--moon-dark);text-decoration:underline}
.post-teaser{font-size:16px;color:var(--text);line-height:1.65;margin:0 0 18px;max-width:42rem}
.post-more{font-size:14px;font-weight:600;color:var(--moon-dark);text-decoration:none}
.post-more:hover{text-decoration:underline}

/* Artículo: tipografía legible */
.prose{background:var(--surface);border:1px solid var(--line);border-radius:20px;padding:32px 28px 40px}
@media (max-width:560px){.prose{padding:24px 18px 32px}}
.prose .kicker{margin-bottom:8px}
.prose h1{font-size:clamp(1.45rem,3.5vw,1.9rem);line-height:1.25;color:var(--moon-deeper);margin:0 0 10px;font-weight:700}
.prose .meta{font-size:13px;color:var(--muted);margin:0 0 24px}
.prose h2{font-size:1.15rem;color:var(--moon-deeper);margin:28px 0 10px;font-weight:700}
.prose p{margin:0 0 16px;color:var(--text);font-size:1.05rem;line-height:1.7}
.prose ul{margin:0 0 18px;padding-left:1.2em;color:var(--text)}
.prose li{margin-bottom:10px;font-size:1.05rem;line-height:1.65}
.prose strong{font-weight:650;color:var(--moon-deeper)}
.note{
  font-size:15px;color:var(--muted);font-style:italic;margin:22px 0;
  padding:16px 18px;background:var(--dawn-soft);border-radius:14px;border:1px solid var(--line);
  line-height:1.55;
}
.cta-inline{
  margin:36px 0 8px;padding:24px 20px;border-radius:18px;text-align:center;
  background:var(--surface);border:1px solid var(--line);
}
.cta-inline p{margin:0 0 14px;color:var(--muted);font-size:15px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;padding:12px 22px;
  border-radius:var(--pill);font-size:14px;font-weight:600;font-family:inherit;border:none;
  background:var(--moon);color:#fff;text-decoration:none;
}
.btn:hover{opacity:.92;text-decoration:none}
.back{display:inline-block;font-size:14px;color:var(--muted);margin-bottom:16px}

footer{margin-top:40px;padding-top:18px;border-top:1px solid var(--line);text-align:center;font-size:12px;color:var(--muted)}
footer a{color:var(--muted)}
