:root {
    --color-bg: #faf7f2;
    --color-text: #2b2620;
    --color-accent: #F1208F;
    --color-border: #e2d9cc;
    /* Ancho de la columna de contenido (site-main, hero, footer): se queda en
       1000px hasta pantallas anchas y a partir de ahi crece hasta 1300px, en
       vez de dejar un ancho fijo que sobra cada vez mas en monitores grandes. */
    --content-width: clamp(1000px, 68vw, 1300px);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.5;
}

a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.site-header {
    background: #fff;
    border-bottom: 2px solid var(--color-accent);
}

.header-inner {
    width: 100%;
    padding: 0.75rem clamp(1.25rem, 4vw, 3rem);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--color-text);
}

.site-title-text {
    display: flex;
    flex-direction: column;
}

.site-title-name {
    font-size: 1.5rem;
    font-weight: bold;
}

.site-title-tagline {
    font-size: 0.8rem;
    font-weight: normal;
    font-style: italic;
    color: var(--color-accent);
}

.site-logo {
    height: 48px;
    width: auto;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 0.9rem;
    font-size: 1.15rem;
}

.social-links a {
    color: var(--color-accent);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--color-text);
    cursor: pointer;
    padding: 0.4rem;
    line-height: 1;
}

.main-nav {
    flex: 1;
    min-width: 0;
}

.main-nav > ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    /* Fijo (y ya probado que no salta a 2 lineas) hasta 1250px de ancho de
       ventana; a partir de ahi crece hasta un tope mas espacioso a 1800px. */
    padding: 0.5rem clamp(0.45rem, 0.45rem + (100vw - 1250px) * 0.0218, 1.2rem);
    border-bottom: 3px solid transparent;
    color: var(--color-text);
    font-weight: bold;
    font-size: clamp(0.82rem, 0.82rem + (100vw - 1250px) * 0.00524, 1rem);
    text-align: center;
}

.nav-item a i {
    font-size: clamp(1.1rem, 1.1rem + (100vw - 1250px) * 0.00727, 1.35rem);
}

.nav-item a:hover {
    text-decoration: none;
    background: var(--color-bg);
}

/* Menu movil en acordeon (mobile-accordion-nav): oculto por defecto en
   cualquier ancho, para que nunca aparezca en escritorio aunque quede
   con la clase .open de una visita anterior en el mismo documento. */
.mobile-accordion-nav { display: none; }

@media (max-width: 820px) {
    .site-title { order: 1; }
    .social-links { order: 2; }
    .nav-toggle { display: block; order: 3; }

    /* En movil el menu principal y la franja de subsecciones de escritorio
       desaparecen del todo: los sustituye por completo mobile-accordion-nav. */
    .main-nav, .submenu-bar { display: none; }

    .mobile-accordion-nav.open {
        display: block;
        order: 4;
        flex-basis: 100%;
        background: #fff;
        border-top: 1px solid var(--color-border);
        margin-top: 0.75rem;
        max-height: 70vh;
        overflow-y: auto;
    }

    .mobile-accordion-nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .accordion-link {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem 0.5rem;
        border-bottom: 1px solid var(--color-border);
        border-left: 3px solid transparent;
        color: var(--color-text);
        font-weight: bold;
        font-size: 0.95rem;
    }
    .accordion-link:hover { text-decoration: none; background: var(--color-bg); }
    .accordion-item.active > .accordion-link { border-left-color: var(--color-accent); }

    .accordion-link i:not(.accordion-chevron) { font-size: 1.1rem; width: 1.2em; text-align: center; }

    .accordion-chevron {
        margin-left: auto;
        font-size: 0.85rem;
        color: #948a7a;
        transition: transform 0.15s ease;
    }
    .accordion-link[aria-expanded="true"] .accordion-chevron { transform: rotate(180deg); }

    .accordion-sublist {
        display: none;
        background: var(--color-text);
    }
    .accordion-sublist.open { display: block; }
    .accordion-sublist a {
        display: block;
        padding: 0.7rem 0.5rem 0.7rem 2.5rem;
        color: #f1ece2;
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
    .accordion-sublist a:hover,
    .accordion-sublist a.active {
        color: #fff;
        text-decoration: underline;
    }
}

.submenu-bar {
    background: var(--color-text);
}

.submenu-inner {
    width: 100%;
    min-height: 1.3rem;
    padding: 0.6rem clamp(1.25rem, 4vw, 3rem);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.75rem;
}

.submenu-inner a {
    color: #f1ece2;
    font-size: 0.92rem;
    white-space: nowrap;
}

.submenu-placeholder {
    display: inline-block;
    font-size: 0.92rem;
    line-height: 1.5;
}

.submenu-inner a:hover,
.submenu-inner a.active {
    color: #fff;
    text-decoration: underline;
}

.site-main {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 2rem 1.25rem;
    min-height: 60vh;
}

.site-footer {
    position: relative;
    background: #fff;
    border-top: 1px solid var(--color-border);
    color: #6b6259;
    font-size: 0.9rem;
    margin-top: 3rem;
    overflow: hidden;
}

.footer-mountains {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 190px;
    object-fit: fill;
    display: block;
    opacity: 0.6;
    pointer-events: none;
}

.footer-main {
    position: relative;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 2.5rem 1.25rem 1.5rem;
    display: flex;
    justify-content: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
}

.footer-brand-name {
    margin: 0 0 0.25rem;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--color-text);
}

.footer-brand-tagline { margin: 0; font-style: italic; color: var(--color-accent); }

.footer-bottom {
    position: relative;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer-bottom p { margin: 0; }
.footer-bottom a { color: #6b6259; text-decoration: underline; }

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.article-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
}

.article-card h3 { margin: 0.5rem 0 0.25rem; }

.section-heading {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
}
.section-heading .bar {
    display: inline-block;
    width: 5px;
    height: 1.1em;
    border-radius: 2px;
}

.article-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.5rem; }

.article-card-row {
    display: flex;
    gap: 1.5rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 1rem;
    align-items: stretch;
}
.article-card-row:hover { box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06); }

.article-card-media {
    flex-shrink: 0;
    width: 260px;
    border-radius: 8px;
    overflow: hidden;
    display: block;
}
.article-card-media img {
    width: 100%;
    height: 100%;
    min-height: 170px;
    object-fit: cover;
    display: block;
}
.article-card-media--empty {
    width: 100px;
    min-height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.article-card-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.article-card-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 0.25rem 0;
}

.article-card-tag {
    display: inline-block;
    align-self: flex-start;
    color: #fff;
    font-size: 0.72rem;
    font-weight: bold;
    letter-spacing: 0.03em;
    padding: 0.22rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.6rem;
}

.article-card-body h3 { margin: 0 0 0.5rem; font-size: 1.3rem; }
.article-card-body h3 a { color: var(--color-text); }
.article-card-body h3 a:hover { color: var(--color-accent); }
.article-card-body p { margin: 0; color: #55503f; flex: 1; }

.article-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}
.article-card-meta time { color: #7a7166; font-size: 0.85rem; }

.read-more {
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.read-more:hover { text-decoration: none; gap: 0.6rem; }

.tag {
    display: inline-block;
    font-size: 0.8rem;
    color: #7a7166;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.article-full {
    background: #fff;
    border-radius: 12px;
    padding: 2rem clamp(1.25rem, 5vw, 3rem);
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.05);
}

.article-full .breadcrumb { margin-bottom: 0.75rem; }
.article-full .article-card-tag { margin-bottom: 0.75rem; }
.article-full h1 { margin: 0 0 0.75rem; font-size: 2rem; }
.article-lead { font-size: 1.15rem; color: #55503f; margin: 0 0 1rem; }

.article-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    color: #7a7166;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}
.article-meta-row i { color: var(--color-accent); margin-right: 0.3rem; }

.article-full .cover {
    width: 100%;
    height: 420px;
    object-fit: contain;
    border-radius: 10px;
    margin: 0 0 1rem;
    cursor: zoom-in;
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20, 17, 13, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox-img {
    max-width: 95vw;
    max-height: 95vh;
    object-fit: contain;
    border-radius: 6px;
}
.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.5rem;
}

.article-body { margin-top: 1.5rem; font-size: 1.08rem; line-height: 1.7; }
.breadcrumb { font-size: 0.9rem; }

.search-form { margin: 1rem 0 1.5rem; display: flex; gap: 0.5rem; }
.search-form input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: inherit;
}
.search-form button {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

.archive-rows { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }

.archive-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 0.85rem 1.25rem;
    color: var(--color-text);
}
.archive-row:hover { text-decoration: none; box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06); }

.archive-row-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}

.archive-row-date {
    flex-shrink: 0;
    width: 110px;
    color: #4a453a;
    font-size: 0.85rem;
}
.archive-row-date i { color: var(--color-accent); margin-right: 0.3rem; }

.archive-row-title { flex: 1; min-width: 0; font-weight: bold; }

.archive-row-tag {
    display: inline-block;
    font-weight: bold;
    font-size: 0.7rem;
    letter-spacing: 0.03em;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
}

.archive-row-arrow { color: var(--color-accent); font-size: 1rem; flex-shrink: 0; }

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    color: var(--color-accent);
}

.pagination-link.disabled {
    color: #b8ae9d;
    pointer-events: none;
}

.pagination-status {
    color: #4a453a;
    font-size: 0.9rem;
}

.empty { color: #7a7166; font-style: italic; }

.error-page { text-align: center; padding: 3rem 1rem; }
.error-page .error-code {
    font-size: 4rem;
    font-weight: bold;
    color: var(--color-accent);
    margin: 0;
    line-height: 1;
}
.error-page h1 { margin: 0.5rem 0 1rem; }
.error-home-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.7rem 1.4rem;
    background: var(--color-accent);
    color: #fff;
    font-weight: bold;
    border-radius: 6px;
}
.error-home-btn:hover { text-decoration: none; opacity: 0.9; }

.contact-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    font-size: 1.05rem;
}
.contact-list i { width: 1.3rem; color: var(--color-accent); }

.agenda-widget {
    background: #eef3f8;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
}
.agenda-widget h2 { margin-top: 0; }

.agenda-list-full { margin-top: 1.5rem; }

.agenda-date {
    flex-shrink: 0;
    width: 56px;
    text-align: center;
    background: var(--card-color, var(--color-accent));
    border: none;
    border-radius: 6px;
    padding: 0.3rem 0;
    color: var(--color-bg);
}
.agenda-day { display: block; font-size: 1.3rem; font-weight: bold; line-height: 1; }
.agenda-month { display: block; font-size: 0.75rem; text-transform: uppercase; }

.agenda-location { margin: 0 0 0.2rem; font-size: 0.9rem; }

.agenda-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.1rem;
    background: #2E86DE;
    color: #fff;
    font-weight: bold;
    border-radius: 6px;
}
.agenda-link:hover { text-decoration: none; opacity: 0.9; }

.agenda-page-header {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    margin-bottom: 2rem;
}
.agenda-page-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(241, 32, 143, 0.13);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1.6rem;
}
.agenda-page-header h1 { margin: 0 0 0.3rem; }
.agenda-page-header p { margin: 0; color: var(--color-text); }

.agenda-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 1.1rem 1.4rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}
.agenda-row:hover { text-decoration: none; box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06); }

.agenda-row .agenda-date {
    width: 70px;
    background: var(--card-color, var(--color-accent));
    border: none;
    padding: 0.6rem 0;
    color: #fff;
}
.agenda-row .agenda-day { font-size: 1.6rem; }
.agenda-row .agenda-month { font-size: 0.8rem; }

.agenda-row-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.agenda-row-body { flex: 1; min-width: 0; }
.agenda-row-body h3 { margin: 0 0 0.3rem; font-size: 1.15rem; }
.agenda-row-location { margin: 0 0 0.4rem; font-size: 0.9rem; color: var(--color-text); }
.agenda-row-location i { color: var(--color-accent); margin-right: 0.3rem; }

.agenda-row-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 0;
    font-size: 0.85rem;
    color: #4a453a;
}
.agenda-row-tag {
    display: inline-block;
    font-weight: bold;
    font-size: 0.72rem;
    letter-spacing: 0.03em;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
}

.agenda-row-arrow { color: var(--color-accent); font-size: 1.1rem; flex-shrink: 0; }

.agenda-footnote {
    text-align: center;
    color: #4a453a;
    margin-top: 1.5rem;
}
.agenda-footnote strong { color: var(--color-accent); }

.agenda-carousel {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.agenda-track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.3rem;
    scrollbar-width: none;
}
.agenda-track::-webkit-scrollbar { display: none; }

.agenda-card {
    display: block;
    flex: 0 0 260px;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1rem;
    color: var(--color-text);
}
.agenda-card:hover { text-decoration: none; box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08); }
.agenda-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 0.7rem;
}
.agenda-card .agenda-date { margin-bottom: 0; }
.agenda-card-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.agenda-card h3 { margin: 0 0 0.3rem; font-size: 1.05rem; }
.agenda-card:hover h3 { text-decoration: underline; }
.agenda-card .agenda-location { margin: 0 0 0.2rem; font-size: 0.85rem; color: #4a453a; }
.agenda-card time { display: block; color: #4a453a; font-size: 0.85rem; margin-bottom: 0.6rem; }
.agenda-card-tag {
    display: inline-block;
    font-weight: bold;
    font-size: 0.68rem;
    letter-spacing: 0.03em;
    padding: 0.18rem 0.55rem;
    border-radius: 999px;
}

.event-info {
    color: var(--color-accent);
    font-weight: bold;
}

.hero {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.55) 45%, rgba(255, 255, 255, 0.1) 75%);
}

.hero-content {
    max-width: var(--content-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.hero-content h1 {
    max-width: 560px;
    font-size: 2.2rem;
    margin: 0 0 0.75rem;
    color: var(--color-text);
}

.hero-content p {
    max-width: 500px;
    font-size: 1.1rem;
    margin: 0 0 1.5rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.25rem;
    border-radius: 6px;
    color: #fff;
    font-weight: bold;
}
.hero-btn:hover { text-decoration: none; opacity: 0.9; }
.hero-btn-pink { background: var(--color-accent); }
.hero-btn-blue { background: #2E86DE; }
.hero-btn-orange { background: #F5A623; }

.destacados {
    background: #eef3f8;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
}
.destacados h2, .agenda-widget h2 {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.3rem;
    margin-top: 0;
}
.destacados h2 .bar, .agenda-widget h2 .bar {
    display: inline-block;
    width: 4px;
    height: 1.2em;
    background: var(--color-accent);
    border-radius: 2px;
}

.destacados-carousel {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.destacados-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.3rem;
    scrollbar-width: none;
}
.destacados-grid::-webkit-scrollbar { display: none; }

.carousel-arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: #fff;
    color: var(--color-accent);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-arrow:hover { background: var(--color-accent); color: #fff; }

.destacado-card {
    display: block;
    flex: 0 0 260px;
    scroll-snap-align: start;
    color: var(--color-text);
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
}
.destacado-card:hover { text-decoration: none; box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08); }
.destacado-card img { width: 100%; height: 130px; object-fit: cover; display: block; }
.destacado-body { padding: 0.9rem; }

.destacado-tag {
    display: inline-block;
    color: #fff;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 0.03em;
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.destacado-card h3 { margin: 0 0 0.4rem; font-size: 1.05rem; }
.destacado-card p { margin: 0 0 0.6rem; font-size: 0.9rem; }
.destacado-card time { color: #7a7166; font-size: 0.8rem; }

@media (max-width: 600px) {
    .article-card-row { flex-direction: column; }
    .article-card-media { width: 100%; }
    .article-card-media img { height: 180px; min-height: 0; }
    .article-card-media--empty { width: 100%; min-height: 120px; }
    .article-full .cover { height: 240px; }
    .agenda-row { flex-wrap: wrap; }
    .agenda-row-arrow { display: none; }
    .archive-row { flex-wrap: wrap; }
    .archive-row-date { width: auto; order: 3; }
    .archive-row-title { flex-basis: 100%; order: 1; }
    .archive-row-tag { order: 2; }
    .archive-row-arrow { display: none; }
    .hero { height: auto; padding: 2rem 0; }
    .hero-overlay { position: static; background: none; }
    .hero-image { position: absolute; inset: 0; z-index: -1; }
    .hero-content h1 { font-size: 1.6rem; }
    .destacados-carousel,
    .agenda-carousel { position: relative; }
    .carousel-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
    .carousel-arrow-left { left: 0.25rem; }
    .carousel-arrow-right { right: 0.25rem; }
    .destacado-card,
    .agenda-card { flex-basis: 100%; }
}
