/* Asentic — diseño tech-corporate claro */

:root {
  --bg: #FAFAFA;
  --surface: #FFFFFF;
  --surface-alt: #F4F6FA;
  --surface-dark: #0B1220;
  --border: #E5E9F0;
  --border-strong: #CBD5E1;
  --text: #0F172A;
  --text-soft: #475569;
  --text-mute: #94A3B8;
  --brand: #0B5FFF;
  --brand-600: #0950DB;
  --brand-50: #EAF1FF;
  --teal: #0EA5A4;
  --teal-50: #E6F7F7;
  --warn: #F59E0B;
  --good: #10B981;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .04), 0 1px 3px rgba(15, 23, 42, .04);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, .06), 0 2px 4px rgba(15, 23, 42, .04);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, .08), 0 4px 12px rgba(15, 23, 42, .04);
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --maxw: 1320px;
  --bg-soft: #F1F5F9;
  --bg-deep: #E2E8F0;
  --pad-x: clamp(20px, 4vw, 48px);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--brand); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--brand-600); }

h1, h2, h3, h4 { color: var(--text); margin: 0 0 .5em; line-height: 1.15; letter-spacing: -0.02em; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); letter-spacing: -0.025em; }
h3 { font-size: 1.25rem; letter-spacing: -0.015em; }
p  { margin: 0 0 1em; color: var(--text-soft); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 250, 250, .8);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(255, 255, 255, .85);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--text); font-weight: 700; letter-spacing: .02em; font-size: 1.05rem;
}
.logo svg { width: 28px; height: 28px; }
.nav-links {
  display: flex; align-items: center; gap: 28px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  color: var(--text-soft); font-weight: 500; font-size: .95rem;
  padding: 8px 4px; position: relative;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); }
.nav-links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 4px; right: 4px; bottom: 2px;
  height: 2px; background: var(--brand); border-radius: 2px;
}

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none; background: none; border: 0; padding: 8px; cursor: pointer;
  color: var(--text);
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 820px) {
  .nav-links {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface); border-bottom: 1px solid var(--border);
    padding: 8px var(--pad-x) 16px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .15s ease, transform .15s ease;
  }
  .nav-links.is-open {
    transform: translateY(0); opacity: 1; pointer-events: auto;
  }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--border); }
  .nav-links a[aria-current="page"]::after { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn { display: none; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; padding: 0 20px;
  font: inherit; font-weight: 600; font-size: .95rem;
  border-radius: 10px; border: 1px solid transparent; cursor: pointer;
  transition: transform .08s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--brand); color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,.15) inset, 0 6px 16px -6px rgba(11, 95, 255, .55);
}
.btn-primary:hover { background: var(--brand-600); color: #fff; }
.btn-secondary {
  background: var(--surface); color: var(--text);
  border-color: var(--border-strong);
}
.btn-secondary:hover { background: var(--surface-alt); border-color: var(--text-soft); color: var(--text); }
.btn-ghost {
  background: transparent; color: var(--text);
}
.btn-ghost:hover { background: var(--surface-alt); }
.btn-lg { height: 52px; padding: 0 24px; font-size: 1rem; border-radius: 12px; }

.icon-arrow { transition: transform .2s ease; }
.btn:hover .icon-arrow { transform: translateX(3px); }

/* ============ HERO ============ */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(64px, 10vw, 120px) 0 clamp(64px, 8vw, 96px);
}
.hero::before {
  content: ""; position: absolute; inset: -200px 0 auto 0; height: 600px;
  background:
    radial-gradient(60% 60% at 20% 20%, rgba(11, 95, 255, .08), transparent 60%),
    radial-gradient(40% 50% at 80% 10%, rgba(14, 165, 164, .08), transparent 60%);
  z-index: -1;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(to right, rgba(15, 23, 42, .04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, .04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--brand-50); color: var(--brand);
  font-size: .8rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 20px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(11, 95, 255, .15); }
.hero h1 .accent {
  background: linear-gradient(135deg, var(--brand) 0%, var(--teal) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--text-soft); max-width: 560px;
  margin: 16px 0 32px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 40px; display: flex; gap: 32px; flex-wrap: wrap;
  font-size: .9rem; color: var(--text-mute);
}
.hero-meta strong { display: block; color: var(--text); font-size: 1.6rem; font-weight: 700; line-height: 1; }
.hero-meta div { min-width: 110px; }

/* ============ SECTIONS ============ */
section { padding: clamp(64px, 8vw, 96px) 0; }
.section-head {
  max-width: 720px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center;
}
.section-head .eyebrow { margin-bottom: 16px; }
.section-head p { font-size: 1.05rem; }

/* ============ SERVICES ============ */
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
@media (max-width: 720px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative; padding: 28px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-2px);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.service-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, var(--brand), var(--teal));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .25s ease;
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--brand-50); color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-icon.is-teal { background: var(--teal-50); color: var(--teal); }
.service-card h3 { margin-bottom: 8px; }
.service-card p { margin-bottom: 16px; font-size: .95rem; }
.service-card ul {
  list-style: none; padding: 0; margin: 0 0 4px;
  display: grid; gap: 8px; font-size: .9rem; color: var(--text-soft);
}
.service-card li { display: flex; align-items: flex-start; gap: 8px; }
.service-card li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand); margin-top: 8px; flex-shrink: 0;
}

/* ============ FEATURES / WHY US ============ */
.section-alt { background: var(--surface-alt); }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 820px) { .features-grid { grid-template-columns: 1fr; } }
.feature {
  padding: 8px 4px;
}
.feature-num {
  display: inline-block; font-family: var(--font-mono);
  font-size: .85rem; color: var(--brand); font-weight: 600;
  margin-bottom: 12px; letter-spacing: .05em;
}
.feature h3 { margin-bottom: 8px; }
.feature p { margin: 0; }

/* ============ PROCESS ============ */
.process-list {
  display: grid; gap: 4px; max-width: 760px; margin: 0 auto;
  border-top: 1px solid var(--border);
}
.process-item {
  display: grid; grid-template-columns: 80px 1fr; gap: 24px; align-items: start;
  padding: 28px 0; border-bottom: 1px solid var(--border);
}
.process-item .step {
  font-family: var(--font-mono); color: var(--brand); font-size: .9rem; font-weight: 600;
  letter-spacing: .05em; padding-top: 4px;
}
.process-item h3 { margin: 0 0 6px; }
.process-item p { margin: 0; }

/* ============ CTA STRIP ============ */
.cta-strip {
  background:
    radial-gradient(40% 100% at 100% 0%, rgba(14, 165, 164, .25), transparent 60%),
    radial-gradient(60% 100% at 0% 100%, rgba(11, 95, 255, .35), transparent 60%),
    var(--surface-dark);
  color: #fff;
  border-radius: 24px;
  padding: clamp(40px, 6vw, 64px);
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
}
@media (max-width: 720px) {
  .cta-strip { grid-template-columns: 1fr; text-align: left; }
}
.cta-strip h2 { color: #fff; margin: 0 0 8px; }
.cta-strip p { color: rgba(255, 255, 255, .75); margin: 0; max-width: 540px; }
.cta-strip .btn-primary {
  background: #fff; color: var(--surface-dark);
  box-shadow: 0 6px 24px -8px rgba(0, 0, 0, .4);
}
.cta-strip .btn-primary:hover { background: #F1F5F9; color: var(--surface-dark); }

/* ============ FOOTER ============ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
  background: var(--surface);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand p { font-size: .9rem; color: var(--text-soft); max-width: 320px; }
.footer-col h4 {
  font-size: .8rem; text-transform: uppercase; letter-spacing: .06em;
  color: var(--text-mute); margin-bottom: 16px; font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--text-soft); font-size: .92rem; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding-top: 24px; border-top: 1px solid var(--border);
  font-size: .85rem; color: var(--text-mute);
}
.footer-bottom .socials { display: flex; gap: 12px; }
.footer-bottom .socials a {
  width: 36px; height: 36px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); color: var(--text-soft);
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.footer-bottom .socials a:hover { color: var(--brand); border-color: var(--brand); background: var(--brand-50); }

/* ============ PAGE HEADER (subpáginas) ============ */
.page-header {
  padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 5vw, 64px);
  text-align: center;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(50% 80% at 50% 0%, rgba(11, 95, 255, .06), transparent 70%),
    var(--bg);
}
.page-header h1 { margin-bottom: 16px; }
.page-header p { max-width: 640px; margin: 0 auto; font-size: 1.05rem; }

/* ============ SERVICIOS DETALLE ============ */
.svc-detail {
  display: grid; grid-template-columns: 280px 1fr; gap: 48px;
  padding: clamp(48px, 6vw, 72px) 0; border-bottom: 1px solid var(--border);
}
.svc-detail:last-child { border-bottom: 0; }
@media (max-width: 820px) { .svc-detail { grid-template-columns: 1fr; gap: 24px; } }
.svc-detail aside .service-icon { margin-bottom: 16px; }
.svc-detail aside h2 { font-size: 1.6rem; margin-bottom: 8px; }
.svc-detail aside .tag {
  display: inline-block; padding: 4px 10px; border-radius: 999px;
  background: var(--surface-alt); color: var(--text-soft); font-size: .78rem;
  font-family: var(--font-mono); letter-spacing: .04em;
}
.svc-detail .body h3 { margin-top: 24px; font-size: 1.1rem; }
.svc-detail .body h3:first-child { margin-top: 0; }
.svc-detail .body ul { padding-left: 20px; color: var(--text-soft); }
.svc-detail .body li { margin-bottom: 6px; }

/* ============ NOSOTROS ============ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
}
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } }
.about-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 28px;
}
.about-card + .about-card { margin-top: 16px; }
.about-card h3 { margin-bottom: 8px; }
.about-card p { margin: 0; }

.timeline {
  display: grid; gap: 0; margin-top: 24px;
}
.timeline-item {
  display: grid; grid-template-columns: 100px 1fr; gap: 20px;
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.timeline-item:last-child { border-bottom: 0; }
.timeline-item .year {
  font-family: var(--font-mono); color: var(--brand); font-weight: 600;
}
.timeline-item p { margin: 0; }

/* ============ CONTACTO ============ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start;
}
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info { display: grid; gap: 20px; }
.info-card {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 20px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.info-card .service-icon { margin-bottom: 0; flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; }
.info-card h3 { margin-bottom: 4px; font-size: 1rem; }
.info-card p { margin: 0; font-size: .92rem; }
.info-card a { color: var(--text); font-weight: 500; }
.info-card a:hover { color: var(--brand); }

.form-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 32px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; gap: 16px; margin-bottom: 16px; }
.form-row.cols-2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .form-row.cols-2 { grid-template-columns: 1fr; } }

.field label {
  display: block; font-size: .85rem; font-weight: 600; color: var(--text); margin-bottom: 6px;
}
.field input, .field textarea, .field select {
  width: 100%; font: inherit; color: var(--text);
  padding: 12px 14px; border: 1px solid var(--border-strong); border-radius: 10px;
  background: var(--surface); transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(11, 95, 255, .15);
}
.field textarea { min-height: 140px; resize: vertical; }
.field-help { font-size: .8rem; color: var(--text-mute); margin-top: 6px; }
.form-status { font-size: .9rem; margin-top: 12px; min-height: 1.2em; }
.form-status.is-ok { color: var(--good); }
.form-status.is-err { color: #DC2626; }

/* ============ MISC ============ */
.skip-link {
  position: absolute; left: -9999px; top: 8px; padding: 8px 16px;
  background: var(--text); color: #fff; border-radius: 6px;
  font-size: .9rem; font-weight: 600;
}
.skip-link:focus { left: 8px; z-index: 100; color: #fff; }

::selection { background: var(--brand); color: #fff; }

/* Reveal on scroll */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============ BLOG ============ */

/* ---- Hero del listing ---- */
.blog-hero {
  position: relative; overflow: hidden;
  padding: clamp(64px, 9vw, 110px) 0 clamp(48px, 6vw, 80px);
  background:
    radial-gradient(60% 60% at 18% 20%, rgba(11, 95, 255, .12), transparent 60%),
    radial-gradient(50% 60% at 82% 0%, rgba(14, 165, 164, .12), transparent 60%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-soft) 100%);
  border-bottom: 1px solid var(--border);
}
.blog-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(to right, rgba(15, 23, 42, .05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, .05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
  pointer-events: none;
}
.blog-hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 56px; align-items: center;
}
@media (max-width: 980px) {
  .blog-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .blog-hero-art { order: -1; max-width: 560px; margin: 0 auto; }
}
.blog-hero-meta h1 { margin: 8px 0 16px; font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.15; }
.blog-hero-meta h1 .accent {
  background: linear-gradient(135deg, var(--brand) 0%, var(--teal) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.blog-hero-meta p {
  font-size: clamp(1.02rem, 1.4vw, 1.15rem); color: var(--text-soft);
  max-width: 620px; margin: 0 0 28px;
}
.blog-hero-art {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  background: #0B1220;
}
.blog-hero-art img { width: 100%; height: auto; display: block; }

.blog-hero-stats {
  display: flex; gap: 32px; flex-wrap: wrap; padding-top: 24px;
  border-top: 1px solid var(--border);
}
.blog-hero-stats > div {
  display: flex; flex-direction: column; gap: 4px;
  min-width: 120px;
}
.blog-hero-stats strong {
  font-size: 1.75rem; font-weight: 700; color: var(--text); line-height: 1;
  font-family: var(--font); letter-spacing: -0.02em;
}
.blog-hero-stats span {
  font-size: .85rem; color: var(--text-mute);
}

/* ---- Listing section ---- */
.blog-list-section {
  padding: clamp(56px, 7vw, 88px) 0;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}

.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
@media (max-width: 1080px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px)  { .blog-grid { grid-template-columns: 1fr; } }

.post-card {
  position: relative; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--r-md);
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
  display: flex; flex-direction: column; overflow: hidden;
}
.post-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, var(--brand), var(--teal));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .25s ease; pointer-events: none;
}
.post-card:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.post-card:hover::before { opacity: 1; }

.post-card-thumb {
  display: block; width: 100%; aspect-ratio: 2 / 1;
  background: linear-gradient(135deg, #0B1220 0%, #0E1B36 100%);
  overflow: hidden;
}
.post-card-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .35s ease;
}
.post-card:hover .post-card-thumb img { transform: scale(1.03); }

.post-card-body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.post-card-meta {
  font-family: var(--font-mono); font-size: .78rem; color: var(--text-mute);
  margin: 0 0 12px; letter-spacing: .04em; text-transform: lowercase;
}
.post-card h3 { margin: 0 0 8px; font-size: 1.2rem; line-height: 1.3; }
.post-card h3 a { color: var(--text); }
.post-card h3 a:hover { color: var(--brand); }
.post-card p { font-size: .94rem; margin: 0 0 16px; }
.post-card .post-tags { margin: 0 0 16px; }
.post-card-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: .9rem; margin-top: auto;
}
.post-card-cta:hover .icon-arrow { transform: translateX(3px); }

/* ---- Hero del post individual ---- */
.post-hero {
  position: relative; overflow: hidden;
  padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 6vw, 72px);
  background:
    radial-gradient(60% 70% at 12% 10%, rgba(11, 95, 255, .12), transparent 60%),
    radial-gradient(50% 60% at 90% 0%, rgba(14, 165, 164, .12), transparent 60%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-soft) 100%);
  border-bottom: 1px solid var(--border);
}
.post-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(to right, rgba(15, 23, 42, .05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, .05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 30%, transparent 80%);
  pointer-events: none;
}
.post-hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 56px; align-items: center;
}
@media (max-width: 980px) {
  .post-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .post-hero-art { order: -1; max-width: 560px; margin: 0 auto; }
}
.post-hero-meta h1 {
  margin: 12px 0 16px;
  font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.15;
}
.post-eyebrow {
  font-family: var(--font-mono); font-size: .82rem; color: var(--text-mute);
  margin: 0 0 4px; letter-spacing: .04em; text-transform: lowercase;
}
.post-eyebrow a { color: var(--brand); font-weight: 600; }
.post-lead {
  max-width: 620px; margin: 12px 0 0; color: var(--text-soft);
  font-size: 1.08rem; line-height: 1.6;
}
.post-hero-art {
  position: relative;
  border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  background: #0B1220;
}
.post-hero-art img { width: 100%; height: auto; display: block; }

/* ---- Tags coloreados ---- */
.post-tags {
  list-style: none; padding: 0; margin: 20px 0 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.post-tags .tag {
  font-family: var(--font-mono); font-size: .72rem; font-weight: 600;
  padding: 5px 11px; border-radius: 999px;
  background: var(--surface-alt); color: var(--text-soft);
  border: 1px solid var(--border); letter-spacing: .04em;
  text-transform: lowercase;
}
/* paleta semántica por tag conocido */
.post-tags .tag--csp        { background: #EAF1FF; color: #0950DB; border-color: #BFD3FF; }
.post-tags .tag--xss        { background: #FEE2E2; color: #B91C1C; border-color: #FECACA; }
.post-tags .tag--hardening  { background: #EDE9FE; color: #6D28D9; border-color: #DDD6FE; }
.post-tags .tag--headers    { background: var(--teal-50); color: #0F766E; border-color: #99F6E4; }
.post-tags .tag--wordpress  { background: #FEF3C7; color: #92400E; border-color: #FDE68A; }
.post-tags .tag--tls        { background: #DCFCE7; color: #166534; border-color: #BBF7D0; }
.post-tags .tag--dns        { background: #FFE4E6; color: #9F1239; border-color: #FECDD3; }
.post-tags .tag--cookies    { background: #FEF3C7; color: #92400E; border-color: #FDE68A; }
.post-tags .tag--apache     { background: #FFE4E6; color: #9F1239; border-color: #FECDD3; }
.post-tags .tag--nginx      { background: #DCFCE7; color: #166534; border-color: #BBF7D0; }
.post-tags .tag--cms        { background: #FEF3C7; color: #92400E; border-color: #FDE68A; }
.post-tags .tag--hsts       { background: var(--teal-50); color: #0F766E; border-color: #99F6E4; }
.post-tags .tag--subdomain  { background: #FFE4E6; color: #9F1239; border-color: #FECDD3; }
.post-tags .tag--takeover   { background: #FEE2E2; color: #B91C1C; border-color: #FECACA; }
.post-tags .tag--monitoring { background: #EDE9FE; color: #6D28D9; border-color: #DDD6FE; }
.post-tags .tag--dmarc      { background: #E0F2FE; color: #0369A1; border-color: #BAE6FD; }
.post-tags .tag--email      { background: #E0F2FE; color: #0369A1; border-color: #BAE6FD; }
.post-tags .tag--spf        { background: #E0F2FE; color: #0369A1; border-color: #BAE6FD; }
.post-tags .tag--dkim       { background: #E0F2FE; color: #0369A1; border-color: #BAE6FD; }

/* Artículo del post: centrado, con max-width cómodo para lectura */
.post-article {
  max-width: 920px;
  margin-left: auto; margin-right: auto;
  padding-top: clamp(32px, 5vw, 56px); padding-bottom: clamp(48px, 6vw, 80px);
  color: var(--text);
}
.post-article > * { max-width: 100%; }
.post-article h2 {
  font-size: clamp(1.5rem, 2.4vw, 1.9rem); margin-top: 2.2em; margin-bottom: .5em;
  letter-spacing: -0.02em; line-height: 1.25;
}
.post-article h3 {
  font-size: 1.2rem; margin-top: 1.8em; margin-bottom: .4em; letter-spacing: -0.01em;
}
.post-article h2:first-child, .post-article h3:first-child { margin-top: 0; }
.post-article p {
  font-size: 1.05rem; line-height: 1.75; color: var(--text);
  margin: 0 0 1.1em;
}
.post-article a { font-weight: 500; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.post-article a:hover { text-decoration-thickness: 2px; }
.post-article strong { color: var(--text); font-weight: 700; }
.post-article ul, .post-article ol {
  margin: 0 0 1.2em; padding-left: 1.4em; line-height: 1.75; font-size: 1.05rem;
}
.post-article li { margin-bottom: .4em; }
.post-article li::marker { color: var(--brand); }
.post-article blockquote {
  margin: 1.6em 0; padding: 16px 20px;
  border-left: 3px solid var(--brand); background: var(--brand-50);
  color: var(--text); border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.post-article blockquote p:last-child { margin-bottom: 0; }
.post-article hr {
  border: 0; height: 1px; background: var(--border); margin: 2.4em 0;
}
.post-article img {
  border-radius: var(--r-sm); margin: 1.6em 0;
  border: 1px solid var(--border);
}

/* Inline code */
.post-article code {
  font-family: var(--font-mono); font-size: .9em;
  background: var(--surface-alt); padding: 2px 6px; border-radius: 4px;
  border: 1px solid var(--border); color: var(--text);
}

/* Code blocks (pre > code, o div.post-code de codehilite) */
.post-article pre,
.post-article .post-code {
  background: var(--surface-dark); color: #E2E8F0;
  padding: 18px 20px; border-radius: var(--r-sm);
  overflow-x: auto; margin: 1.4em 0;
  font-family: var(--font-mono); font-size: .88rem; line-height: 1.6;
  border: 1px solid #1E293B;
}
.post-article pre code,
.post-article .post-code code {
  background: transparent; border: 0; padding: 0; color: inherit;
  font-size: inherit;
}

/* codehilite: tokens en bloques con guess_lang=false suelen ser monocromos,
   dejamos hooks por si en el futuro queremos resaltado */
.post-article .post-code .k { color: #93C5FD; }      /* keyword */
.post-article .post-code .s, .post-article .post-code .s1, .post-article .post-code .s2 { color: #86EFAC; } /* string */
.post-article .post-code .c, .post-article .post-code .c1 { color: #94A3B8; font-style: italic; } /* comment */
.post-article .post-code .nf { color: #FCD34D; }     /* function name */
.post-article .post-code .nb { color: #FCA5A5; }     /* builtin */
.post-article .post-code .mi, .post-article .post-code .mf { color: #C4B5FD; } /* number */

/* tabla */
.post-article table {
  width: 100%; border-collapse: collapse; margin: 1.6em 0; font-size: .95rem;
}
.post-article th, .post-article td {
  padding: 10px 12px; border-bottom: 1px solid var(--border); text-align: left;
}
.post-article th {
  background: var(--surface-alt); font-weight: 600; color: var(--text);
}

/* ── Post share ───────────────────────────────────── */
.post-share { padding: 0 0 40px; }
.post-share-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  max-width: 920px;
}
.post-share-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.post-share-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .18s, transform .18s;
  line-height: 1;
}
.share-btn:hover { opacity: .85; transform: translateY(-1px); }
.share-btn--linkedin   { background: #0A66C2; color: #fff; }
.share-btn--x          { background: #000; color: #fff; }
.share-btn--wa         { background: #25D366; color: #fff; }
.share-btn--email      { background: #475569; color: #fff; }
.share-btn--instagram  { background: #E1306C; color: #fff; }
.share-btn--copy       { background: var(--surface); color: var(--text); border: 1.5px solid var(--border); }
.share-btn--copy.is-copied { background: #DCFCE7; color: #166534; border-color: #BBF7D0; }
@media (max-width: 600px) {
  .post-share-inner { flex-direction: column; align-items: flex-start; }
  .share-btn span { display: none; }
  .share-btn { padding: 9px 12px; }
}
/* tag colors for email stack */
.post-tags .tag--mta-sts   { background: #E0F2FE; color: #0369A1; border-color: #BAE6FD; }

/* ── Blog subscribe ───────────────────────────────── */
.blog-subscribe-section { padding: 0 0 56px; }
.blog-subscribe-section--post { padding: 48px 0 0; }
.subscribe-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 36px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 16px;
  max-width: 920px;
}
.subscribe-box-copy { flex: 1; }
.subscribe-eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin: 0 0 6px;
}
.subscribe-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.35;
}
.subscribe-sub {
  font-size: .88rem;
  color: rgba(255,255,255,.8);
  margin: 0;
}
.subscribe-form { flex-shrink: 0; min-width: 280px; }
.subscribe-row {
  display: flex;
  gap: 8px;
  align-items: center;
}
.subscribe-row input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  border-radius: 8px;
  border: none;
  font-size: .95rem;
  outline: none;
  background: rgba(255,255,255,.95);
  color: var(--text);
  min-width: 0;
  height: 46px;
}
.subscribe-row input[type="email"]:focus {
  box-shadow: 0 0 0 3px rgba(255,255,255,.4);
  background: #fff;
}
.subscribe-row .btn {
  white-space: nowrap;
  flex-shrink: 0;
  /* Sobre fondo degradado brand→teal: botón blanco con texto brand */
  background: #fff;
  color: var(--brand);
  border-color: transparent;
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
  font-size: 1rem;
  height: 46px;
  padding: 0 22px;
}
.subscribe-row .btn:hover {
  background: rgba(255,255,255,.9);
  color: var(--brand);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,.22);
}
.subscribe-turnstile {
  margin: 10px 0 0;
  /* Forzar fondo transparente para que el widget no rompa el gradiente */
  --cf-turnstile-bg: transparent;
}
.subscribe-status {
  font-size: .82rem;
  margin: 8px 0 0;
  min-height: 1.2em;
  color: rgba(255,255,255,.85);
}
.subscribe-status.is-ok  { color: #BBF7D0; }
.subscribe-status.is-err { color: #FCA5A5; }

/* toast para ?sub= en blog */
.sub-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  background: var(--surface-dark);
  color: #F8FAFC;
  font-size: .9rem;
  font-weight: 500;
  padding: 12px 22px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  z-index: 999;
  opacity: 1;
  transition: opacity .4s, transform .4s;
}
.sub-toast.is-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(12px);
  pointer-events: none;
}
@media (max-width: 720px) {
  .subscribe-box { flex-direction: column; align-items: stretch; padding: 24px 20px; }
  .subscribe-form { min-width: 0; }
  .subscribe-row { flex-wrap: wrap; }
  .subscribe-row .btn { width: 100%; justify-content: center; }
}

/* ── Post destacado ──────────────────────────────────────────────────── */
.post-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 3rem;
  background: var(--surface);
  box-shadow: 0 4px 24px rgba(11,95,255,.07);
  transition: box-shadow .2s, transform .2s;
}
.post-featured:hover {
  box-shadow: 0 8px 32px rgba(11,95,255,.13);
  transform: translateY(-2px);
}
.post-featured-thumb {
  display: block;
  overflow: hidden;
  background: #F0F4FF;
}
.post-featured-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.post-featured-body {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .75rem;
}
.post-featured-eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.featured-badge {
  background: linear-gradient(90deg, var(--brand), var(--teal));
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}
.post-featured-body h2 {
  font-size: 1.35rem;
  line-height: 1.35;
  margin: 0;
}
.post-featured-body h2 a {
  color: var(--text);
  text-decoration: none;
}
.post-featured-body h2 a:hover { color: var(--brand); }
.post-featured-body > p {
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 720px) {
  .post-featured { grid-template-columns: 1fr; }
  .post-featured-thumb { aspect-ratio: 16/7; }
  .post-featured-body { padding: 1.5rem; }
}

/* ── Fragmentos de informe en posts del blog ─────────────────────────── */
.report-fragment {
  border: 1.5px solid #E2E8F0;
  border-left: 4px solid var(--brand);
  border-radius: 10px;
  margin: 2rem 0;
  overflow: hidden;
  font-size: .88rem;
}
.report-fragment__header {
  background: #F8FAFF;
  border-bottom: 1px solid #E2E8F0;
  padding: 8px 16px;
  font-size: .78rem;
  font-weight: 600;
  color: #64748B;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.report-fragment__body {
  padding: 16px 20px;
  background: #FFFFFF;
}
.report-fragment__body p { margin: .5rem 0; line-height: 1.6; color: #334155; }
.report-fragment__note {
  font-size: .76rem !important;
  color: #94A3B8 !important;
  margin-top: .75rem !important;
  border-top: 1px solid #F1F5F9;
  padding-top: .5rem;
}
.report-grade-row { display: flex; align-items: center; gap: 16px; margin-bottom: .75rem; }
.report-grade-badge {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; font-weight: 800;
  flex-shrink: 0;
}
.grade-a { background: #D1FAE5; color: #065F46; border: 2px solid #6EE7B7; }
.grade-b { background: #DBEAFE; color: #1E40AF; border: 2px solid #93C5FD; }
.grade-c { background: #FEF3C7; color: #92400E; border: 2px solid #FDE68A; }
.grade-d { background: #FFE4E6; color: #9F1239; border: 2px solid #FECDD3; }
.report-grade-detail { line-height: 1.5; color: #334155; }
.report-counts { font-size: .82rem; color: #64748B; }
.report-finding-header { display: flex; align-items: center; gap: 10px; margin-bottom: .6rem; flex-wrap: wrap; }
.sev-badge {
  font-size: .72rem; font-weight: 700;
  padding: 2px 10px; border-radius: 20px;
  white-space: nowrap;
}
.sev-baja { background: #FEF3C7; color: #92400E; }
.sev-media { background: #FED7AA; color: #9A3412; }
.sev-alta { background: #FEE2E2; color: #991B1B; }
.sev-critica { background: #7F1D1D; color: #FECACA; }
.sev-info { background: #F1F5F9; color: #475569; }
.report-compliance-tags { margin-top: .75rem; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.compliance-tag {
  font-size: .72rem; font-weight: 600;
  background: #EFF6FF; color: #1D4ED8;
  border: 1px solid #BFDBFE;
  padding: 2px 8px; border-radius: 4px;
}
.compliance-table { width: 100%; border-collapse: collapse; font-size: .83rem; }
.compliance-table th {
  text-align: left; padding: 6px 10px;
  background: #F8FAFF; color: #64748B;
  font-size: .75rem; font-weight: 600;
  border-bottom: 1px solid #E2E8F0;
}
.compliance-table td { padding: 7px 10px; border-bottom: 1px solid #F1F5F9; color: #334155; }
.compliance-table tr:last-child td { border-bottom: none; }
.readiness { font-weight: 700; }
.readiness-high { color: #059669; }
.readiness-medium { color: #D97706; }
.readiness-low { color: #DC2626; }
@media (max-width: 640px) {
  .compliance-table { font-size: .76rem; }
  .compliance-table th:nth-child(3),
  .compliance-table td:nth-child(3) { display: none; }
}

/* ── Tags como enlaces ─────────────────────────────── */
.post-tags a.tag {
  text-decoration: none;
  display: inline-block;
  transition: transform .15s, box-shadow .15s, opacity .15s;
}
.post-tags a.tag:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0,0,0,.10);
  opacity: .9;
}
.post-tags .tag--active {
  outline: 2px solid currentColor;
  outline-offset: 1px;
}
/* tag count badge */
.tag-count {
  display: inline-block;
  margin-left: 5px;
  font-size: .68rem;
  font-weight: 700;
  opacity: .65;
}
/* new tag colors */
.post-tags .tag--sri          { background: #FFF7ED; color: #C2410C; border-color: #FED7AA; }
.post-tags .tag--supply-chain { background: #FFF7ED; color: #C2410C; border-color: #FED7AA; }
.post-tags .tag--javascript   { background: #FEFCE8; color: #854D0E; border-color: #FEF08A; }
.post-tags .tag--cdn          { background: #EFF6FF; color: #1D4ED8; border-color: #BFDBFE; }
.post-tags .tag--freescan     { background: #EDE9FE; color: #6D28D9; border-color: #DDD6FE; }
.post-tags .tag--comparativa  { background: #F0FDF4; color: #166534; border-color: #BBF7D0; }
.post-tags .tag--compliance   { background: #F0FDF4; color: #166534; border-color: #BBF7D0; }

/* ── Buscador del blog ─────────────────────────────── */
.blog-search {
  position: relative;
  max-width: 520px;
  margin: 0 auto 40px;
}
.blog-search-input {
  width: 100%;
  padding: 12px 44px 12px 18px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: .98rem;
  font-family: var(--font-base);
  color: var(--text);
  background: var(--surface);
  outline: none;
  box-sizing: border-box;
  transition: border-color .15s, box-shadow .15s;
}
.blog-search-input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0, 95, 255, .12);
}
.blog-search-input::placeholder { color: var(--text-soft); }
.blog-search-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-soft);
  pointer-events: none;
}
.blog-search-results { margin-top: 8px; }
.search-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 0;
  color: var(--text-soft);
  font-size: .95rem;
}
.blog-search-results mark {
  background: #FEF9C3;
  color: inherit;
  border-radius: 2px;
  padding: 0 1px;
}

/* ── Nube de tags ──────────────────────────────────── */
.tag-cloud-section {
  margin: 48px 0 0;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.tag-cloud-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 16px;
}
.tag-cloud { flex-wrap: wrap; }

/* ── Posts relacionados ────────────────────────────── */
.post-related {
  padding: 56px 0 0;
}
.post-related-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 28px;
  color: var(--text);
}
.blog-grid--related {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

/* ── Página de tag ─────────────────────────────────── */
.tag-page-hero {
  padding: 64px 0 40px;
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
}
.tag-page-hero .post-eyebrow { margin: 0 0 12px; }
.tag-page-title {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  display: flex;
  align-items: center;
  gap: 12px;
}
.tag-page-title .tag {
  font-size: clamp(.9rem, 1.5vw, 1.1rem);
  padding: 7px 16px;
}
.tag-page-count {
  font-size: .95rem;
  color: var(--text-soft);
  margin: 0;
}
/* h2 en tarjetas de tag page (mismo look que h3 en index) */
.tag-page-hero ~ .blog-list-section .post-card h2 {
  font-size: 1.2rem;
  line-height: 1.3;
  margin: 0 0 8px;
}
.tag-page-hero ~ .blog-list-section .post-card h2 a { color: var(--text); }
.tag-page-hero ~ .blog-list-section .post-card h2 a:hover { color: var(--brand); }
