/* =============================================================================
   PÁGINA AZUL — BRAND LAYER (v0.3.3)
   Capa de identidad visual que sobrescribe la base. Celeste vibrante protagonista
   sobre fondo claro, tipografía editorial moderna, portadas como verdaderas estrellas.

   Paleta del brandbook:
     #04B2D9  celeste vibrante (identidad principal — CTAs, acentos, hover)
     #484f73  azul oscuro (textos, soporte serio)
     #494544  gris oscuro (texto secundario)
     #4CDCC5  menta (uso opcional, detalles)
     #EDBB88  coral suave (uso opcional, detalles cálidos)
     #857C7D  gris cálido (separadores, texto muted en piezas premium)

   Tipografía:
     Manrope (display/titulares — alternativa free a Gotham)
     Montserrat (cuerpo)
     Bebas Neue (acentuaciones, eyebrows, CTAs grandes — alternativa free a Rift)
   ========================================================================== */

/* -----------------------------------------------------------------------------
   1) Variables — sobrescriben las de base.css respetando los mismos nombres.
   -------------------------------------------------------------------------- */
:root {
    /* Paleta brand */
    --paz-celeste: #04B2D9;
    --paz-celeste-strong: #0497B8;
    --paz-celeste-soft: #E3F6FB;
    --paz-ink: #484f73;
    --paz-graphite: #494544;
    --paz-mint: #4CDCC5;
    --paz-coral: #EDBB88;
    --paz-warm-gray: #857C7D;
    --paz-cream: #FAF8F4;

    /* Sobrescritos del theme base (mismos nombres, valores nuevos) */
    --bg: #ffffff;
    --text: #1a1f2c;
    --muted: #6b7480;
    --line: #e7ebf0;
    --accent: var(--paz-celeste);
    --soft: var(--paz-cream);
    --dark: #1a1f2c;
    --radius: 16px;
    --container: 1240px;

    /* Tipografía — escala editorial */
    --font-display: 'Manrope', 'Helvetica Neue', Arial, sans-serif;
    --font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    --font-accent: 'Bebas Neue', 'Helvetica Neue Condensed', Arial Narrow, sans-serif;

    /* Tamaños */
    --fs-display: clamp(40px, 5.4vw, 68px);
    --fs-h1: clamp(34px, 4.2vw, 52px);
    --fs-h2: clamp(26px, 3.0vw, 36px);
    --fs-h3: clamp(20px, 2.0vw, 24px);
    --fs-body: 16px;
    --fs-small: 14px;
    --fs-eyebrow: 12px;

    /* Sombras suaves */
    --shadow-card: 0 1px 2px rgba(20, 30, 50, .04), 0 6px 18px rgba(20, 30, 50, .06);
    --shadow-card-hover: 0 2px 4px rgba(20, 30, 50, .06), 0 14px 30px rgba(20, 30, 50, .10);

    /* Transiciones */
    --tr-fast: 150ms ease;
    --tr-base: 220ms ease;
}

/* -----------------------------------------------------------------------------
   2) Tipografía base — aplica las fuentes nuevas a todo el documento.
   -------------------------------------------------------------------------- */
body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.6;
    font-size: var(--fs-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--paz-ink);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0 0 .4em;
    font-weight: 800;
}

h1 { font-size: var(--fs-h1); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: var(--fs-h2); font-weight: 700; }
h3 { font-size: var(--fs-h3); font-weight: 700; }

p { margin: 0 0 1em; }

a {
    color: var(--paz-celeste-strong);
    transition: color var(--tr-fast);
}
a:hover { color: var(--paz-ink); }

.eyebrow {
    font-family: var(--font-accent);
    font-size: var(--fs-eyebrow);
    letter-spacing: 0.18em;
    color: var(--paz-celeste-strong);
    font-weight: 400;
    text-transform: uppercase;
}

.small { font-size: var(--fs-small); color: var(--muted); }
.muted { color: var(--muted); }

/* -----------------------------------------------------------------------------
   3) Layout y contenedores — respiro editorial.
   -------------------------------------------------------------------------- */
.section { padding: 80px 0; }
.section-highlight {
    background: var(--paz-cream);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.section-dark {
    background: linear-gradient(180deg, #1a1f2c 0%, #0e1320 100%);
    color: #fff;
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--paz-celeste);
}
.section-head h2 { margin: 0; }
.section-head a {
    font-family: var(--font-accent);
    letter-spacing: 0.1em;
    color: var(--paz-celeste-strong);
    text-transform: uppercase;
    font-size: 14px;
}

/* -----------------------------------------------------------------------------
   4) Botones — celeste protagonista, redondeados pero con peso editorial.
   -------------------------------------------------------------------------- */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 999px;
    background: var(--paz-celeste);
    color: #fff;
    border: 1.5px solid var(--paz-celeste);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: background var(--tr-base), border-color var(--tr-base), transform var(--tr-fast), box-shadow var(--tr-base);
    box-shadow: 0 1px 2px rgba(4, 178, 217, 0.15), 0 6px 16px rgba(4, 178, 217, 0.18);
}
.button:hover {
    background: var(--paz-celeste-strong);
    border-color: var(--paz-celeste-strong);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(4, 178, 217, 0.20), 0 10px 24px rgba(4, 178, 217, 0.25);
}
.button-secondary {
    background: #fff;
    color: var(--paz-celeste-strong);
    border-color: var(--paz-celeste);
    box-shadow: none;
}
.button-secondary:hover {
    background: var(--paz-celeste-soft);
    color: var(--paz-celeste-strong);
    border-color: var(--paz-celeste-strong);
    box-shadow: none;
}
.button-ghost {
    background: transparent;
    color: var(--paz-ink);
    border-color: var(--line);
    box-shadow: none;
}
.button-ghost:hover {
    background: var(--paz-cream);
    color: var(--paz-ink);
    border-color: var(--paz-warm-gray);
    box-shadow: none;
}

/* -----------------------------------------------------------------------------
   5) Header — sticky con presencia editorial, sin invadir.
   -------------------------------------------------------------------------- */
.site-header {
    background: #fff;
    border-bottom: 1px solid var(--line);
    backdrop-filter: saturate(180%) blur(8px);
}
.header-inner { min-height: 84px; }
.site-brand {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    color: var(--paz-ink);
    letter-spacing: -0.01em;
}
.site-nav ul {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-nav a {
    color: var(--paz-ink);
    font-weight: 600;
    font-size: 15px;
    padding: 6px 0;
    position: relative;
    transition: color var(--tr-fast);
}
.site-nav a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 2px;
    background: var(--paz-celeste);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--tr-base);
}
.site-nav a:hover { color: var(--paz-celeste-strong); }
.site-nav a:hover::after { transform: scaleX(1); }

/* -----------------------------------------------------------------------------
   6) Hero — protagonismo editorial, celeste como acento, no como baño.
   -------------------------------------------------------------------------- */
.hero {
    padding: 110px 0 96px;
    background:
        radial-gradient(1200px 600px at 80% -10%, rgba(4, 178, 217, 0.08), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, var(--paz-cream) 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--paz-celeste), transparent);
    opacity: .35;
}
.hero h1 {
    font-size: var(--fs-display);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.025em;
    margin: 10px 0 18px;
    color: var(--paz-ink);
}
.hero-grid p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--paz-graphite);
    max-width: 560px;
}
.hero .eyebrow { margin-bottom: 4px; }
.hero-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-card);
}

/* -----------------------------------------------------------------------------
   7) Tarjetas de libro y autor — jerarquía editorial, hover sutil.
   -------------------------------------------------------------------------- */
.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    transition: transform var(--tr-base), box-shadow var(--tr-base), border-color var(--tr-base);
}
.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(4, 178, 217, 0.25);
}
.card-body { padding: 18px 18px 22px; }
.card-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--paz-ink);
    margin: 0 0 6px;
    line-height: 1.25;
}
.card-body .small,
.card-body p { color: var(--muted); margin: 0; }

.cover-image, .author-image { border-radius: 12px; }

/* Books grid: portadas más prominentes */
.books-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 28px; }
.books-grid .card .cover-image { aspect-ratio: 2 / 3; object-fit: cover; width: 100%; }

/* Autores grid: fotos cuadradas, look editorial */
.authors-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.authors-grid .card .author-image { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; }

/* -----------------------------------------------------------------------------
   8) Featured layout — libro destacado o autor destacado.
   -------------------------------------------------------------------------- */
.featured-layout,
.book-hero,
.author-hero {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 36px;
    box-shadow: var(--shadow-card);
}
.book-hero h1, .author-hero h1 { margin-top: 0; }
.book-hero .eyebrow, .author-hero .eyebrow { display: inline-block; margin-bottom: 8px; }

/* -----------------------------------------------------------------------------
   9) Footer — quieto, editorial, sin estridencias.
   -------------------------------------------------------------------------- */
.site-footer {
    padding: 64px 0 40px;
    background: var(--paz-cream);
    border-top: 1px solid var(--line);
    color: var(--paz-graphite);
}
.site-footer h3, .site-footer h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--paz-ink);
    margin: 0 0 14px;
    font-family: var(--font-accent);
    font-weight: 400;
}
.site-footer a { color: var(--paz-graphite); }
.site-footer a:hover { color: var(--paz-celeste-strong); }
.footer-links li { padding: 3px 0; }

/* -----------------------------------------------------------------------------
   10) Notice / status badges — acordes a la paleta.
   -------------------------------------------------------------------------- */
.notice-inline {
    border-radius: 12px;
    background: var(--paz-celeste-soft);
    border-color: rgba(4, 178, 217, 0.18);
}
.status-badge { font-family: var(--font-body); }
.status-pending  { background: #FFF4DC; color: #8a5a00; }
.status-approved { background: #E1F7E8; color: #1f7a3a; }
.status-rejected { background: #FBE4E4; color: #9a2424; }
.status-changes_requested { background: var(--paz-celeste-soft); color: var(--paz-celeste-strong); }

/* -----------------------------------------------------------------------------
   11) Ajustes responsive del brand layer.
   -------------------------------------------------------------------------- */
@media (max-width: 960px) {
    .hero { padding: 72px 0 60px; }
    .section { padding: 60px 0; }
    .section-head { flex-direction: column; align-items: start; gap: 8px; }
    .header-inner { min-height: 70px; }
    .site-nav ul { gap: 16px; }
}

@media (max-width: 640px) {
    .hero { padding: 56px 0 44px; }
    .section { padding: 48px 0; }
    .books-grid, .authors-grid { gap: 20px; }
}

/* -----------------------------------------------------------------------------
   12) Texto comercial estructurado del libro (Argumentos / Gancho / Desc / CTA).
   -------------------------------------------------------------------------- */
.paz-book-commercial {
    max-width: 720px;
    margin: 0;
}

/* Bullets — argumentos de venta */
.paz-book-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    gap: 14px;
}
.paz-book-bullets li {
    position: relative;
    padding-left: 26px;
    line-height: 1.55;
    color: var(--paz-graphite);
    font-size: 16px;
}
.paz-book-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--paz-celeste);
}
.paz-book-bullets li strong {
    color: var(--paz-ink);
    font-weight: 700;
}

/* Frase gancho — celeste, negrita, con peso editorial */
.paz-book-hook {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.2vw, 26px);
    line-height: 1.25;
    font-weight: 700;
    color: var(--paz-celeste);
    margin: 32px 0 20px;
    letter-spacing: -0.005em;
}

/* Párrafos de descripción */
.paz-book-description-p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--paz-graphite);
    margin: 0 0 16px;
}

/* CTA — frase de cierre en negrita */
.paz-book-cta {
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 700;
    color: var(--paz-ink);
}

/* Espaciados ajustados en single-content */
.single-content.prose { padding-top: 12px; }

/* -----------------------------------------------------------------------------
   13) Layout de dos columnas en la ficha del libro: texto comercial + ficha técnica.
   -------------------------------------------------------------------------- */
.book-detail-grid {
    display: grid;
    gap: 40px;
    margin-top: 64px;
    align-items: start;
}
.book-detail-grid.has-techsheet {
    grid-template-columns: minmax(0, 1fr) 300px;
}
.book-detail-grid.no-techsheet {
    grid-template-columns: minmax(0, 1fr);
}
.book-detail-main { min-width: 0; }

/* Panel de ficha técnica — estilo editorial tipo PDF */
.techsheet-panel {
    background: var(--paz-cream);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px 22px;
}
.techsheet-title {
    font-family: var(--font-accent);
    font-size: 15px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--paz-ink);
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--paz-celeste);
    font-weight: 400;
}
.techsheet-list {
    margin: 0;
    display: grid;
    gap: 14px;
}
.techsheet-row {
    display: grid;
    gap: 2px;
    margin: 0;
}
.techsheet-row dt {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--paz-warm-gray);
    font-weight: 600;
    margin: 0;
}
.techsheet-row dd {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--paz-ink);
    line-height: 1.35;
}

/* Responsive: en mobile la ficha técnica baja debajo del texto comercial */
@media (max-width: 880px) {
    .book-detail-grid.has-techsheet {
        grid-template-columns: 1fr;
    }
    .book-detail-aside { order: 2; }
    .book-detail-main { order: 1; }
    .techsheet-panel { max-width: 480px; }
}

/* -----------------------------------------------------------------------------
   14) Bloques de relaciones (libros/autores/noticias mencionados).
   -------------------------------------------------------------------------- */
.paz-related-block {
    margin: 56px 0 0;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}
.paz-related-title {
    font-family: var(--font-display);
    font-size: var(--fs-h3);
    color: var(--paz-ink);
    margin: 0 0 24px;
    font-weight: 700;
    position: relative;
    padding-bottom: 14px;
}
.paz-related-title::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 48px; height: 3px;
    background: var(--paz-celeste);
    border-radius: 2px;
}
.paz-related-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

/* Tarjeta de libro mencionado */
.paz-related-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    transition: transform var(--tr-base), box-shadow var(--tr-base), border-color var(--tr-base);
}
.paz-related-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(4, 178, 217, 0.25);
    color: inherit;
}
.paz-related-cover {
    aspect-ratio: 2 / 3;
    background: var(--paz-cream);
    overflow: hidden;
}
.paz-related-cover img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.paz-related-photo {
    aspect-ratio: 1 / 1;
    background: var(--paz-cream);
    overflow: hidden;
}
.paz-related-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.paz-related-info {
    padding: 14px 16px 18px;
}
.paz-related-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--paz-ink);
    margin: 0 0 4px;
    line-height: 1.3;
}
.paz-related-author {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
}

/* Bloque "Noticias relacionadas" — formato horizontal (thumb + texto) */
.paz-related-news-list {
    display: grid;
    gap: 18px;
}
.paz-related-news-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 18px;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    transition: transform var(--tr-base), box-shadow var(--tr-base), border-color var(--tr-base);
}
.paz-related-news-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(4, 178, 217, 0.25);
    color: inherit;
}
.paz-related-news-thumb {
    width: 100%; height: 100%;
    background: var(--paz-cream);
    overflow: hidden;
    min-height: 110px;
}
.paz-related-news-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.paz-related-news-text {
    padding: 14px 18px 14px 0;
}
.paz-related-news-date {
    font-family: var(--font-accent);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--paz-celeste-strong);
    display: block;
    margin-bottom: 6px;
}
.paz-related-news-text h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--paz-ink);
    margin: 0 0 6px;
    line-height: 1.3;
}
.paz-related-news-text p {
    margin: 0;
    font-size: 14px;
    color: var(--paz-graphite);
    line-height: 1.5;
}

/* Hero de la noticia (single-noticia_editorial) */
.single-news-layout .news-hero {
    margin-bottom: 36px;
    padding-bottom: 12px;
}
.single-news-layout .news-hero h1 {
    margin: 6px 0 24px;
}
.single-news-layout .news-cover {
    border-radius: 18px;
    overflow: hidden;
    margin-top: 12px;
}
.single-news-layout .news-cover img {
    width: 100%; height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 640px) {
    .paz-related-news-item {
        grid-template-columns: 100px 1fr;
        gap: 12px;
    }
    .paz-related-news-text {
        padding: 12px 14px 12px 0;
    }
    .paz-related-news-text h4 { font-size: 15px; }
    .paz-related-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 16px; }
}

/* =============================================================================
   PASO 4a — Ficha de libro estilo editorial (HarperCollins-like)
   ========================================================================== */

/* -----------------------------------------------------------------------------
   Hero del libro: portada protagonista + info con jerarquía editorial.
   -------------------------------------------------------------------------- */
.book-hero-editorial {
    display: grid;
    grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
    padding: 16px 0 12px;
}
.book-hero-cover-col {
    position: sticky;
    top: 100px;
}
.book-hero-cover-wrap {
    aspect-ratio: 2 / 3;
    background: var(--paz-cream);
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 4px 6px rgba(20, 30, 50, 0.04),
        0 20px 50px rgba(20, 30, 50, 0.18);
    transform: none;
    transition: transform var(--tr-base);
}
.book-hero-cover-wrap:hover { transform: translateY(-3px); }
.book-hero-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.book-hero-info-col { padding-top: 8px; min-width: 0; }

.book-hero-info-col .eyebrow { display: block; margin-bottom: 8px; }

.book-hero-title {
    font-family: var(--font-display);
    font-size: clamp(34px, 4.4vw, 56px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--paz-ink);
    margin: 0 0 14px;
}

.book-hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(18px, 1.7vw, 22px);
    line-height: 1.35;
    font-weight: 500;
    color: var(--paz-graphite);
    margin: 0 0 24px;
    letter-spacing: -0.005em;
}

/* Línea de autor con mini-avatar */
.book-hero-author {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 6px 14px 6px 6px;
    background: var(--paz-cream);
    border: 1px solid var(--line);
    border-radius: 999px;
    text-decoration: none;
    color: var(--paz-ink);
    margin: 0 0 28px;
    transition: background var(--tr-base), border-color var(--tr-base), transform var(--tr-fast);
}
.book-hero-author:hover {
    background: var(--paz-celeste-soft);
    border-color: rgba(4, 178, 217, 0.3);
    color: var(--paz-celeste-strong);
    transform: translateY(-1px);
}
.book-hero-author-photo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--paz-cream);
    flex-shrink: 0;
}
.book-hero-author-photo img,
.book-hero-author-photo .book-hero-author-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.book-hero-author-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.book-hero-author-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    font-family: var(--font-accent);
    font-weight: 400;
}
.book-hero-author-name {
    font-size: 15px;
    font-weight: 700;
    color: inherit;
}

/* Blurb / sinopsis corta destacada */
.book-hero-blurb {
    font-size: 17px;
    line-height: 1.55;
    color: var(--paz-graphite);
    margin: 0 0 32px;
    max-width: 600px;
}

/* Botonera */
.book-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}
.book-hero-actions .button { font-size: 15px; padding: 14px 26px; }

/* -----------------------------------------------------------------------------
   Tarjetas de libro en grid: jerarquía editorial.
   -------------------------------------------------------------------------- */
.book-card-editorial {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    transition: transform var(--tr-base);
}
.book-card-editorial:hover {
    transform: translateY(-4px);
    background: transparent;
    box-shadow: none;
    border-color: transparent;
}
.book-card-editorial .book-card-cover {
    display: block;
    aspect-ratio: 2 / 3;
    background: var(--paz-cream);
    border-radius: 10px;
    overflow: hidden;
    box-shadow:
        0 1px 2px rgba(20, 30, 50, 0.04),
        0 10px 28px rgba(20, 30, 50, 0.12);
    transition: box-shadow var(--tr-base);
}
.book-card-editorial:hover .book-card-cover {
    box-shadow:
        0 2px 4px rgba(20, 30, 50, 0.06),
        0 18px 40px rgba(20, 30, 50, 0.18);
}
.book-card-editorial .book-card-cover img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.book-card-body {
    padding: 16px 4px 0;
}
.book-card-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 4px;
    color: var(--paz-ink);
}
.book-card-title a {
    color: inherit;
    text-decoration: none;
}
.book-card-title a:hover { color: var(--paz-celeste-strong); }
.book-card-author {
    font-size: 13px;
    color: var(--muted);
    margin: 0 0 4px;
    font-weight: 500;
}
.book-card-subtitle {
    font-size: 13px;
    color: var(--paz-warm-gray);
    margin: 0;
    line-height: 1.4;
    font-style: italic;
}

/* "Más libros del autor" — grid editorial */
.paz-related-books-author .grid.books-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 32px;
}

/* -----------------------------------------------------------------------------
   Ajustes responsive del hero.
   -------------------------------------------------------------------------- */
@media (max-width: 960px) {
    .book-hero-editorial {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .book-hero-cover-col {
        position: static;
        max-width: 280px;
        margin: 0 auto;
    }
    .book-hero-info-col { text-align: left; }
}

@media (max-width: 640px) {
    .book-hero-cover-col { max-width: 220px; }
    .book-hero-title { font-size: clamp(28px, 8vw, 38px); }
    .book-hero-subtitle { font-size: 17px; }
    .book-hero-blurb { font-size: 16px; }
}

/* =============================================================================
   PASO 4b — Ficha de autor estilo editorial
   ========================================================================== */

/* -----------------------------------------------------------------------------
   Hero del autor: foto cuadrada + nombre XL + bio corta destacada.
   Mismo patrón de dos columnas que la ficha de libro.
   -------------------------------------------------------------------------- */
.author-hero-editorial {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 56px;
    align-items: start;
    padding: 16px 0 12px;
}

/* Columna izquierda: foto */
.author-hero-photo-col { text-align: center; }

.author-hero-photo-wrap {
    width: 280px;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 4px 6px rgba(20, 30, 50, 0.04),
        0 20px 50px rgba(20, 30, 50, 0.15);
    background: var(--paz-cream);
    margin: 0 auto;
}
.author-hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Placeholder cuando no hay foto: inicial del nombre sobre fondo celeste */
.author-hero-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--paz-celeste) 0%, var(--paz-celeste-strong) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.author-hero-photo-placeholder span {
    font-family: var(--font-display);
    font-size: 120px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1;
    letter-spacing: -0.02em;
}

.author-hero-book-count {
    font-family: var(--font-accent);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 14px 0 0;
}

/* Columna derecha: info */
.author-hero-info-col { padding-top: 8px; }

.author-hero-info-col .eyebrow { display: block; margin-bottom: 8px; }

.author-hero-name {
    font-family: var(--font-display);
    font-size: clamp(34px, 4.4vw, 56px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--paz-ink);
    margin: 0 0 20px;
}

.author-hero-bio-short {
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.5;
    color: var(--paz-graphite);
    max-width: 560px;
    font-weight: 400;
    margin: 0;
}

/* Bio larga */
.author-bio-long {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    max-width: 760px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--paz-graphite);
}

/* Título de la sección libros del autor */
.paz-author-books .paz-related-title { margin-bottom: 28px; }
.paz-author-books-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 32px;
}

/* -----------------------------------------------------------------------------
   Tarjeta de autor (usada en grids de la home y otros bloques).
   Sin contenedor blanco alrededor, mismo patrón que book-card-editorial.
   -------------------------------------------------------------------------- */
.author-card-editorial {
    background: transparent;
    border: 0;
    border-radius: 0;
    overflow: visible;
    transition: transform var(--tr-base);
}
.author-card-editorial:hover { transform: translateY(-4px); }

.author-card-editorial .author-card-photo {
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    background: var(--paz-cream);
    box-shadow:
        0 1px 2px rgba(20, 30, 50, 0.04),
        0 10px 28px rgba(20, 30, 50, 0.10);
    transition: box-shadow var(--tr-base);
}
.author-card-editorial:hover .author-card-photo {
    box-shadow:
        0 2px 4px rgba(20, 30, 50, 0.06),
        0 18px 40px rgba(20, 30, 50, 0.16);
}
.author-card-editorial .author-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Placeholder en tarjeta: inicial centrada */
.author-card-editorial .author-card-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--paz-celeste) 0%, var(--paz-celeste-strong) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.author-card-editorial .author-card-photo-placeholder span {
    font-family: var(--font-display);
    font-size: 3em;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1;
}

.author-card-body { padding: 14px 4px 0; }

.author-card-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 6px;
    color: var(--paz-ink);
}
.author-card-name a {
    color: inherit;
    text-decoration: none;
}
.author-card-name a:hover { color: var(--paz-celeste-strong); }

.author-card-bio {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
    line-height: 1.45;
}

/* -----------------------------------------------------------------------------
   Responsive del hero del autor.
   -------------------------------------------------------------------------- */
@media (max-width: 860px) {
    .author-hero-editorial {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .author-hero-photo-wrap {
        width: 200px;
        height: 200px;
    }
    .author-hero-photo-placeholder span { font-size: 80px; }
    .author-hero-book-count { margin-top: 10px; }
}

@media (max-width: 640px) {
    .author-hero-photo-wrap { width: 160px; height: 160px; }
    .author-hero-name { font-size: clamp(28px, 8vw, 38px); }
    .author-bio-long { font-size: 16px; }
    .paz-author-books-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 20px; }
}

/* =============================================================================
   HOME BUILDER — Estilos de todos los bloques del Constructor Home
   Cubre tanto tipos V1 (full_banner, book_category, etc.)
   como tipos V2 (hero, banners, libros_categoria, novedades, etc.)
   ========================================================================== */

/* -----------------------------------------------------------------------------
   H1) Encabezado de sección — títulos de bloques con "Ver todos"
   -------------------------------------------------------------------------- */
.paz-books-head,
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--paz-celeste);
}
.paz-books-head h2,
.section-head h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: var(--fs-h2);
    font-weight: 700;
    color: var(--paz-ink);
}
.paz-books-head a,
.section-head a {
    font-family: var(--font-accent);
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--paz-celeste-strong);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}
.paz-books-head a:hover,
.section-head a:hover { color: var(--paz-ink); }

/* -----------------------------------------------------------------------------
   H2) Banners — full, 2 y 3 columnas
   -------------------------------------------------------------------------- */
.paz-banner-full {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    max-height: 380px;
    background: var(--paz-cream);
}
.paz-banner-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--tr-base);
}
.paz-banner-full:hover img { transform: scale(1.02); }
.paz-banner-title {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 16px 20px;
    background: linear-gradient(transparent, rgba(20,30,50,.55));
    color: #fff;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
}

.paz-banners-2,
.paz-banners-3 {
    display: grid;
    gap: 20px;
}
.paz-banners-2 { grid-template-columns: 1fr 1fr; }
.paz-banners-3 { grid-template-columns: 1fr 1fr 1fr; }

.paz-banner {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    background: var(--paz-cream);
    position: relative;
    aspect-ratio: 3 / 2;
    transition: transform var(--tr-base), box-shadow var(--tr-base);
    text-decoration: none;
}
.paz-banner:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
}
.paz-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* -----------------------------------------------------------------------------
   H3) Carrusel de libros — contenedor + flechas + tarjetas
   -------------------------------------------------------------------------- */
.paz-books-carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}
.paz-books-row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    flex: 1;
    min-width: 0;
}
/* Ocultar scrollbar pero mantener funcionalidad */
.paz-books-row::-webkit-scrollbar { height: 4px; }
.paz-books-row::-webkit-scrollbar-track { background: var(--paz-cream); border-radius: 2px; }
.paz-books-row::-webkit-scrollbar-thumb { background: var(--paz-celeste); border-radius: 2px; }

/* Tarjeta de libro en el carrusel */
.book-card-shelf {
    flex-shrink: 0;
    width: 180px;
    scroll-snap-align: start;
}
.book-card-shelf a {
    display: block;
    text-decoration: none;
    color: inherit;
}
.book-card-shelf img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    box-shadow:
        0 1px 2px rgba(20,30,50,.04),
        0 8px 24px rgba(20,30,50,.12);
    transition: box-shadow var(--tr-base), transform var(--tr-base);
}
.book-card-shelf:hover img {
    box-shadow:
        0 2px 4px rgba(20,30,50,.06),
        0 16px 36px rgba(20,30,50,.18);
    transform: translateY(-2px);
}
.book-card-shelf h3 {
    margin: 10px 0 4px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--paz-ink);
}
.book-card-shelf h3 a { color: inherit; text-decoration: none; }
.book-card-shelf h3 a:hover { color: var(--paz-celeste-strong); }

/* Flechas del carrusel */
.paz-carousel-arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    background: #fff;
    color: var(--paz-ink);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--tr-base), border-color var(--tr-base), color var(--tr-base);
    line-height: 1;
}
.paz-carousel-arrow:hover {
    background: var(--paz-celeste);
    border-color: var(--paz-celeste);
    color: #fff;
}

/* JS del carrusel */
<CSSEOF

# Agregar por separado para evitar el heredoc anidado
cat >> /home/claude/work/pagina-azul-theme-v0.4.1/assets/css/brand.css << ''
/* -----------------------------------------------------------------------------
   H4) Carrusel de autores
   -------------------------------------------------------------------------- */
.authors-carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}
.authors-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    flex: 1;
    min-width: 0;
}
.authors-carousel::-webkit-scrollbar { height: 4px; }
.authors-carousel::-webkit-scrollbar-thumb { background: var(--paz-celeste); border-radius: 2px; }

.author-card {
    flex-shrink: 0;
    width: 180px;
    scroll-snap-align: start;
    text-decoration: none;
    color: inherit;
}
.author-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}
.author-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    box-shadow:
        0 1px 2px rgba(20,30,50,.04),
        0 8px 24px rgba(20,30,50,.10);
    transition: box-shadow var(--tr-base), transform var(--tr-base);
}
.author-card:hover img {
    box-shadow:
        0 2px 4px rgba(20,30,50,.06),
        0 16px 36px rgba(20,30,50,.16);
    transform: translateY(-2px);
}
.author-name,
.author-card h3 {
    margin: 10px 0 4px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--paz-ink);
    line-height: 1.25;
}

/* -----------------------------------------------------------------------------
   H5) Noticias — grid estilo HarperCollins events
   -------------------------------------------------------------------------- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}
.news-card {
    display: flex;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    transition: transform var(--tr-base), box-shadow var(--tr-base), border-color var(--tr-base);
    padding: 0;
}
.news-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(4,178,217,.25);
    color: inherit;
}
/* Imagen de la noticia (si existe) */
.news-card img {
    width: 120px;
    min-height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}
/* Contenido de la noticia */
.news-card h3,
.news-card > div > h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--paz-ink);
    margin: 0 0 6px;
    line-height: 1.3;
    padding: 16px 16px 0;
}
.news-card .excerpt {
    font-size: 13px;
    color: var(--paz-graphite);
    line-height: 1.5;
    margin: 0;
    padding: 0 16px 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* Fallback sin imagen: centrar contenido */
.news-card article {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* -----------------------------------------------------------------------------
   H6) JavaScript del carrusel (inline, aplicado a .paz-books-row y .authors-carousel)
   -------------------------------------------------------------------------- */

/* -----------------------------------------------------------------------------
   H7) Sección "Autor del momento" en la home
   -------------------------------------------------------------------------- */
@media (max-width: 760px) {
    .paz-banners-2,
    .paz-banners-3 { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .book-card-shelf { width: 150px; }
    .author-card { width: 150px; }
}
/* -----------------------------------------------------------------------------
   H6) News card con imagen y texto correctamente layouteados
   -------------------------------------------------------------------------- */
.news-card-wrap { }
.news-card {
    display: flex;
    gap: 0;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    transition: transform var(--tr-base), box-shadow var(--tr-base), border-color var(--tr-base);
    min-height: 120px;
}
.news-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(4, 178, 217, .25);
    color: inherit;
}
.news-card img {
    width: 120px;
    min-height: 100%;
    max-height: 160px;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
    border-radius: 0;
}
.news-card-text {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 0;
}
.news-card h3,
.news-card .news-card-text h3 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--paz-ink);
    margin: 0;
    line-height: 1.3;
}
.news-card .excerpt {
    font-size: 13px;
    color: var(--paz-graphite);
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* -----------------------------------------------------------------------------
   H7) Placeholder de autor en carrusel (sin foto)
   -------------------------------------------------------------------------- */
.author-card .author-card-photo-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, var(--paz-celeste) 0%, var(--paz-celeste-strong) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.author-card .author-card-photo-placeholder span {
    font-family: var(--font-display);
    font-size: 2.5em;
    font-weight: 800;
    color: rgba(255, 255, 255, .9);
    line-height: 1;
}

/* -----------------------------------------------------------------------------
   H8) Secciones del home — espaciado consistente
   -------------------------------------------------------------------------- */
.container.section,
section.container.section {
    padding-top: 56px;
    padding-bottom: 56px;
}
section.section {
    padding-top: 56px;
    padding-bottom: 56px;
}
.section-highlight {
    background: var(--paz-cream);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

/* -----------------------------------------------------------------------------
   H9) Responsive final del home
   -------------------------------------------------------------------------- */
@media (max-width: 760px) {
    .paz-banners-2,
    .paz-banners-3 { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .book-card-shelf { width: 150px; }
    .author-card { width: 150px; }
    .container.section,
    section.container.section,
    section.section { padding-top: 36px; padding-bottom: 36px; }
    .news-card img { width: 90px; }
}

/* =============================================================================
   TARJETA DE LIBRO — Nueva versión para carruseles del home
   Sin borde redondeado ni fondo blanco. Portada sola + hover overlay con íconos.
   ========================================================================== */
.paz-book-card-shelf {
    flex-shrink: 0;
    width: 180px;
    scroll-snap-align: start;
}

/* Contenedor de portada: position relative para el overlay */
.paz-book-card-cover {
    position: relative;
    border-radius: 0;
    overflow: hidden;
}
.paz-book-card-cover-link {
    display: block;
    text-decoration: none;
}
.paz-book-card-cover img,
.paz-book-card-cover .paz-book-no-cover {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    display: block;
    box-shadow:
        0 2px 6px rgba(20, 30, 50, .08),
        0 10px 30px rgba(20, 30, 50, .16);
    transition: box-shadow var(--tr-base), transform var(--tr-base);
}
.paz-book-card-shelf:hover .paz-book-card-cover img {
    box-shadow:
        0 4px 10px rgba(20, 30, 50, .12),
        0 20px 44px rgba(20, 30, 50, .24);
    transform: translateY(-3px);
}
.paz-book-no-cover {
    background: var(--paz-cream);
}

/* Overlay que aparece en hover */
.paz-book-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 30, .62);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    opacity: 0;
    transition: opacity .22s ease;
}
.paz-book-card-shelf:hover .paz-book-card-overlay { opacity: 1; }

/* Botones del overlay */
.paz-book-overlay-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    border: 1.5px solid rgba(255, 255, 255, .55);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background .18s, transform .18s, border-color .18s;
    transform: translateY(8px);
    opacity: 0;
}
.paz-book-card-shelf:hover .paz-book-overlay-btn {
    transform: translateY(0);
    opacity: 1;
}
/* Escalonado: cada ícono aparece con un pequeño delay */
.paz-book-card-shelf:hover .paz-book-overlay-btn:nth-child(1) { transition-delay: .04s; }
.paz-book-card-shelf:hover .paz-book-overlay-btn:nth-child(2) { transition-delay: .09s; }
.paz-book-card-shelf:hover .paz-book-overlay-btn:nth-child(3) { transition-delay: .14s; }
.paz-book-overlay-btn:hover {
    background: var(--paz-celeste);
    border-color: var(--paz-celeste);
    transform: translateY(-2px) scale(1.08);
}
.paz-book-overlay-btn img { width: 22px; height: 22px; object-fit: contain; filter: brightness(0) invert(1); }
.paz-book-overlay-btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Meta: título y autor debajo de la portada */
.paz-book-card-meta {
    padding: 10px 2px 0;
}
.paz-book-card-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 4px;
    color: var(--paz-ink);
}
.paz-book-card-title a {
    color: inherit;
    text-decoration: none;
}
.paz-book-card-title a:hover { color: var(--paz-celeste-strong); }
.paz-book-card-author {
    font-size: 12px;
    color: var(--muted);
    margin: 0;
    font-weight: 500;
}

/* Fecha de lanzamiento (proximos_lanzamientos) */
.paz-book-card-with-date { flex-shrink: 0; width: 180px; scroll-snap-align: start; }
.paz-release-label {
    text-align: center;
    margin: 0 0 6px;
    font-size: 11px;
}

/* =============================================================================
   BLOQUE "AUTOR DEL MOMENTO" — Rediseño estilo editorial
   Columna izquierda: portadas | Centro: foto | Derecha: info
   ========================================================================== */
.paz-autor-momento {
    background: var(--paz-cream);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 64px 0;
}
.paz-autor-momento-title {
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(20px, 2.5vw, 30px);
    font-weight: 800;
    letter-spacing: .12em;
    color: var(--paz-ink);
    margin: 0 0 8px;
}
/* Línea decorativa roja debajo del título */
.paz-autor-momento-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: #c5221f;
    margin: 10px auto 40px;
    border-radius: 2px;
}

.paz-autor-momento-grid {
    display: grid;
    grid-template-columns: 180px 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 980px;
    margin: 0 auto;
}

/* Columna izquierda: 2 portadas apiladas */
.paz-autor-momento-books {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.paz-autor-momento-book-thumb {
    display: block;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(20,30,50,.18);
    transition: transform .2s, box-shadow .2s;
}
.paz-autor-momento-book-thumb:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(20,30,50,.26);
}
.paz-autor-momento-book-thumb img {
    width: 100%;
    height: auto;
    display: block;
}
.paz-book-no-cover {
    width: 100%;
    aspect-ratio: 2/3;
    background: var(--paz-cream);
}

/* Centro: foto del autor */
.paz-autor-momento-photo {
    position: relative;
}
.paz-autor-momento-photo img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 0;
    box-shadow: 0 6px 32px rgba(20,30,50,.2);
}
.paz-autor-momento-photo-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--paz-celeste) 0%, var(--paz-celeste-strong) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.paz-autor-momento-photo-placeholder span {
    font-family: var(--font-display);
    font-size: 6em;
    font-weight: 800;
    color: rgba(255,255,255,.85);
}

/* Derecha: info */
.paz-autor-momento-info {}
.paz-autor-momento-label {
    font-family: var(--font-accent);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--paz-celeste-strong);
    margin: 0 0 8px;
}
.paz-autor-momento-name {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.5vw, 34px);
    font-weight: 800;
    color: var(--paz-ink);
    margin: 0 0 16px;
    line-height: 1.1;
}
.paz-autor-momento-bio {
    font-size: 15px;
    line-height: 1.6;
    color: var(--paz-graphite);
    font-style: italic;
    margin: 0 0 24px;
}
.paz-autor-momento-actions { margin-bottom: 20px; }
.paz-autor-momento-social {
    display: flex;
    gap: 12px;
    align-items: center;
}
.paz-social-icon {
    color: var(--muted);
    display: flex;
    align-items: center;
    transition: color .15s;
    text-decoration: none;
}
.paz-social-icon:hover { color: var(--paz-celeste-strong); }

/* Logo en el header */
.site-logo-img {
    height: 44px;
    width: auto;
    display: block;
    max-width: 200px;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 860px) {
    .paz-autor-momento-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
    .paz-autor-momento-books {
        flex-direction: row;
        justify-content: center;
    }
    .paz-autor-momento-book-thumb { width: 120px; }
    .paz-book-card-shelf,
    .paz-book-card-with-date { width: 150px; }
}

/* =============================================================================
   FICHA DE LIBRO — Detalles visuales y botones de tienda
   ========================================================================== */

/* Botón de tienda con ícono */
.book-hero-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.book-hero-store-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
    filter: none;
}

/* Ficha técnica — mejora visual */
.techsheet-panel {
    background: var(--paz-cream);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    position: sticky;
    top: 100px;
}
.techsheet-title {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    padding: 16px 20px 12px;
    margin: 0;
    border-bottom: 1px solid var(--line);
    background: #fff;
}
.techsheet-list {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    display: grid;
}
.techsheet-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 12px;
    padding: 10px 20px;
    border-bottom: 1px solid var(--line);
    align-items: baseline;
}
.techsheet-row:last-child { border-bottom: none; }
.techsheet-row dt {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    font-family: var(--font-accent);
}
.techsheet-row dd {
    font-size: 14px;
    font-weight: 600;
    color: var(--paz-ink);
    margin: 0;
    word-break: break-word;
}

/* Sección "Más del autor" al final de la ficha */
.paz-related-block {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid var(--line);
}
.paz-related-title {
    font-family: var(--font-display);
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 800;
    color: var(--paz-ink);
    margin: 0 0 6px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--paz-celeste);
    display: inline-block;
}

/* Grid de libros relacionados */
.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 28px;
    margin-top: 28px;
}

/* Grid de noticias relacionadas */
.paz-related-news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 20px;
}
/* Nota: .paz-related-news-item ya está definido arriba con grid 140px/1fr.
   Solo agregamos los ajustes de padding que faltaban sin sobrescribir el layout. */
.paz-related-news-item {
    padding: 0;
    overflow: hidden;
}
.paz-related-news-item img {
    /* No sobrescribir — la imagen la maneja .paz-related-news-thumb */
}
    overflow: hidden;
}

/* Responsive ficha */
@media (max-width: 900px) {
    .book-hero-editorial {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .book-hero-cover-col { position: static; max-width: 280px; }
    .book-hero-cover-wrap { aspect-ratio: 2/3; }
    .techsheet-panel { position: static; }
    .books-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 20px; }
}

/* =============================================================================
   REFINAMIENTO ESTÉTICO — Correcciones basadas en revisión visual completa
   Aplicadas encima de todo lo anterior, sin borrar nada.
   ========================================================================== */

/* -----------------------------------------------------------------------------
   R1) Botones — más finos, menos redondeados, más editoriales
   -------------------------------------------------------------------------- */
.button {
    border-radius: 6px;
    padding: 11px 22px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background var(--tr-base), color var(--tr-base), border-color var(--tr-base), box-shadow var(--tr-base);
}
.button-secondary {
    border-radius: 6px;
}
.book-hero-actions .button {
    font-size: 14px;
    padding: 11px 22px;
}

/* -----------------------------------------------------------------------------
   R2) Hero — quitar tarjeta blanca alrededor de la portada, reducir padding
   -------------------------------------------------------------------------- */
.hero {
    padding: 72px 0 64px;
}
.hero-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}
.hero-card img {
    border-radius: 10px;
    box-shadow:
        0 8px 20px rgba(20,30,50,.12),
        0 32px 80px rgba(20,30,50,.18);
    transition: transform .3s ease, box-shadow .3s ease;
    max-width: 340px;
    width: 100%;
}
.hero-card:hover img {
    transform: translateY(-6px);
    box-shadow:
        0 12px 30px rgba(20,30,50,.16),
        0 48px 100px rgba(20,30,50,.24);
}
.hero-grid {
    align-items: center;
}

/* -----------------------------------------------------------------------------
   R3) Hero del constructor V2 — eliminar tarjeta alrededor de la portada
   -------------------------------------------------------------------------- */
.paz-hero-slide .hero-card {
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.paz-hero-slide .hero-card img {
    border-radius: 10px;
    box-shadow:
        0 8px 20px rgba(20,30,50,.12),
        0 32px 80px rgba(20,30,50,.18);
    max-width: 320px;
    width: 100%;
    transition: transform .3s ease;
}

/* -----------------------------------------------------------------------------
   R4) Carrusel — flechas más sutiles, portadas altura consistente
   -------------------------------------------------------------------------- */
.paz-carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 18px;
    color: var(--paz-graphite);
    border-color: var(--line);
    background: #fff;
    opacity: .7;
    transition: opacity .15s, background .15s, border-color .15s;
    flex-shrink: 0;
}
.paz-carousel-arrow:hover {
    opacity: 1;
    background: var(--paz-celeste);
    border-color: var(--paz-celeste);
    color: #fff;
}
/* Portadas tamaño fijo sin deformación */
.paz-book-card-shelf {
    width: 170px;
}
.paz-book-card-cover img,
.paz-book-card-cover .paz-book-no-cover {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    object-position: center;
    box-shadow:
        0 2px 8px rgba(20,30,50,.08),
        0 12px 32px rgba(20,30,50,.14);
}
/* Eliminar línea celeste huérfana debajo del carrusel */
.paz-books-row::after,
.paz-books-carousel-wrap::after {
    display: none;
}

/* -----------------------------------------------------------------------------
   R5) Carrusel de autores — placeholder circular, fotos cuadradas consistentes
   -------------------------------------------------------------------------- */
.author-card img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center top;
    border-radius: 10px;
    width: 100%;
}
.author-card .author-card-photo-placeholder {
    border-radius: 10px;
    aspect-ratio: 1 / 1;
}

/* -----------------------------------------------------------------------------
   R6) Banners vacíos — ocultar cuando no tienen imagen cargada
   -------------------------------------------------------------------------- */
.paz-banner:not(:has(img)):not(:has([style*="background-image"])),
.paz-banner-full:not(:has(img)):not(:has([style*="background-image"])) {
    display: none;
}
/* Si el contenedor de 2/3 banners queda vacío, también lo ocultamos */
.paz-banners-2:empty,
.paz-banners-3:empty {
    display: none;
}

/* -----------------------------------------------------------------------------
   R7) Foto del autor del momento — editorial, sin border-radius exagerado
   -------------------------------------------------------------------------- */
.paz-autor-momento-photo img {
    border-radius: 4px;
    box-shadow: 0 8px 40px rgba(20,30,50,.22);
}
.paz-autor-momento-title {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: .08em;
}

/* -----------------------------------------------------------------------------
   R8) Título del bloque visible en el front — no mostrar si es nombre interno
   Los bloques sin título configurado no deben mostrar encabezado
   -------------------------------------------------------------------------- */
.paz-books-head h2:empty,
.section-head h2:empty {
    display: none;
}

/* -----------------------------------------------------------------------------
   R9) Noticias — tarjeta más equilibrada
   -------------------------------------------------------------------------- */
.news-card {
    border-radius: 10px;
}
.news-card img {
    width: 100px;
    min-width: 100px;
    max-height: 140px;
}
.news-card-text {
    padding: 14px 16px;
}
.news-card h3,
.news-card .news-card-text h3 {
    font-size: 14px;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
}

/* -----------------------------------------------------------------------------
   R10) Footer — más jerarquía y presencia editorial
   -------------------------------------------------------------------------- */
.site-footer {
    background: #0f1522;
    color: rgba(255,255,255,.65);
    padding: 60px 0 28px;
    font-size: 14px;
    line-height: 1.6;
}
.site-footer .container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-footer h3,
.site-footer h4 {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255,255,255,.35);
    margin: 0 0 16px;
}
.site-footer p {
    color: rgba(255,255,255,.55);
    font-size: 14px;
    line-height: 1.65;
    margin: 0 0 12px;
}
.site-footer a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .15s;
}
.site-footer a:hover { color: var(--paz-celeste); }
.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.site-footer ul li {
    padding: 4px 0;
}
.site-footer-bottom {
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,.25);
}

/* Logo en footer (si existe) */
.site-footer .site-logo-img {
    height: 32px;
    filter: brightness(0) invert(1);
    opacity: .7;
    margin-bottom: 16px;
}

/* -----------------------------------------------------------------------------
   R11) Espaciado entre secciones — más compacto, más ritmo
   -------------------------------------------------------------------------- */
.container.section,
section.container.section,
section.section {
    padding-top: 48px;
    padding-bottom: 48px;
}
.paz-books-head,
.section-head {
    margin-bottom: 24px;
    padding-bottom: 12px;
}
/* Separación entre el hero y la primera sección */
.paz-hero-slider + .container.section,
.paz-hero-slider + section {
    padding-top: 40px;
}

/* -----------------------------------------------------------------------------
   R12) Banner V1 (full_banner) — ocupar ancho completo sin cortes
   -------------------------------------------------------------------------- */
.paz-banner-full,
[class*="full-banner"],
.full-banner-block {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    max-height: none;
}
.paz-banner-full img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

/* -----------------------------------------------------------------------------
   R13) Mobile — compactar y reordenar
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .hero { padding: 48px 0 40px; }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .hero-card { order: -1; }
    .hero-card img {
        max-width: 220px;
        margin: 0 auto;
    }
    .paz-hero-slide .hero-card img {
        max-width: 200px;
        margin: 0 auto;
    }
    .paz-autor-momento-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 100%;
    }
    .paz-autor-momento-books {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
    }
    .paz-autor-momento-book-thumb { width: 100px; }
    .paz-autor-momento-photo img {
        max-width: 280px;
        margin: 0 auto;
    }
    .paz-autor-momento-info { text-align: center; }
    .paz-autor-momento-actions { justify-content: center; display: flex; }
    .paz-autor-momento-social { justify-content: center; }
    .button { font-size: 13px; padding: 10px 18px; }
    .site-footer .container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .paz-book-card-shelf,
    .paz-book-card-with-date { width: 140px; }
    .news-grid { grid-template-columns: 1fr; }
    .paz-books-head,
    .section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* -----------------------------------------------------------------------------
   R14) Correcciones del bloque banner V1 descuadrado
   -------------------------------------------------------------------------- */
.full-banner-section,
section.full-banner {
    padding: 0;
    margin: 0;
}
/* Asegurar que el contenedor del banner no tenga padding extra */
.container > .paz-banner-full {
    margin: 0 -20px;
    width: calc(100% + 40px);
    border-radius: 0;
}
@media (min-width: 769px) {
    .container > .paz-banner-full {
        margin: 0;
        width: 100%;
        border-radius: 12px;
    }
}

/* =============================================================================
   NOTICIAS RELACIONADAS — Rediseño elegante para la ficha de libro/autor
   ========================================================================== */

/* Redefinición limpia sin conflictos */
.paz-related-news-list {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}
.paz-related-news-item {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 0;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    min-height: 120px;
}
.paz-related-news-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(20,30,50,.10);
    border-color: rgba(4,178,217,.3);
    color: inherit;
}
.paz-related-news-thumb {
    overflow: hidden;
    background: var(--paz-cream);
    flex-shrink: 0;
}
.paz-related-news-thumb img {
    width: 100%;
    height: 100%;
    min-height: 120px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0;
}
.paz-related-news-text {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}
.paz-related-news-date {
    font-family: var(--font-accent);
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--paz-celeste-strong);
    display: block;
}
.paz-related-news-text h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--paz-ink);
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.paz-related-news-text p {
    margin: 0;
    font-size: 13px;
    color: var(--paz-graphite);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Mobile */
@media (max-width: 640px) {
    .paz-related-news-item {
        grid-template-columns: 110px 1fr;
        min-height: 100px;
    }
    .paz-related-news-thumb img { min-height: 100px; }
    .paz-related-news-text { padding: 14px 16px; }
    .paz-related-news-text h4 { font-size: 14px; }
}

/* =============================================================================
   BLOQUE NOTICIAS HOME — Diseño "Featured Post" estilo editorial oscuro
   ========================================================================== */
.paz-news-featured-section {
    background: #0f1522;
    padding: 64px 0;
    position: relative;
}

/* Encabezado con líneas laterales decorativas */
.paz-news-featured-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}
.paz-news-featured-header::before,
.paz-news-featured-header::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,.12);
}
.paz-news-featured-header h2 {
    font-family: var(--font-display);
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 700;
    color: #fff;
    margin: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Grid de noticias */
.paz-news-featured-grid {
    display: grid;
    gap: 28px;
}
.paz-news-cols-1 { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
.paz-news-cols-2 { grid-template-columns: repeat(2, 1fr); }
.paz-news-cols-3 { grid-template-columns: repeat(3, 1fr); }

/* Tarjeta */
.paz-news-featured-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
}
.paz-news-featured-inner {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #fff;
    height: 100%;
    transition: transform .2s ease;
}
.paz-news-featured-inner:hover {
    color: #fff;
    transform: translateY(-4px);
}

/* Imagen con pill de categoría encima */
.paz-news-featured-img {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(255,255,255,.05);
    margin-bottom: 20px;
}
.paz-news-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}
.paz-news-featured-inner:hover .paz-news-featured-img img {
    transform: scale(1.03);
}

/* Pill de categoría sobre la imagen */
.paz-news-featured-cat {
    position: absolute;
    bottom: 12px;
    left: 16px;
    background: var(--paz-celeste);
    color: #fff;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    padding: 4px 12px;
    border-radius: 99px;
    pointer-events: none;
}

/* Cuerpo de texto centrado */
.paz-news-featured-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}
.paz-news-featured-body h3 {
    font-family: var(--font-display);
    font-size: clamp(17px, 1.6vw, 22px);
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
    margin: 0;
}
.paz-news-featured-inner:hover .paz-news-featured-body h3 {
    color: var(--paz-celeste);
}
.paz-news-featured-body p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,.55);
    margin: 0;
    max-width: 360px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.paz-news-featured-link {
    font-family: var(--font-accent);
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-top: auto;
    padding-top: 8px;
    transition: color .15s;
}
.paz-news-featured-inner:hover .paz-news-featured-link {
    color: var(--paz-celeste);
}

/* Botón "Ver todas" al pie */
.paz-news-featured-footer {
    text-align: center;
    margin-top: 40px;
}
.paz-news-featured-footer .button {
    border-color: rgba(255,255,255,.25);
    color: rgba(255,255,255,.7);
    background: transparent;
}
.paz-news-featured-footer .button:hover {
    border-color: var(--paz-celeste);
    color: var(--paz-celeste);
    background: rgba(4,178,217,.08);
}

/* Responsive */
@media (max-width: 860px) {
    .paz-news-cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .paz-news-featured-section { padding: 48px 0; }
    .paz-news-cols-2,
    .paz-news-cols-3 { grid-template-columns: 1fr; }
    .paz-news-featured-header h2 { font-size: 18px; }
}
