/* ============================================================
   LUNA CRÍTICA — Custom Editorial Styles
   Estilo: The New Yorker digital / revista cultural de referencia
   Sobre Ghost Source theme v1.5.0
   ============================================================ */

/* ---------------------------------------------------------- */
/* 1. Variables y paleta editorial                            */
/* ---------------------------------------------------------- */

:root {
    /* Paleta Luna Crítica */
    --lc-cream: #F7F4EE;
    --lc-cream-dark: #EDE8DF;
    --lc-ink: #1A1A1A;
    --lc-ink-light: #2C2C2C;
    --lc-ink-muted: #555;
    --lc-ink-subtle: #888;
    --lc-accent: #8B1A1A;          /* Rojo editorial oscuro */
    --lc-accent-hover: #A52222;
    --lc-rule: rgba(26, 26, 26, 0.15);
    --lc-rule-strong: rgba(26, 26, 26, 0.35);
    --lc-rule-dark: rgba(26, 26, 26, 0.8);

    /* Tipografía */
    --lc-display: 'Playfair Display', 'Didot', 'Bodoni MT', Georgia, serif;
    --lc-body: 'EB Garamond', Georgia, 'Times New Roman', serif;
    --lc-sans: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --lc-mono: 'JetBrains Mono', Menlo, Consolas, monospace;

    /* Espaciado editorial */
    --lc-max-width: 720px;
    --lc-wide-width: 1200px;

    /* Override Ghost variables */
    --background-color: var(--lc-cream) !important;
    --color-primary-text: var(--lc-ink);
    --color-secondary-text: var(--lc-ink-muted);
    --color-border: var(--lc-rule);
    --ghost-accent-color: var(--lc-accent) !important;
}

/* ---------------------------------------------------------- */
/* 2. Base: fondo crema, tipografía editorial                 */
/* ---------------------------------------------------------- */

body {
    background-color: var(--lc-cream) !important;
    color: var(--lc-ink);
}

/* Títulos: Playfair Display */
.is-title,
h1, h2, h3, h4 {
    font-family: var(--lc-display) !important;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Cuerpo: EB Garamond */
.is-body,
p, li, blockquote, figcaption,
.gh-content {
    font-family: var(--lc-body) !important;
}

/* Override serif/sans classes del tema */
.has-serif-title .is-title { font-family: var(--lc-display) !important; }
.has-sans-title .is-title { font-family: var(--lc-display) !important; }
.has-serif-body .is-body { font-family: var(--lc-body) !important; }
.has-sans-body .is-body { font-family: var(--lc-body) !important; }

/* ---------------------------------------------------------- */
/* 3. Navegación — estilo masthead de revista                 */
/* ---------------------------------------------------------- */

.gh-navigation {
    background-color: var(--lc-cream) !important;
    border-bottom: 1px solid var(--lc-rule-strong);
    position: relative;
}

/* Línea decorativa superior (filete de cabecera) */
.gh-navigation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--lc-ink);
}

/* Logo tipográfico */
.gh-navigation-logo {
    font-family: var(--lc-display) !important;
    font-size: 2.4rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em;
    color: var(--lc-ink) !important;
}

.gh-navigation-logo img {
    max-height: none !important;
    max-width: 250px !important;
    height: auto !important;
}

/* Enlaces de navegación: versalitas con tracking */
.gh-navigation-menu .nav li a {
    font-family: var(--lc-sans) !important;
    font-size: 1.15rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: var(--lc-ink) !important;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.gh-navigation-menu .nav li a:hover {
    opacity: 1;
    color: var(--lc-accent) !important;
}

/* Botón Suscríbete */
.gh-navigation .gh-button,
.gh-navigation-members .gh-button {
    background-color: var(--lc-ink) !important;
    color: var(--lc-cream) !important;
    font-family: var(--lc-sans) !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    border-radius: 0 !important;
    padding: 8px 20px !important;
    border: 1px solid var(--lc-ink) !important;
    transition: all 0.2s ease;
}

.gh-navigation .gh-button:hover,
.gh-navigation-members .gh-button:hover {
    background-color: transparent !important;
    color: var(--lc-ink) !important;
}

/* Iniciar sesión */
.gh-navigation-members a:not(.gh-button) {
    font-family: var(--lc-sans) !important;
    font-size: 1.1rem !important;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lc-ink-muted) !important;
}

/* ---------------------------------------------------------- */
/* 4. Header / Hero de la home                                */
/* ---------------------------------------------------------- */

/* Landing header con cabecera de marca */
.gh-header.is-classic {
    background-color: var(--lc-cream-dark) !important;
    padding: 0 !important;
    position: relative;
    overflow: hidden;
}

.gh-header.is-classic.has-image {
    min-height: auto;
}

.gh-header-image {
    opacity: 0.92;
}

/* Título del header */
.gh-header-title {
    font-family: var(--lc-display) !important;
    font-size: clamp(2.8rem, 4vw, 4.2rem) !important;
    font-weight: 400 !important;
    font-style: italic;
    letter-spacing: 0;
    color: var(--lc-ink) !important;
    max-width: 600px;
    margin: 0 auto;
}

/* Formulario de suscripción en header */
.gh-header .gh-form {
    max-width: 480px;
    margin: 2rem auto 0;
}

.gh-header .gh-form-input {
    background: rgba(255,255,255,0.7) !important;
    border: 1px solid var(--lc-rule-strong) !important;
    border-radius: 0 !important;
    font-family: var(--lc-body) !important;
    font-size: 1.6rem;
}

.gh-header .gh-form .gh-button,
.gh-form .gh-button {
    background-color: var(--lc-ink) !important;
    border-radius: 0 !important;
    font-family: var(--lc-sans) !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
}

/* ---------------------------------------------------------- */
/* 5. Sección de artículos — Container                        */
/* ---------------------------------------------------------- */

/* Título de sección "Últimas entradas" */
.gh-container-title {
    font-family: var(--lc-sans) !important;
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    color: var(--lc-ink) !important;
    padding-bottom: 1.2rem;
    border-bottom: 2px solid var(--lc-ink);
    margin-bottom: 0;
}

/* Separador entre artículos en modo lista */
.gh-container.is-list .gh-feed {
    border-top: none;
}

.gh-container.is-list .gh-card {
    border-bottom: 1px solid var(--lc-rule);
    padding: 2.4rem 0;
}

.gh-container.is-list .gh-card:first-child {
    padding-top: 2.4rem;
}

/* "Ver todo" */
.gh-more a {
    font-family: var(--lc-sans) !important;
    font-size: 1.15rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    color: var(--lc-accent) !important;
}

.gh-more a:hover {
    color: var(--lc-accent-hover) !important;
}

/* ---------------------------------------------------------- */
/* 6. Cards de artículos — estilo magazine                    */
/* ---------------------------------------------------------- */

.gh-card-link {
    color: var(--lc-ink) !important;
}

.gh-card-link:hover {
    opacity: 1 !important;
}

/* Tag: versalitas rojas */
.gh-card-tag {
    font-family: var(--lc-sans) !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: var(--lc-accent) !important;
    margin-bottom: 0.4rem;
}

/* Título de card */
.gh-card-title,
h3.gh-card-title,
.gh-feed h3 {
    font-family: var(--lc-display) !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em !important;
    line-height: 1.2 !important;
    color: var(--lc-ink) !important;
}

/* En modo lista: título más grande */
.gh-container.is-list .gh-card-title {
    font-size: 2.6rem !important;
}

/* Hover: título en rojo editorial */
.gh-card-link:hover .gh-card-title {
    color: var(--lc-accent) !important;
}

/* Excerpt: Garamond */
.gh-card-excerpt {
    font-family: var(--lc-body) !important;
    font-size: 1.7rem !important;
    line-height: 1.55 !important;
    color: var(--lc-ink-muted) !important;
}

/* Meta: autor y fecha */
.gh-card-meta {
    font-family: var(--lc-sans) !important;
    font-size: 1.1rem !important;
    color: var(--lc-ink-subtle) !important;
    letter-spacing: 0.03em;
}

.gh-card-author {
    font-weight: 500;
    color: var(--lc-ink-muted) !important;
}

/* Imagen: proporción editorial con sutileza */
.gh-card-image img {
    border-radius: 0 !important;
    transition: opacity 0.3s ease;
}

.gh-card-link:hover .gh-card-image img {
    opacity: 0.88;
}

/* Grid: cards con más presencia */
.gh-container.is-grid .gh-card-title {
    font-size: 2.2rem !important;
}

/* ---------------------------------------------------------- */
/* 7. Artículo individual — lectura inmersiva                 */
/* ---------------------------------------------------------- */

/* Header del artículo */
.gh-article-header {
    margin-bottom: 3rem;
}

/* Tag del artículo */
.gh-article-tag {
    font-family: var(--lc-sans) !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: var(--lc-accent) !important;
    text-decoration: none !important;
    display: inline-block;
    margin-bottom: 1.2rem;
}

.gh-article-tag:hover {
    color: var(--lc-accent-hover) !important;
}

/* Título del artículo */
.gh-article-title {
    font-family: var(--lc-display) !important;
    font-size: clamp(3.2rem, 5vw, 5rem) !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
    line-height: 1.12 !important;
    color: var(--lc-ink) !important;
    margin-bottom: 0.4rem;
}

/* Extracto/subtítulo */
.gh-article-excerpt {
    font-family: var(--lc-body) !important;
    font-size: 2.2rem !important;
    line-height: 1.45 !important;
    color: var(--lc-ink-muted) !important;
    font-style: italic;
    border-left: 3px solid var(--lc-accent);
    padding-left: 1.6rem;
    margin-top: 1.6rem;
}

/* Meta del autor */
.gh-article-meta {
    margin-top: 2.4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--lc-rule);
}

.gh-article-author-name a {
    font-family: var(--lc-sans) !important;
    font-weight: 600 !important;
    color: var(--lc-ink) !important;
    text-decoration: none;
}

.gh-article-meta-date,
.gh-article-meta-length {
    font-family: var(--lc-sans) !important;
    font-size: 1.2rem !important;
    color: var(--lc-ink-subtle) !important;
    letter-spacing: 0.02em;
}

/* Feature image */
.gh-article-image {
    border-radius: 0 !important;
}

/* Contenido del artículo */
.gh-content {
    font-family: var(--lc-body) !important;
    font-size: 2rem !important;
    line-height: 1.72 !important;
    color: var(--lc-ink-light) !important;
}

.gh-content p {
    margin-bottom: 1.8rem;
}

/* Drop cap editorial */
.gh-content.drop-cap > p:first-of-type::first-letter {
    font-family: var(--lc-display) !important;
    font-size: 5.8rem !important;
    font-weight: 700;
    float: left;
    line-height: 0.85;
    margin: 0.08em 0.12em 0 0;
    color: var(--lc-ink);
}

/* Subtítulos dentro del artículo */
.gh-content h2 {
    font-family: var(--lc-display) !important;
    font-size: 2.8rem !important;
    margin-top: 4rem;
    margin-bottom: 1.4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--lc-rule);
}

.gh-content h3 {
    font-family: var(--lc-display) !important;
    font-size: 2.2rem !important;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

/* Blockquotes */
.gh-content blockquote {
    font-family: var(--lc-body) !important;
    font-style: italic;
    font-size: 2.1rem !important;
    border-left: 3px solid var(--lc-accent) !important;
    padding-left: 2rem !important;
    color: var(--lc-ink-muted);
}

/* Figcaptions */
.gh-content figcaption {
    font-family: var(--lc-sans) !important;
    font-size: 1.2rem !important;
    color: var(--lc-ink-subtle) !important;
    letter-spacing: 0.02em;
    text-align: center;
    margin-top: 1rem;
}

/* Horizontal rules — ornamento editorial */
.gh-content hr {
    border: none;
    border-top: none;
    text-align: center;
    margin: 3.5rem 0;
    height: auto;
    background: none;
}

.gh-content hr::after {
    content: '· · ·';
    display: block;
    font-family: var(--lc-body);
    font-size: 1.8rem;
    letter-spacing: 0.8em;
    color: var(--lc-ink-subtle);
}

/* Enlaces */
.gh-content a {
    color: var(--lc-accent) !important;
    text-decoration: underline;
    text-decoration-color: rgba(139, 26, 26, 0.3);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.2s ease;
}

.gh-content a:hover {
    text-decoration-color: var(--lc-accent);
}

/* ---------------------------------------------------------- */
/* 8. Sección "Leer más" / Related                            */
/* ---------------------------------------------------------- */

.gh-container-title {
    position: relative;
}

section.gh-container.is-grid {
    padding-top: 4rem;
    margin-top: 2rem;
    border-top: 2px solid var(--lc-ink);
}

section.gh-container.is-grid .gh-container-title {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 2.4rem;
}

/* ---------------------------------------------------------- */
/* 9. Footer editorial                                        */
/* ---------------------------------------------------------- */

.gh-footer {
    background-color: var(--lc-ink) !important;
    color: var(--lc-cream) !important;
    padding-top: 6rem !important;
    padding-bottom: 4rem !important;
    position: relative;
}

/* Filete superior del footer */
.gh-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background-color: var(--lc-accent);
}

/* Logo del footer */
.gh-footer-logo {
    color: var(--lc-cream) !important;
    font-family: var(--lc-display) !important;
    font-size: 2rem !important;
}

.gh-footer-logo img {
    filter: invert(1) brightness(1.1);
    max-height: none !important;
    max-width: 200px !important;
    height: auto !important;
}

/* Links del footer */
.gh-footer-menu .nav a {
    color: rgba(247, 244, 238, 0.65) !important;
    font-family: var(--lc-sans) !important;
    font-size: 1.2rem !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    transition: color 0.2s ease;
}

.gh-footer-menu .nav a:hover {
    color: var(--lc-cream) !important;
}

/* Copyright */
.gh-footer-copyright {
    color: rgba(247, 244, 238, 0.4) !important;
    font-family: var(--lc-sans) !important;
    font-size: 1.15rem !important;
    letter-spacing: 0.04em;
}

/* Footer bar separador */
.gh-footer-bar {
    border-bottom: 1px solid rgba(247, 244, 238, 0.12) !important;
    padding-bottom: 3rem !important;
    margin-bottom: 3rem !important;
}

/* Signup del footer */
.gh-footer-signup {
    text-align: center;
}

.gh-footer-signup-header {
    font-family: var(--lc-display) !important;
    color: var(--lc-cream) !important;
    font-size: 3.2rem !important;
    font-weight: 400 !important;
    font-style: italic;
}

.gh-footer-signup-subhead {
    font-family: var(--lc-body) !important;
    color: rgba(247, 244, 238, 0.6) !important;
    font-size: 1.8rem !important;
}

.gh-footer-signup .gh-form-input {
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(247, 244, 238, 0.2) !important;
    border-radius: 0 !important;
    color: var(--lc-cream) !important;
}

.gh-footer-signup .gh-form-input::placeholder,
.lc-footer-subscribe .gh-form-input::placeholder {
    color: rgba(247, 244, 238, 0.35) !important;
}

.gh-footer-signup .gh-form .gh-button,
.lc-footer-subscribe .gh-form .gh-button {
    background-color: var(--lc-accent) !important;
    color: var(--lc-cream) !important;
    border-color: var(--lc-accent) !important;
}

.gh-footer-signup .gh-form .gh-button:hover,
.lc-footer-subscribe .gh-form .gh-button:hover {
    background-color: var(--lc-accent-hover) !important;
    border-color: var(--lc-accent-hover) !important;
}

/* Input del formulario de suscripción en footer — visible */
.lc-footer-subscribe .gh-form-input,
.gh-footer .gh-form-input {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(247, 244, 238, 0.3) !important;
    color: var(--lc-cream) !important;
    border-radius: 0 !important;
    padding: 12px 16px !important;
    font-size: 1.5rem !important;
}

.lc-footer-subscribe .gh-form {
    max-width: 320px;
    margin: 1rem auto 0;
}

/* Footer: layout dos mitades */
.lc-footer-main {
    display: flex;
    gap: 60px;
    padding-bottom: 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(247, 244, 238, 0.12);
}

.lc-footer-links {
    flex: 1;
    display: flex;
    gap: 40px;
}

.lc-footer-col {
    flex: 1;
}

.lc-footer-heading {
    font-family: var(--lc-sans) !important;
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: rgba(247, 244, 238, 0.9) !important;
    margin-bottom: 1.4rem;
    white-space: nowrap;
}

.lc-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lc-footer-list li {
    margin-bottom: 0.7rem;
}

.lc-footer-list a {
    font-family: var(--lc-body) !important;
    font-size: 1.7rem !important;
    color: rgba(247, 244, 238, 0.55) !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.lc-footer-list a:hover {
    color: var(--lc-cream) !important;
}

/* Staff en footer */
.lc-footer-staff li {
    font-family: var(--lc-body) !important;
    font-size: 1.6rem !important;
    color: rgba(247, 244, 238, 0.55) !important;
    margin-bottom: 0.6rem;
    line-height: 1.4;
}

.lc-staff-role {
    display: block;
    font-family: var(--lc-sans) !important;
    font-size: 1rem !important;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(247, 244, 238, 0.35);
    margin-bottom: 0.1rem;
}

.lc-footer-subscribe {
    flex: 0 0 340px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 0;
}

/* "Edita" encima del logo Almuzara */
.lc-footer-edita {
    font-family: var(--lc-sans);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(247, 244, 238, 0.35);
}

/* Logo Almuzara Libros — alineado a la derecha */
.lc-footer-credits {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.3rem;
    text-align: right;
}

.lc-footer-almuzara-logo {
    max-width: 180px !important;
    height: auto !important;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    filter: brightness(1.5) !important;
}

.lc-footer-almuzara-logo:hover {
    opacity: 0.8;
}

@media (max-width: 900px) {
    .lc-footer-main {
        flex-direction: column;
        gap: 3rem;
    }
    .lc-footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    .lc-footer-subscribe {
        flex: none;
    }
}

/* Ornamento de puntos en el footer */
.gh-footer-inner::before {
    content: '· · · · · · ·';
    display: block;
    text-align: center;
    font-family: var(--lc-body);
    font-size: 1.4rem;
    letter-spacing: 0.6em;
    color: rgba(247, 244, 238, 0.2);
    margin-bottom: 3rem;
}

/* ---------------------------------------------------------- */
/* 10. Formularios globales                                   */
/* ---------------------------------------------------------- */

.gh-button {
    background-color: var(--lc-ink) !important;
    border-radius: 0 !important;
}

.gh-form-input {
    border-radius: 0 !important;
    border: 1px solid var(--lc-rule-strong) !important;
    font-family: var(--lc-body) !important;
}

/* ---------------------------------------------------------- */
/* 11. Pages — estilo editorial                               */
/* ---------------------------------------------------------- */

/* Título de página */
.page-template .gh-article-title {
    font-size: clamp(3rem, 5vw, 4.4rem) !important;
    text-align: center;
    margin-bottom: 2rem;
}

/* Separador después del título */
.page-template .gh-article-header {
    padding-bottom: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.page-template .gh-article-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background-color: var(--lc-accent);
    margin: 2rem auto 0;
}

/* Contenido de páginas: ancho de lectura cómodo */
.page-template .gh-content {
    font-size: 1.9rem !important;
    line-height: 1.75 !important;
}

/* ---------------------------------------------------------- */
/* 12. Author page                                            */
/* ---------------------------------------------------------- */

.gh-author-image {
    border-radius: 0 !important;
    border: 3px solid var(--lc-cream);
    box-shadow: 0 0 0 1px var(--lc-rule-strong);
}

.gh-author-name {
    font-family: var(--lc-display) !important;
}

.gh-author-bio {
    font-family: var(--lc-body) !important;
    font-size: 1.8rem !important;
    font-style: italic;
    color: var(--lc-ink-muted) !important;
}

/* ---------------------------------------------------------- */
/* 13. Featured posts section                                 */
/* ---------------------------------------------------------- */

.gh-featured-title {
    font-family: var(--lc-sans) !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
}

/* ---------------------------------------------------------- */
/* 14. CTA section override                                   */
/* ---------------------------------------------------------- */

/* Línea divisoria entre highlight grid y contenido: eliminada */
.gh-header.is-highlight {
    border-bottom: none !important;
    box-shadow: none !important;
    padding-bottom: 0 !important;
}

.gh-header.is-highlight + *,
.gh-header + .lc-banner-carousel,
.gh-header + .gh-container {
    border-top: none !important;
}

/* Línea divisoria del contenedor principal */
.gh-container.is-grid {
    border-top: none !important;
}

section.gh-container.is-grid {
    border-top: none !important;
    padding-top: 2rem;
    margin-top: 0;
}

/* CTA intermedio: oculto en home (ya hay suscripción en footer) */
.home-template .gh-cta {
    display: none !important;
}

.gh-cta {
    background-color: var(--lc-cream-dark) !important;
    border-top: 1px solid var(--lc-rule);
    border-bottom: 1px solid var(--lc-rule);
}

/* ---------------------------------------------------------- */
/* 15. Búsqueda                                               */
/* ---------------------------------------------------------- */

.gh-search {
    background-color: rgba(247, 244, 238, 0.97) !important;
}

/* ---------------------------------------------------------- */
/* 16. Responsive                                             */
/* ---------------------------------------------------------- */

@media (max-width: 767px) {
    .gh-article-title {
        font-size: 2.8rem !important;
    }

    .gh-article-excerpt {
        font-size: 1.8rem !important;
    }

    .gh-content {
        font-size: 1.8rem !important;
    }

    .gh-container.is-list .gh-card-title {
        font-size: 2.1rem !important;
    }

    .gh-header-title {
        font-size: 2.2rem !important;
    }

    .gh-navigation::before {
        height: 2px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .gh-article-title {
        font-size: 3.6rem !important;
    }
}

/* ---------------------------------------------------------- */
/* 17. Selección de texto                                     */
/* ---------------------------------------------------------- */

::selection {
    background-color: rgba(139, 26, 26, 0.15);
    color: var(--lc-ink);
}

/* ---------------------------------------------------------- */
/* 18. Animaciones sutiles                                    */
/* ---------------------------------------------------------- */

.gh-card {
    transition: transform 0.15s ease;
}

.gh-card:hover {
    transform: translateY(-1px);
}

/* ---------------------------------------------------------- */
/* 19. Scrollbar personalizada (webkit)                       */
/* ---------------------------------------------------------- */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--lc-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--lc-rule-strong);
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--lc-ink-subtle);
}

/* ---------------------------------------------------------- */
/* 22. Carrusel de banners publicitarios                      */
/* ---------------------------------------------------------- */

.lc-banner-carousel {
    position: relative;
    max-width: 1320px;
    height: 480px;
    overflow: hidden;
    background-color: var(--lc-cream-dark);
    margin: 0 auto;
    padding: 0 !important;
}

.lc-banner-track {
    position: relative;
    width: 100%;
    height: 480px;
}

.lc-banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 480px;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
    z-index: 0;
}

.lc-banner-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.lc-banner-slide a,
.lc-banner-slide > img {
    display: block !important;
    width: 100% !important;
    height: 480px !important;
    max-width: none !important;
    max-height: none !important;
}

.lc-banner-slide a > img,
.lc-banner-slide > img {
    display: block !important;
    width: 100% !important;
    height: 480px !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
}

/* Dots de navegación */
.lc-banner-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.lc-banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.7);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.lc-banner-dot.is-active {
    background: #fff;
    border-color: #fff;
}

.lc-banner-dot:hover {
    background: rgba(255,255,255,0.5);
}

@media (max-width: 767px) {
    .lc-banner-carousel {
        height: 280px;
    }
}

/* ---------------------------------------------------------- */
/* 20. Página "Sobre nosotros" custom                         */
/* ---------------------------------------------------------- */

.lc-about-hero {
    text-align: center;
    padding: 6rem 0 4rem;
    border-bottom: 1px solid var(--lc-rule);
}

.lc-about-kicker {
    font-family: var(--lc-sans);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lc-accent);
    margin-bottom: 1.6rem;
}

.lc-about-title {
    font-family: var(--lc-display) !important;
    font-size: clamp(4rem, 7vw, 7rem) !important;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--lc-ink);
    margin-bottom: 1rem;
}

.lc-about-subtitle {
    font-family: var(--lc-body) !important;
    font-size: 2.2rem;
    font-style: italic;
    color: var(--lc-ink-muted);
}

.lc-about-rule {
    width: 60px;
    height: 2px;
    background-color: var(--lc-accent);
    margin: 3rem auto 0;
}

/* Manifiesto */
.lc-about-manifesto {
    padding: 5rem 0;
}

.lc-about-content {
    max-width: var(--lc-max-width);
    margin: 0 auto;
}

.lc-about-lead {
    font-size: 2.2rem !important;
    line-height: 1.6;
    color: var(--lc-ink);
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--lc-rule);
}

.lc-about-lead p {
    font-size: inherit !important;
}

.lc-about-section-title {
    font-family: var(--lc-display) !important;
    font-size: 2.6rem !important;
    font-weight: 700;
    color: var(--lc-ink);
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--lc-rule);
}

.lc-about-section-title:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.lc-about-text {
    font-size: 1.9rem;
    line-height: 1.72;
    color: var(--lc-ink-light);
    margin-bottom: 2rem;
}

.lc-about-text p {
    margin-bottom: 1.4rem;
}

/* CTA final */
.lc-about-cta {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--lc-ink);
}

.lc-about-cta-text {
    font-size: 2rem !important;
    font-style: italic;
    color: var(--lc-ink-muted);
    margin-bottom: 2rem;
}

.lc-about-cta .gh-button {
    font-size: 1.2rem !important;
    padding: 12px 32px !important;
}

/* ---------------------------------------------------------- */
/* 21. Página Staff / Equipo                                  */
/* ---------------------------------------------------------- */

.lc-staff {
    padding: 5rem 0;
}

.lc-staff-header {
    text-align: center;
    padding-bottom: 4rem;
    margin-bottom: 4rem;
    border-bottom: 1px solid var(--lc-rule);
}

.lc-staff-kicker {
    font-family: var(--lc-sans);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lc-accent);
    margin-bottom: 1.2rem;
}

.lc-staff-title {
    font-family: var(--lc-display) !important;
    font-size: clamp(3rem, 5vw, 4.4rem) !important;
    font-weight: 700;
    color: var(--lc-ink);
    margin-bottom: 1rem;
}

.lc-staff-intro {
    font-family: var(--lc-body);
    font-size: 1.9rem;
    font-style: italic;
    color: var(--lc-ink-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.55;
}

/* Grid de autores */
.lc-staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 4rem 3rem;
    max-width: 960px;
    margin: 0 auto;
}

.lc-staff-card {
    text-align: center;
}

.lc-staff-card-image {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.6rem;
    overflow: hidden;
}

.lc-staff-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.lc-staff-card:hover .lc-staff-card-image img {
    filter: grayscale(0%);
}

.lc-staff-card-name {
    font-family: var(--lc-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--lc-ink);
    margin-bottom: 0.3rem;
}

.lc-staff-card-name a {
    color: inherit;
    text-decoration: none;
}

.lc-staff-card-name a:hover {
    color: var(--lc-accent);
}

.lc-staff-card-role {
    font-family: var(--lc-sans);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lc-accent);
    margin-bottom: 1rem;
}

.lc-staff-card-bio {
    font-family: var(--lc-body);
    font-size: 1.6rem;
    line-height: 1.55;
    color: var(--lc-ink-muted);
}

.lc-staff-card-location {
    font-family: var(--lc-sans);
    font-size: 1.1rem;
    color: var(--lc-ink-subtle);
    margin-top: 0.8rem;
}

@media (max-width: 640px) {
    .lc-staff-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}
