/* ═══════════════════════════════════════════════════
   UNENTE CHILD — Sistema Visual v2
   Vigente desde 30 abril 2026
   ═══════════════════════════════════════════════════ */

:root {
    --bg:        #F8F8F7;
    --bg-alt:    #F1F1EC;
    --bg-mid:    #EAEAE5;
    --bg-w:      #FFFFFF;
    --cta-bg:    #2EE59D;
    --text:      #2A2A2A;
    --muted:     rgba(42,42,42,0.7);
    --cta:       #2EE59D;
    --cta-txt:   #2A2A2A;
    --accent:    #FF6B35;
    --acc2:      #FF6B35;
    --acc2-soft: rgba(255,107,53,0.12);
    --paper:     #FAFAFA;
    --rule:      rgba(42,42,42,0.12);
    --border:    rgba(42,42,42,0.08);
    --fh: 'Familjen Grotesk', sans-serif;
    --fb: 'IBM Plex Sans', sans-serif;
    --fm: 'JetBrains Mono', ui-monospace, monospace;
    --pad:   clamp(18px, 5vw, 48px);
    --wide:  1200px;
    --wrap:  720px;
    --prose: 680px;
    --r: 12px;
    --ease: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    background: var(--bg); color: var(--text);
    font-family: var(--fb); line-height: 1.6;
    overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* SKIP LINK */
.skip-link {
    position: absolute; top: -100%; left: 16px;
    background: var(--text); color: #ffffff;
    padding: 8px 18px; border-radius: 0 0 var(--r) var(--r);
    font-family: var(--fh); font-size: .875rem; font-weight: 700;
    z-index: 9999; text-decoration: none;
    transition: top .15s ease;
}
.skip-link:focus { top: 0; }

:focus-visible { outline: 2px solid var(--text); outline-offset: 3px; border-radius: 3px; }
button:focus-visible { outline: 2px solid var(--text); outline-offset: 3px; }
input:focus-visible  { outline: 2px solid var(--text); outline-offset: 3px; }

/* ═══════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════ */
.nav {
    position: sticky; top: 0; z-index: 200;
    background: rgba(248,248,247,0.94);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 2px solid var(--text);
}
.nav-in {
    display: flex; align-items: center; justify-content: space-between;
    height: 88px; max-width: var(--wide); margin: 0 auto; padding: 0 var(--pad);
}
.logo { font-family: var(--fh); font-size: 1.8rem; letter-spacing: -0.03em; color: var(--text); }
.logo b    { font-weight: 700; }
.logo span { font-weight: 400; }

.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-item a {
    display: block; font-family: var(--fh); font-size: .95rem; font-weight: 600;
    letter-spacing: -0.01em; color: var(--text); padding: 6px 14px;
    border-radius: 6px; transition: color var(--ease);
}
.nav-item a:hover { color: var(--text); }
.nav-item a:not(.btn-pill):not(.active):hover::after,
.nav-item a.active::after {
    content: ''; position: absolute; bottom: -1px; left: 14px; right: 14px;
    height: 2px; background: var(--cta); border-radius: 2px 2px 0 0;
}

.btn-pill {
    background: transparent !important; color: var(--text) !important;
    padding: 10px 24px !important; border-radius: 100px !important;
    font-family: var(--fh) !important; font-size: .875rem !important; font-weight: 600;
    border: 1.5px solid var(--text) !important;
    transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
    margin-left: 8px; display: inline-flex !important; align-items: center; gap: 8px;
}
.btn-pill:hover {
    background: var(--text) !important; color: var(--bg) !important;
    border-color: var(--text) !important; transform: translateY(-1px);
}
.nav-item .btn-pill::after { display: none !important; }

.btn-pill__mark {
    height: 13px; display: inline-flex; align-items: center; gap: 3px;
    flex-shrink: 0; transition: transform 0.2s ease;
}
.btn-pill__mark-bar { display: block; width: 2px; height: 100%; background: currentColor; }
.btn-pill__mark-chevron {
    font-family: var(--fm); font-weight: 700; color: currentColor; font-size: 13px;
    line-height: 1; display: inline-flex; align-items: center; margin-top: -1px;
}
.btn-pill:hover .btn-pill__mark { transform: translateX(3px); }

.nav-soon span {
    display: block; font-family: var(--fh); font-size: .95rem; font-weight: 600;
    letter-spacing: -0.01em; color: var(--muted); padding: 6px 14px;
    opacity: .4; cursor: default; user-select: none;
}

.hbg { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hbg span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

/* ═══════════════════════════════════════════════════
   ANN-BAR (TICKER)
   ═══════════════════════════════════════════════════ */
.ann-bar {
    width: 100%; height: 38px; background: var(--bg); border-bottom: 2px solid var(--text);
    display: flex; align-items: center; overflow: hidden;
}
.ann-wrap { width: 100%; overflow: hidden; display: flex; align-items: center; }
.ann-track {
    display: flex; align-items: center; white-space: nowrap;
    animation: ticker-scroll 28s linear infinite; will-change: transform;
}
.ann-track:hover { animation-play-state: paused; }
.ann-block {
    display: inline-flex; align-items: center; gap: 0; font-family: var(--fh);
    font-size: .82rem; font-weight: 500; letter-spacing: -0.01em; color: var(--text);
}
.ann-sep {
    display: inline-block; width: 3px; height: 16px; background: var(--acc2);
    margin: 0 20px; flex-shrink: 0; vertical-align: middle;
}
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@media (max-width: 768px) { .ann-track { animation-duration: 40s; } }
@media (max-width: 480px) { .ann-track { animation-duration: 44s; } }
@media (prefers-reduced-motion: reduce) { .ann-track { animation: none; } }

/* ═══════════════════════════════════════════════════
   MARCADORES
   ═══════════════════════════════════════════════════ */
.eyebrow {
    display: inline-flex; align-items: center; gap: 10px; font-family: var(--fm);
    font-weight: 600; font-size: clamp(15px, 1.9vw, 17px); letter-spacing: -0.01em;
    line-height: 1.3; color: var(--text); margin-bottom: 16px;
}
.eyebrow__mark {
    display: inline-flex; align-items: center; gap: 5px; height: 1.25em; flex-shrink: 0;
}
.eyebrow__bar { display: block; width: 3px; height: 100%; background: var(--cta); }
.eyebrow__chevron {
    font-family: var(--fm); font-weight: 700; color: var(--cta); font-size: 1.2em;
    line-height: 1; display: inline-flex; align-items: center; margin-top: -1px;
}
.eyebrow--light { color: var(--bg); margin-bottom: 12px; }
.eyebrow--light .eyebrow__bar { background: var(--cta); }
.eyebrow--light .eyebrow__chevron { color: var(--cta); }

.eyebrow__mark--inline { height: 1em; gap: 3px; margin-right: 0; }
.eyebrow__mark--inline .eyebrow__bar { width: 2px; }
.eyebrow__mark--inline .eyebrow__chevron { font-size: 1.1em; margin-top: 0; }

/* ═══════════════════════════════════════════════════
   BOTONES
   ═══════════════════════════════════════════════════ */
.btn-cta {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--cta); color: var(--cta-txt); padding: 18px 32px;
    font-family: var(--fh); font-weight: 600; font-size: 16px; border: none;
    border-radius: 100px; cursor: pointer; text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}
.btn-cta:hover { transform: translateY(-2px); background: #25d48e; }
.btn-cta:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.btn-cta__mark {
    display: inline-flex; align-items: center; gap: 3px; height: 1em;
    flex-shrink: 0; margin-left: 2px; transition: transform 0.2s ease;
}
.btn-cta__mark-bar { display: block; width: 2px; height: 100%; background: currentColor; }
.btn-cta__mark-chevron {
    font-family: var(--fm); font-weight: 700; color: currentColor; font-size: 1.1em;
    line-height: 1; display: inline-flex; align-items: center; margin-top: -1px;
}
.btn-cta:hover .btn-cta__mark { transform: translateX(3px); }

.btn-cta-outline {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: transparent; color: var(--cta); border: 2px solid var(--cta);
    border-radius: 100px; padding: 16px 32px; font-family: var(--fh); font-weight: 600;
    font-size: 16px; cursor: pointer; text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}
.btn-cta-outline:hover { background: var(--cta); color: var(--cta-txt); }

/* ═══════════════════════════════════════════════════
   FORMULARIOS
   ═══════════════════════════════════════════════════ */
.hero__form { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 16px; }
.hero__form input {
    flex: 1; min-width: 240px; max-width: 320px; padding: 16px 24px;
    border: 2px solid var(--border); background: var(--bg-w);
    font-family: var(--fb); font-size: 16px; color: var(--text); border-radius: 100px;
    transition: border-color 0.2s ease;
}
.hero__form input:focus { border-color: var(--text); outline: none; }
.hero__form input::placeholder { color: var(--muted); }

.microcopy {
    font-family: var(--fm); font-size: 13px; font-weight: 500; color: var(--muted);
    display: flex; align-items: center; gap: 8px; margin-top: 24px;
}
.microcopy--light { color: rgba(248,248,247,0.7); }

.ok {
    display: none; padding: 16px 24px; background: rgba(46,229,157,.1);
    border: 1px solid rgba(46,229,157,.28); border-radius: var(--r);
    font-family: var(--fh); font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 12px;
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer { background: var(--bg); border-top: 1px solid var(--border); margin-top: clamp(80px, 10vw, 120px); }
.footer-main {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px;
    max-width: var(--wide); margin: 0 auto; min-height: 88px; padding: 16px var(--pad);
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo { font-family: var(--fh); font-size: 1.35rem; letter-spacing: -0.02em; color: var(--text); }
.footer-logo span { font-weight: 400; }
.footer-logo b    { font-weight: 700; }
.footer-sep { width: 2px; height: 18px; background: var(--text); flex-shrink: 0; }
.footer-tagline { font-family: var(--fh); font-size: .8125rem; font-weight: 500; color: var(--muted); }
.social-links { display: flex; align-items: center; gap: 6px; }
.social-link { display: flex; align-items: center; font-family: var(--fh); font-size: .8125rem; font-weight: 600; color: var(--muted); transition: color var(--ease); }
.social-link:hover { color: var(--text); }
.social-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.social-username { font-family: var(--fh); font-size: .8125rem; font-weight: 600; color: var(--muted); margin-left: 4px; }

.footer-nav { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; list-style: none; }
.footer-nav a {
    font-family: var(--fh); font-size: .95rem; font-weight: 600; letter-spacing: -0.01em;
    color: var(--text); transition: color var(--ease); position: relative; padding-bottom: 8px;
}
.footer-nav a:hover { color: var(--text); }
.footer-nav a.active { color: var(--text); }
.footer-nav a.active::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -1px;
    height: 2px; background: var(--cta); border-radius: 2px;
}

.footer-copy {
    border-top: 2px solid var(--text); max-width: var(--wide); margin: 0 auto;
    padding: 14px var(--pad); display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-copy p { font-family: var(--fh); font-size: .72rem; font-weight: 500; color: var(--text); line-height: 1.5; margin: 0; }
.footer-legal { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-legal a {
    font-family: var(--fh); font-size: .72rem; font-weight: 500; color: var(--text);
    text-decoration: underline; text-underline-offset: 2px; transition: color var(--ease);
}
.footer-legal a:hover { color: var(--acc2); }

/* ═══════════════════════════════════════════════════
   STICKY NL — desktop only
   ═══════════════════════════════════════════════════ */
.sticky { display: none; }
@media (min-width: 768px) {
    .sticky {
        display: block; position: fixed; right: 28px; bottom: 28px; z-index: 150;
        background: var(--bg-w); border: 2px solid var(--text); border-radius: 16px;
        padding: 26px 24px 24px; width: 300px; box-shadow: 0 12px 36px rgba(0,0,0,.15);
        opacity: 0; transform: translateY(18px); pointer-events: none;
        transition: opacity .3s ease, transform .3s ease;
    }
    .sticky.on { opacity: 1; transform: translateY(0); pointer-events: auto; }
    .sticky-title { font-family: var(--fh); font-size: 1.05rem; font-weight: 600; letter-spacing: -0.01em; color: var(--text); margin-bottom: 16px; padding-right: 22px; }
    .sticky form { display: flex; flex-direction: column; gap: 10px; }
    .sticky form input {
        width: 100%; min-width: unset; padding: 14px 18px; font-size: 14px;
        border: 1.5px solid var(--border); background: var(--bg-w);
        font-family: var(--fb); color: var(--text); border-radius: 100px;
        transition: border-color 0.2s ease;
    }
    .sticky form input:focus { border-color: var(--text); outline: none; }
    .sticky .btn-cta { width: 100%; padding: 14px; font-size: 14px; justify-content: center; }
    .sticky-x {
        position: absolute; top: 16px; right: 18px; background: none; border: none;
        color: var(--muted); font-size: 1.4rem; font-family: var(--fm); line-height: 1;
        cursor: pointer; transition: color var(--ease); padding: 0;
    }
    .sticky-x:hover { color: var(--text); }
}

/* ═══════════════════════════════════════════════════
   CONTENIDO BLOG — listings, single post, archive
   ═══════════════════════════════════════════════════ */

/* Wrapper general de contenido del blog */
.blog-wrap {
    max-width: var(--wrap); margin: 0 auto;
    padding: clamp(48px, 8vw, 80px) var(--pad);
}
.blog-wrap--prose {
    max-width: var(--prose);
}

/* Header de listados (home, categoría, tag, búsqueda) */
.blog-head {
    max-width: var(--wide); margin: 0 auto;
    padding: clamp(48px, 8vw, 80px) var(--pad) clamp(32px, 5vw, 56px);
    border-bottom: 1px solid var(--border);
}
.blog-head__inner { max-width: var(--wrap); margin: 0 auto; }
.blog-head__h1 {
    font-family: var(--fh); font-weight: 500; font-size: clamp(2.4rem, 6vw, 3.6rem);
    line-height: 1.05; letter-spacing: -0.025em; color: var(--text);
    margin-bottom: 16px; text-wrap: balance;
}
.blog-head__h1 em { font-style: normal; font-weight: 700; color: var(--accent); }
.blog-head__lead {
    font-family: var(--fb); font-size: clamp(17px, 1.8vw, 19px); line-height: 1.6;
    color: var(--muted); max-width: 56ch;
}

/* Grid de cards en listados */
.posts-grid {
    max-width: var(--wide); margin: 0 auto;
    padding: clamp(48px, 6vw, 64px) var(--pad);
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 32px;
}
@media (max-width: 768px) {
    .posts-grid { grid-template-columns: 1fr; gap: 40px; }
}

.post-card { display: flex; flex-direction: column; gap: 18px; }
.post-card__media {
    width: 100%; aspect-ratio: 16 / 9; background: var(--bg-mid);
    border-radius: var(--r); overflow: hidden;
}
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.post-card:hover .post-card__media img { transform: scale(1.03); }

.post-card__cat {
    font-family: var(--fm); font-size: 12px; font-weight: 600;
    color: var(--acc2); text-transform: uppercase; letter-spacing: 0.04em;
}
.post-card__h2 {
    font-family: var(--fh); font-weight: 600; font-size: clamp(1.4rem, 2.4vw, 1.7rem);
    line-height: 1.2; letter-spacing: -0.02em; color: var(--text); text-wrap: balance;
}
.post-card__h2 a { color: inherit; transition: color .2s ease; }
.post-card__h2 a:hover { color: var(--accent); }
.post-card__excerpt {
    font-family: var(--fb); font-size: 1rem; line-height: 1.6; color: var(--muted);
}
.post-card__meta {
    font-family: var(--fm); font-size: 12px; font-weight: 500; color: var(--muted);
    display: flex; gap: 14px; align-items: center; margin-top: auto;
}

/* SINGLE POST */
.post-hero {
    max-width: var(--wide); margin: 0 auto;
    padding: clamp(48px, 7vw, 72px) var(--pad) clamp(32px, 5vw, 48px);
}
.post-hero__inner { max-width: var(--prose); margin: 0 auto; }
.post-hero__cat {
    display: inline-flex; font-family: var(--fm); font-size: 12px; font-weight: 600;
    color: var(--acc2); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 20px;
}
.post-hero__h1 {
    font-family: var(--fh); font-weight: 500; font-size: clamp(2.2rem, 5.5vw, 3.4rem);
    line-height: 1.05; letter-spacing: -0.025em; color: var(--text);
    margin-bottom: 24px; text-wrap: balance;
}
.post-hero__h1 em { font-style: normal; font-weight: 700; color: var(--accent); }
.post-hero__lead {
    font-family: var(--fb); font-size: clamp(17px, 1.7vw, 20px); line-height: 1.6;
    color: var(--muted); margin-bottom: 32px;
}
.post-hero__meta {
    font-family: var(--fm); font-size: 13px; font-weight: 500; color: var(--muted);
    display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
}
.post-hero__meta a { color: var(--text); border-bottom: 1px solid var(--border); transition: border-color var(--ease); }
.post-hero__meta a:hover { border-bottom-color: var(--text); }

.post-featured {
    max-width: var(--wide); margin: 0 auto clamp(48px, 6vw, 72px);
    padding: 0 var(--pad);
}
.post-featured__img {
    width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
    background: var(--bg-mid); border-radius: var(--r);
}

.post-content {
    max-width: var(--prose); margin: 0 auto;
    padding: 0 var(--pad) clamp(48px, 6vw, 80px);
    font-family: var(--fb); font-size: 1.0625rem; line-height: 1.75; color: var(--text);
}
.post-content > * + * { margin-top: 1.4em; }
.post-content h2 {
    font-family: var(--fh); font-weight: 700; font-size: clamp(1.6rem, 3vw, 2rem);
    line-height: 1.2; letter-spacing: -0.02em; color: var(--text);
    margin-top: 2.2em; margin-bottom: 0.6em;
}
.post-content h3 {
    font-family: var(--fh); font-weight: 700; font-size: clamp(1.25rem, 2.2vw, 1.5rem);
    line-height: 1.25; letter-spacing: -0.015em; color: var(--text);
    margin-top: 1.8em; margin-bottom: 0.5em;
}
.post-content p { margin-bottom: 1.4em; }
.post-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; transition: opacity var(--ease); }
.post-content a:hover { opacity: 0.7; }
.post-content strong { color: var(--text); font-weight: 600; }
.post-content em { font-style: italic; }
.post-content blockquote {
    border-left: 3px solid var(--cta);
    padding: 4px 0 4px 20px; margin: 2em 0;
    font-family: var(--fh); font-weight: 500; font-size: 1.15em;
    line-height: 1.4; color: var(--text);
}
.post-content ul, .post-content ol {
    margin: 1.4em 0 1.4em 1.5em; list-style: revert;
}
.post-content li { margin-bottom: 0.5em; }
.post-content img {
    width: 100%; height: auto; border-radius: var(--r);
    background: var(--bg-mid); margin: 1.8em 0;
}
.post-content code {
    font-family: var(--fm); font-size: 0.9em; background: var(--bg-alt);
    padding: 2px 6px; border-radius: 4px;
}
.post-content figure { margin: 1.8em 0; }
.post-content figcaption {
    font-family: var(--fm); font-size: 13px; color: var(--muted);
    margin-top: 8px; text-align: center;
}

/* CAJA AUTORA al final del post */
.post-author {
    max-width: var(--prose); margin: 0 auto;
    padding: 32px var(--pad); border-top: 1px solid var(--border);
}
.post-author__inner { display: flex; gap: 20px; align-items: flex-start; }
.post-author__avatar {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--bg-mid); flex-shrink: 0; overflow: hidden;
}
.post-author__avatar img { width: 100%; height: 100%; object-fit: cover; }
.post-author__name {
    font-family: var(--fh); font-weight: 600; font-size: 1rem;
    color: var(--text); margin-bottom: 6px;
}
.post-author__bio {
    font-family: var(--fb); font-size: 14px; line-height: 1.6; color: var(--muted);
}

/* PREFOOTER (CTA newsletter al final del post) */
.prefooter { background: var(--text); padding: clamp(80px,12vw,140px) 0; margin-top: clamp(48px, 6vw, 80px); }
.prefooter__inner { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); text-align: left; }
.prefooter__h2 {
    font-family: var(--fh); font-weight: 500; font-size: clamp(2rem, 4.5vw, 2.8rem);
    line-height: 1.1; letter-spacing: -0.025em; color: var(--bg); margin-bottom: 14px; text-wrap: balance;
}
.prefooter__h2 em { font-style: normal; font-weight: 700; color: var(--accent); }
.prefooter__lead { font-family: var(--fb); font-size: 1.0625rem; line-height: 1.55; color: rgba(248,248,247,0.75); margin-bottom: 40px; max-width: 55ch; }

.prefooter__form { display: flex; gap: 8px; justify-content: flex-start; flex-wrap: wrap; }
.prefooter__form input {
    flex: 1; min-width: 220px; max-width: 340px; padding: 16px 24px;
    border: 1px solid #4D4D4D; background: #3A3A3A; font-family: var(--fb);
    font-size: 16px; color: var(--bg); border-radius: 100px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}
.prefooter__form input::placeholder { color: rgba(248,248,247,0.45); }
.prefooter__form input:focus { background: #444; border-color: var(--bg); outline: none; }

.ok-cta {
    display: none; padding: 16px 24px; background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12); border-radius: var(--r);
    font-family: var(--fh); font-size: 1rem; font-weight: 600; color: var(--bg); margin-top: 16px;
}

.prefooter :focus-visible { outline-color: var(--bg); }

/* PAGINACIÓN */
.pagination {
    max-width: var(--wide); margin: 0 auto;
    padding: clamp(32px, 5vw, 56px) var(--pad);
    display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
}
.pagination a, .pagination span {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 44px; height: 44px; padding: 0 16px;
    border: 1.5px solid var(--border); border-radius: 8px;
    font-family: var(--fh); font-size: .9rem; font-weight: 600; color: var(--text);
    transition: border-color var(--ease), background var(--ease);
}
.pagination a:hover { border-color: var(--text); }
.pagination .current {
    background: var(--text); color: var(--bg); border-color: var(--text);
}

/* RESPONSIVE NAV */
@media (max-width: 600px) {
    .hbg { display: flex; }
    .nav-list { display: none; }
    .nav-list.open {
        display: flex; flex-direction: column; align-items: flex-start;
        position: fixed; top: 88px; left: 0; right: 0;
        background: var(--bg); border-bottom: 1px solid var(--border);
        padding: 20px var(--pad) 28px; gap: 4px; z-index: 199;
        box-shadow: 0 8px 24px rgba(0,0,0,.05);
    }
    .nav-list.open .nav-item a.active::after { display: none; }
    .nav-list.open .nav-item:last-child { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }

    .hero__form { flex-direction: column; align-items: stretch; }
    .hero__form input, .hero__form .btn-cta { width: 100%; min-width: unset; max-width: 100%; justify-content: center; }
    .prefooter__form { flex-direction: column; }
    .prefooter__form input, .prefooter__form .btn-cta-outline { width: 100%; min-width: unset; max-width: 100%; justify-content: center; }
    .footer-main { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
