/* =========================================================
   itw-page.css — base tipográfica + bloque de precios + FAQ del
   diseño 2026-07, para las páginas internas ya rehechas con el
   sistema nuevo. Se carga junto a itw-shell.css (cabecera y pie).
   Generado: 2026-07-31 a partir de index.html
   ========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--c-bg);
    color: var(--c-ink);
    font-family: Manrope, system-ui, -apple-system, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
p,
ul,
figure,
blockquote {
    margin: 0;
}

ul {
    padding: 0;
    list-style: none;
}

a {
    color: var(--c-primary-ink);
    text-decoration: none;
}

a:hover {
    color: var(--c-primary-deep);
}

img {
    max-width: 100%;
}

.wrap {
    max-width: 1140px;
    margin: 0 auto;
}

.section {
    padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 32px);
}

.eyebrow {
    font-family: "IBM Plex Mono", ui-monospace, monospace;
    font-size: 11.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--c-primary-ink);
    font-weight: 500;
}
.inline-facts {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--c-text-muted);
}

.inline-facts span[aria-hidden] {
    opacity: .4;
}

/* Mismo motivo que en la barra superior: al partir en varias lineas
   los separadores decorativos quedan huerfanos. */
@media (max-width: 639px) {
    .inline-facts span[aria-hidden] {
        display: none;
    }
}

.link-arrow {
    font-size: 15.5px;
    font-weight: 700;
    letter-spacing: -.015em;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 4px;
    align-self: flex-start;
}

.link-arrow span {
    font-size: 17px;
    transition: transform .2s ease;
}

.link-arrow:hover span {
    transform: translateX(3px);
}
.pricing__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.pricing__head {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.pricing__head h2 {
    font-size: clamp(29px, 4.6vw, 46px);
    line-height: 1.07;
    font-weight: 800;
    letter-spacing: -.04em;
    max-width: 720px;
    text-wrap: balance;
}

.pricing__head p {
    font-size: 17.5px;
    color: var(--c-text);
    font-weight: 500;
    max-width: 560px;
}

/* Dos planes por fila y tarjetas anchas: cada plan lista TODAS sus
   prestaciones, y en cinco columnas estrechas esa lista era ilegible. */
.plans {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
}

@media (min-width: 720px) {
    .plans {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* El quinto plan no deja media fila vacía: ocupa el ancho completo y
       reparte sus prestaciones en columnas. */
    .plan--full {
        grid-column: 1 / -1;
    }

    /* Reparte BLOQUES enteros, no viñetas sueltas: cada grupo se lee de
       arriba abajo dentro de su columna.
       (.plan.plan--full, no .plan--full: con una sola clase empata en
       especificidad con las reglas de `.plan` y pierde por orden.) */
    .plan.plan--full .plan__feats {
        display: block;   /* `columns` no hace nada sobre un contenedor flex */
        columns: 3;
        column-gap: 34px;
    }

    .plan.plan--full .plan__group {
        break-after: avoid;
        margin-top: 0;
    }

    .plan.plan--full .plan__feats ul {
        break-inside: avoid;
        margin-bottom: 20px;
    }
}

.plan {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 26px 22px;
    border-radius: 16px;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    color: var(--c-ink);
}

.plan__top {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.plan__label {
    font-family: "IBM Plex Mono", ui-monospace, monospace;
    font-size: 10.5px;
    letter-spacing: .1em;
    min-height: 14px;
    color: var(--c-text-muted);
    white-space: nowrap;
}

.plan__label--empty {
    color: transparent;
}

.plan h3 {
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -.03em;
}

/* Precio e importe: apilados SIEMPRE, no en línea.
   Con la tarifa de 2026-08 hay importes de cuatro cifras («1.500 €») y la
   columna más estrecha del grid deja 161 px útiles (minmax 205 − 44 de
   padding): en línea, la coletilla envolvía solo en algunas tarjetas y los
   separadores dejaban de alinearse entre sí. Apilado, las cinco miden igual
   en cualquier ancho. */
.plan__price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.plan__price b {
    font-size: clamp(32px, 3.4vw, 38px);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -.045em;
    white-space: nowrap;
}

.plan__price b.sm {
    font-size: 30px;
}

.plan__price span {
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text-muted);
    white-space: nowrap;
}

.plan__hr {
    height: 1px;
    background: var(--c-border);
}

.plan ul {
    display: flex;
    flex-direction: column;
    gap: 9px;
    flex: 1;
}

.plan li {
    display: flex;
    gap: 9px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.plan li::before {
    content: "\00b7";
    opacity: .5;
}

/* Lo que de verdad separa a un plan del anterior: cartera, idiomas y soporte.
   Va arriba y con más peso; el resto de la lista es idéntica en los cinco. */
.plan__keys {
    flex: 0 0 auto;
    gap: 8px;
}

.plan__keys li {
    font-size: 15.5px;
    font-weight: 800;
    letter-spacing: -.015em;
    align-items: baseline;
}

.plan__keys li::before {
    content: "\2713";
    opacity: 1;
    color: var(--c-primary-ink);
    font-weight: 700;
}

.plan--ink .plan__keys li::before {
    color: var(--c-on-ink);
}

/* El resto, por bloques temáticos. Diecisiete viñetas seguidas del mismo
   tamaño se leían como un párrafo, no como una lista que se pueda ojear. */
.plan__feats {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0;
}

.plan__feats ul {
    flex: 0 0 auto;
    gap: 7px;
}

.plan__group {
    margin: 18px 0 9px;
    font-family: "IBM Plex Mono", ui-monospace, monospace;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--c-text-muted);
}

.plan__feats li {
    font-size: 13px;
    font-weight: 500;
    color: var(--c-text-muted);
}

.plan--ink .plan__group,
.plan--ink .plan__feats li {
    color: var(--c-on-ink-soft);
}

.plan .btn {
    width: 100%;
}

.plan--ink {
    background: var(--c-ink);
    border-color: var(--c-ink);
    color: var(--c-on-ink);
    box-shadow: 0 28px 50px -28px rgba(29, 29, 31, .5);
}

.plan--ink .plan__label {
    color: var(--c-primary-soft);
}

.plan--ink .plan__hr {
    background: rgba(255, 255, 255, .15);
}

.plan--ink .plan__price span {
    color: var(--c-on-ink-soft);
}

.plan--wash {
    background: var(--c-primary-wash);
    border-color: rgba(102, 126, 234, .32);
}

.plan--wash .plan__label {
    color: var(--c-primary-ink);
}

.plan--wash .plan__hr {
    background: rgba(102, 126, 234, .25);
}

.pricing__foot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

/* ================= FAQ ================= */
.faq {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq__head {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    text-align: center;
    margin-bottom: 10px;
}

.faq__head h2 {
    font-size: clamp(26px, 3.6vw, 38px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -.03em;
}

.faq__item {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: 16px;
    padding: 4px 22px;
    box-shadow: var(--sh-card);
}

.faq__item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    cursor: pointer;
    font-size: 16.5px;
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--c-ink);
    list-style: none;
}

.faq__item summary::-webkit-details-marker {
    display: none;
}

.faq__item summary::after {
    content: "+";
    flex: 0 0 auto;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    color: var(--c-primary-ink);
    transition: transform .2s ease;
}

.faq__item[open] summary::after {
    transform: rotate(45deg);
}

.faq__item p {
    padding: 0 0 20px;
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--c-text);
    max-width: 68ch;
}

/* ================= CABECERA DE PÁGINA ================= */
.page-hero {
    padding: clamp(44px, 6vw, 72px) clamp(16px, 4vw, 32px) clamp(8px, 2vw, 16px);
    background: linear-gradient(180deg, var(--c-hero-top) 0%, var(--c-bg) 100%);
}

.page-hero__inner {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.page-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -.035em;
}

.page-hero p {
    font-size: clamp(16px, 1.6vw, 18.5px);
    line-height: 1.6;
    color: var(--c-text);
    max-width: 60ch;
}

/* ================= BANDA CTA ================= */
.cta-band {
    background: var(--c-ink);
    color: var(--c-on-ink);
}

.cta-band__inner {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
}

.cta-band h2 {
    font-size: clamp(26px, 3.6vw, 38px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--c-on-ink);
}

.cta-band p {
    font-size: 16.5px;
    line-height: 1.6;
    color: var(--c-on-ink-soft);
    max-width: 56ch;
}

.cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 6px;
}

.cta-band .inline-facts {
    color: var(--c-on-ink-faint);
}

/* El pie del bloque de precios centra su contenido: el enlace hereda
   `align-self:flex-start` del uso que tiene en la home y se descolgaba. */
.pricing__foot .link-arrow {
    align-self: center;
}

/* ================= CONTACTO / FORMULARIO ================= */
.contact-grid {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}

@media (min-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr 1.05fr;
        gap: 48px;
    }
}

.contact-aside {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-aside h2 {
    font-size: clamp(24px, 3.2vw, 34px);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -.03em;
}

.contact-aside > p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--c-text);
    max-width: 52ch;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: 14px;
}

.contact-item__icon {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: var(--c-primary-tint);
    color: var(--c-primary-ink);
}

.contact-item__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.contact-item__text span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--c-text-muted);
}

.contact-item__text b,
.contact-item__text a {
    font-size: 15.5px;
    font-weight: 700;
    letter-spacing: -.015em;
    color: var(--c-ink);
    overflow-wrap: anywhere;
}

.contact-item__text a:hover {
    color: var(--c-primary-ink);
}

.form-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: 20px;
    padding: clamp(22px, 3vw, 32px);
    box-shadow: var(--sh-card);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-card h2 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.025em;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 620px) {
    .form-grid--2 {
        grid-template-columns: 1fr 1fr;
    }
}

.field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.field label {
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: -.01em;
    color: var(--c-text-strong);
}

.field input,
.field select,
.field textarea {
    font-family: inherit;
    font-size: 15.5px;
    color: var(--c-ink);
    background: var(--c-surface-alt);
    border: 1px solid var(--c-border-strong);
    border-radius: 11px;
    padding: 13px 14px;
    width: 100%;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.field textarea {
    min-height: 110px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, .18);
}

.field input::placeholder,
.field textarea::placeholder {
    color: var(--c-text-muted);
    opacity: .75;
}

.form-note {
    font-size: 13px;
    line-height: 1.55;
    color: var(--c-text-muted);
}

.form-msg {
    display: none;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.5;
}

.form-msg.is-visible {
    display: block;
}

.form-msg--ok {
    background: var(--c-green-tint);
    color: var(--c-green-ink);
}

.form-msg--error {
    background: #fdeaea;
    color: #9b1c1c;
}

/* ================= PASOS ================= */
.steps {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

@media (min-width: 780px) {
    .steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.step__num {
    font-family: "IBM Plex Mono", ui-monospace, monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .1em;
    color: var(--c-primary-ink);
}

.step h3 {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -.02em;
}

.step p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--c-text);
}

/* ================= WHATSAPP FLOTANTE ================= */
.wa-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 10px 24px -10px rgba(37, 211, 102, .9);
    transition: transform .18s ease;
}

.wa-float:hover {
    transform: translateY(-2px);
}

/* ================= REJILLA DE FUNCIONALIDADES ================= */
.feat-grid {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

@media (min-width: 640px) {
    .feat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1000px) {
    .feat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feat-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: 18px;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--sh-card);
}

.feat-card__icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--c-primary-tint);
    color: var(--c-primary-ink);
}

.feat-card h3 {
    font-size: 17.5px;
    font-weight: 800;
    letter-spacing: -.02em;
}

.feat-card p {
    font-size: 15px;
    line-height: 1.62;
    color: var(--c-text);
}

/* ================= TEMAS COMPATIBLES ================= */
.themes-grid {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 780px) {
    .themes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.theme-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: 16px;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.theme-card__mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--c-surface-2);
    color: var(--c-text-strong);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -.03em;
}

.theme-card h3 {
    font-size: 16.5px;
    font-weight: 800;
    letter-spacing: -.02em;
}

.theme-card p {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--c-text);
}

/* ================= LISTA DE COMPROBACIÓN ================= */
.checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 68ch;
}

.checklist li {
    position: relative;
    padding-left: 26px;
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--c-text);
}

.checklist li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: .62em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--c-green);
}

.split {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
}

@media (min-width: 900px) {
    .split {
        grid-template-columns: 1fr 1fr;
        gap: 56px;
    }
}

.split h2 {
    font-size: clamp(24px, 3.2vw, 34px);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: 14px;
}

.split p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--c-text);
    max-width: 56ch;
}

.code-box {
    background: var(--c-ink);
    color: var(--c-on-ink);
    border-radius: 16px;
    padding: 22px;
    font-family: "IBM Plex Mono", ui-monospace, monospace;
    font-size: 13.5px;
    line-height: 1.9;
    overflow-x: auto;
}

.code-box span {
    color: var(--c-primary-soft);
}

/* ================= BLOG ================= */
.blog-grid {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1000px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.post-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--sh-card);
    transition: transform .18s ease, box-shadow .18s ease;
}

.post-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--sh-pop);
}

.post-card__thumb {
    aspect-ratio: 16 / 9;
    background: var(--c-surface-2);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.post-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 22px 20px 24px;
    flex: 1;
}

.post-card__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "IBM Plex Mono", ui-monospace, monospace;
    font-size: 11.5px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--c-text-muted);
}

.post-card__meta i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--c-dot);
}

.post-card__body h2 {
    font-size: 18px;
    line-height: 1.28;
    font-weight: 800;
    letter-spacing: -.025em;
    color: var(--c-ink);
}

.post-card__body p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--c-text);
}

.post-card__more {
    margin-top: auto;
    padding-top: 8px;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--c-primary-ink);
}

.post-card a::after {
    content: "";
    position: absolute;
    inset: 0;
}

.post-card {
    position: relative;
}

.empty-state {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    background: var(--c-surface);
    border: 1px dashed var(--c-border-strong);
    border-radius: 18px;
    padding: 48px 28px;
}

.empty-state h2 {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--c-text);
}

/* ---- Vista de artículo ---- */
.article-view {
    display: none;
    max-width: 760px;
    margin: 0 auto;
}

.article-view.is-active {
    display: block;
}

.article-view__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 0;
    padding: 0;
    margin-bottom: 22px;
    cursor: pointer;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--c-primary-ink);
}

.article-view h1 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -.035em;
    margin: 10px 0 20px;
}

.article-content {
    font-size: 17px;
    line-height: 1.75;
    color: var(--c-text);
}

.article-content h2,
.article-content h3 {
    color: var(--c-ink);
    letter-spacing: -.025em;
    margin: 32px 0 12px;
}

.article-content h2 {
    font-size: 25px;
    font-weight: 800;
}

.article-content h3 {
    font-size: 20px;
    font-weight: 800;
}

.article-content p {
    margin-bottom: 18px;
}

.article-content ul,
.article-content ol {
    margin: 0 0 18px 22px;
    padding-left: 0;
    list-style: disc;
}

.article-content ol {
    list-style: decimal;
}

.article-content li {
    margin-bottom: 8px;
}

.article-content img {
    border-radius: 14px;
    margin: 12px 0;
}

.article-content a {
    text-decoration: underline;
}

.blog-head {
    max-width: 1140px;
    margin: 0 auto 34px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
}

.blog-head h1 {
    font-size: clamp(30px, 4.4vw, 44px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -.035em;
}

.blog-head p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--c-text);
    max-width: 52ch;
    margin-top: 8px;
}

/* El título de la tarjeta es un enlace: mantiene el color de tinta. */
.post-card__body h2 a {
    color: var(--c-ink);
}

.post-card:hover .post-card__body h2 a {
    color: var(--c-primary-ink);
}
