:root {
    --color-primary: #333333; /* Reverted to neutral */
    --color-secondary: #555555; /* Reverted to neutral */
    --color-text: #222222; 
    --color-text-light: #777777; 
    --color-bg: #FFFFFF;
    --color-bg-alt: #F9F9F9; 
    --color-border: #EAEAEA; 
    --color-accent: #333333; /* Reverted to neutral */

    --font-main: 'Inter', sans-serif;

    --container-width: 1280px; 
    --spacing-unit: 1.5rem;
    --border-radius: 4px; /* Reverted to standard */
}

/* Reset & Base */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--color-primary); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em; /* Tight tracking for modern headlines */
    color: var(--color-secondary);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-narrow { max-width: 740px; margin: 0 auto; padding: 0 1.5rem; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--color-secondary);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: background-color 0.2s;
}
.btn:hover { background-color: var(--color-primary); color: white; }
.btn-small { padding: 0.5rem 1rem; font-size: 0.75rem; }

.section-padding { padding: 4rem 0; }

/* Header Layout Control */
.header-desktop { display: none; }
.header-mobile { display: block; background: white; border-bottom: 1px solid var(--color-border); }

@media (min-width: 1024px) {
    .header-desktop { display: block; }
    .header-mobile { display: none; }
}

/* 1. Desktop Top Black Bar */
.site-header__top {
    background-color: #000000;
    color: #ffffff;
    padding: 0.8rem 0;
    border-bottom: none;
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding { 
    display: flex; 
    align-items: center; 
}

.site-title { 
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem; 
    font-weight: 800;
    text-transform: uppercase; 
    margin: 0; 
    letter-spacing: -0.03em;
    line-height: 1;
    color: #ffffff;
}
.site-title a { color: white; text-decoration: none; }
.site-title a:hover { opacity: 0.8; }

.site-description { 
    color: #999; 
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid #333;
    font-size: 0.75rem; 
    letter-spacing: 0.05em; 
    text-transform: uppercase; 
    font-weight: 500;
    line-height: 1.2;
}

.header-date {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #aaaaaa;
    font-weight: 500;
}

/* 2. Desktop Navigation Bar */
.site-header__bottom {
    background: white;
    border-bottom: 1px solid #eaeaea;
    position: relative;
    z-index: 1000;
}

.nav-inner {
    display: flex;
    justify-content: center; /* Centered Nav */
    align-items: center;
    position: relative;
    height: 64px;
}

.primary-menu-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.primary-menu-container ul {
    display: flex;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
}

.primary-menu-container ul li {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.primary-menu-container ul li a {
    display: block;
    line-height: 64px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: #111111;
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
}

.primary-menu-container ul li a:hover {
    color: #000000;
}

/* Active State - Minimalist Underline */
.primary-menu-container ul li.current-menu-item a {
    color: #000000;
}
.primary-menu-container ul li.current-menu-item a::after {
    content: '';
    position: absolute;
    bottom: 18px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000000;
}

/* Header Search Desktop */
.header-search-toggle { 
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex; 
    align-items: center;
}

.search-btn {
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    transition: all 0.2s ease;
}
.search-btn:hover { 
    background: #e0e0e0; 
    color: #000;
}

/* Search Form Styling */
.header-search-form {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 300px;
    background: #ffffff;
    padding: 1rem;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    display: block !important; /* Override inline style for transition */
    pointer-events: none;
}

/* We use a class to show it instead of inline display:none/block for smooth transition */
.header-search-form.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

.header-search-form form {
    display: flex;
    width: 100%;
}

.header-search-form label {
    width: 100%;
}

.header-search-form input.search-field {
    width: 100%;
    padding: 0.8rem 1rem;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #333;
    outline: none;
    transition: border-color 0.2s;
}

.header-search-form input.search-field:focus {
    background: #ffffff;
    border-color: #333;
}

.header-search-form input.search-submit {
    display: none;
}


/* MOBILE HEADER STYLES */
.header-mobile-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    position: relative;
}

.mobile-menu-toggle, .mobile-search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--color-secondary);
    display: flex;
    align-items: center;
}

.mobile-branding {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    white-space: nowrap;
}

.mobile-logo-link img { max-height: 40px; width: auto; }

.mobile-site-title {
    font-family: var(--font-main);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.2rem;
    color: var(--color-secondary);
    letter-spacing: -0.5px;
}

/* Mobile Search Overlay */
.mobile-search-bar {
    background: white;
    padding: 1rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    z-index: 900;
}

/* Mobile Menu Drawer */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    left: -300px; /* Hidden by default */
    width: 280px;
    height: 100vh;
    background: white;
    z-index: 2000;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.mobile-menu-drawer.active { left: 0; }

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
    background: #f9f9f9;
}

.mobile-menu-title {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-secondary);
}

.mobile-menu-content {
    overflow-y: auto;
    padding: 1rem 0;
}

.mobile-menu-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-container ul li a {
    display: block;
    padding: 0.8rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--color-secondary);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1500;
    display: none; /* Hidden by default */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Hide original desktop elements that are now managed by .header-desktop wrapper */
/* (We replaced the old CSS, so no need to explicitly hide old classes if they are gone) */

/* Home Hero Layout - Consolidating duplicate rules to bottom of file */
/* (Deleted duplicate .home-hero__grid block to fix conflicts) */

/* Editorial Columns (Actualidad/Cronicas/etc) */
.grid-2-columns-equal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.column-section {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.column-section .section-header {
    border-bottom: 2px solid var(--color-secondary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.column-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Ferias Section */
.ferias-block .section-header {
    border-bottom: 2px solid var(--color-primary); /* Accent color for Ferias */
}

/* Agenda Section */
.agenda-filters form { 
    display: flex; 
    gap: 1rem; 
    margin-bottom: 2rem; 
    align-items: center; 
}
.agenda-filters select, .agenda-filters input { 
    padding: 0.8rem; 
    border: 1px solid var(--color-border); 
    border-radius: 4px; 
}
.agenda-list { display: flex; flex-direction: column; gap: 1rem; }

.agenda-item {
    display: grid;
    grid-template-columns: 80px 100px 1fr auto;
    gap: 2rem;
    align-items: center;
    border: 1px solid var(--color-border);
    padding: 2rem;
    background-color: white;
    transition: all 0.2s;
    margin-bottom: 1rem;
}

.agenda-poster {
    width: 80px;
    height: 120px;
    overflow: hidden;
    background-color: #f0f0f0;
}
.agenda-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agenda-item:hover { 
    border-color: var(--color-primary); 
    transform: translateY(-2px); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.agenda-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background-color: var(--color-secondary);
    color: white;
    border-radius: 0;
}
.agenda-date .day { font-size: 2.2rem; font-weight: 800; line-height: 1; }
.agenda-date .month { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.2rem; }

.agenda-title { font-size: 1.5rem; margin-bottom: 0.5rem; }
.agenda-meta { font-size: 0.95rem; color: var(--color-text-light); display: flex; gap: 1rem; }

/* =========================================
   NEW FOOTER STYLES (DESIGN REFRESH)
   ========================================= */

.site-footer {
    background-color: #111111;
    color: #999999;
    padding: 5rem 0 3rem;
    margin-top: 6rem;
    font-family: var(--font-main, sans-serif);
    position: relative;
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

/* Newsletter Section */
.footer-newsletter {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 4rem;
    flex-wrap: wrap;
    gap: 3rem;
}

.newsletter-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.newsletter-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 600;
}

.newsletter-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.8rem;
    line-height: 1.1;
}

.newsletter-desc {
    font-size: 1rem;
    color: #888;
    margin: 0;
    line-height: 1.5;
}

.newsletter-form-wrapper {
    flex: 0 0 auto;
    width: 100%;
    max-width: 500px;
}

.newsletter-form label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.input-group {
    display: flex;
    gap: 1rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    background: transparent;
    border: 1px solid #333;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-form input[type="email"]:focus {
    border-color: #666;
}

.newsletter-form input[type="email"]::placeholder {
    color: #444;
}

.btn-subscribe {
    background-color: #D00000;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0 2.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    height: 54px; /* Match input height roughly */
}

.btn-subscribe:hover {
    background-color: #b00000;
    transform: translateY(-2px);
}

/* Divider */
.footer-divider {
    height: 1px;
    background-color: #222;
    margin: 0 0 3rem;
    border: none;
}

/* Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-brand-col {
    flex: 0 0 auto;
    padding-top: 0.5rem;
}

.footer-brand-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.footer-info-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
    text-align: right;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #555;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.social-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #555;
    margin-right: 0.5rem;
}

.social-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s;
}

.social-link:hover {
    opacity: 0.7;
}

.social-link svg {
    opacity: 0.8;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: #777;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
    border-bottom: 1px solid transparent;
}

.footer-legal a:hover {
    color: #fff;
    border-bottom-color: #555;
}

/* Back to Top */
.back-to-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    color: #000;
    position: absolute;
    bottom: 2rem; /* Aligned with bottom padding */
    right: 0;
    transition: transform 0.3s, background-color 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 10;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background-color: #f0f0f0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .footer-newsletter {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .newsletter-content {
        max-width: 100%;
    }
    
    .newsletter-form-wrapper {
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer-info-col {
        align-items: flex-start;
        text-align: left;
        width: 100%;
    }
    
    .footer-social {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 1.5rem;
    }
    
    .footer-legal {
        flex-wrap: wrap;
    }
    
    .back-to-top {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 100;
    }
}

@media (max-width: 600px) {
    .site-footer {
        padding: 3rem 0;
    }
    
    .newsletter-title {
        font-size: 1.8rem;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .btn-subscribe {
        width: 100%;
    }
    
    .footer-social {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Responsive adjustments for new layout */
@media (max-width: 1024px) {
    .home-hero__grid {
        grid-template-columns: 1fr; /* Stack hero on tablet */
    }
    .home-hero__main {
        border-right: none;
        padding-right: 0;
    }
    :root { --container-width: 960px; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .site-title { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .home-hero__grid { grid-template-columns: 1fr; gap: 2rem; }
    .home-hero__secondary { border-left: none; padding-left: 0; border-top: 1px solid var(--color-border); padding-top: 2rem; }
    .home-hero__secondary .card { flex-direction: row; align-items: center; }
    .home-hero__secondary .card__image-wrapper { width: 100px; height: 75px; margin-bottom: 0; flex-shrink: 0; }
    
    .grid-2 { grid-template-columns: 1fr; }
    .primary-menu-container { display: none; } 
    .menu-toggle { display: block; background: none; border: 1px solid var(--color-border); color: var(--color-secondary); padding: 0.5rem 1rem; }
    
    .site-branding { padding: 1.5rem 0; }
    .site-title { font-size: 2rem; }
    
    .agenda-filters form { flex-direction: column; align-items: stretch; }
    .agenda-item { grid-template-columns: 1fr; gap: 1rem; text-align: center; }
    .agenda-poster { width: 100%; height: auto; max-width: 180px; margin: 0 auto 1rem; aspect-ratio: 2/3; }
    .agenda-date { width: 100%; height: 60px; flex-direction: row; gap: 0.5rem; margin-bottom: 1rem; }
    .agenda-date .month { margin-top: 0; }
    .agenda-details { text-align: center; }
    .agenda-meta { justify-content: center; }
    
    .content-section-item { flex-direction: column; }
    .content-section-item .post-thumbnail { flex: auto; width: 100%; height: 250px; }
}

/* =========================================
   LEGAL PAGES (Aviso Legal, Privacidad, Cookies)
   ========================================= */

.legal-page .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.legal-header-nav,
.legal-footer-nav {
    margin-bottom: 3rem;
}

.legal-footer-nav {
    margin-top: 3rem;
    padding-top: 0;
    border-top: none;
}

.btn-back-home {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 1px solid #D00000;
    border-radius: 50px;
    color: #D00000;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-back-home:hover {
    background-color: #D00000;
    color: #fff;
}

.legal-hero-box {
    background-color: #f5f5f5;
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 4rem;
}

/* Dark mode adjustment if needed, but keeping light as per image */
@media (prefers-color-scheme: dark) {
    .legal-hero-box {
        background-color: #222;
        color: #fff;
    }
}

.legal-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--color-text);
}

.legal-intro {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
    max-width: 800px;
}

.legal-content {
    font-family: var(--font-main, sans-serif);
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.legal-section p,
.legal-section li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Cookies Table */
.cookies-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.cookies-table th,
.cookies-table td {
    border: 1px solid var(--color-border);
    padding: 1rem;
    text-align: left;
}

.cookies-table th {
    background-color: #f9f9f9;
    font-weight: 700;
    color: var(--color-text);
}

@media (prefers-color-scheme: dark) {
    .cookies-table th {
        background-color: #333;
        color: #fff;
    }
}

/* 5. Related Posts (Noticias Recomendadas) */
.related-posts {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--color-border);
}

.related-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-secondary);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

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

.related-card {
    display: block;
    text-decoration: none;
    group: transition; /* For hover effects */
}

.related-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    background-color: var(--color-bg-alt);
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-card:hover .related-image img {
    transform: scale(1.05);
}

.related-content {
    text-align: left;
}

.related-cat {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.related-post-title {
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    font-weight: 700;
    transition: color 0.2s;
}

.related-card:hover .related-post-title {
    color: var(--color-primary);
}

.related-date {
    font-size: 0.75rem;
    color: var(--color-text-light);
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-page .container {
        padding: 2rem 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .legal-hero-box {
        padding: 2rem 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .legal-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .legal-section h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .legal-page .container {
        padding: 1.5rem 1.25rem;
    }

    .legal-hero-box {
        padding: 1.5rem 1.25rem;
    }

    .legal-title {
        font-size: 1.6rem;
    }
}

/* 1. Spacing for Featured Image (Hero) */
.home .home-hero {
    margin-top: 3rem; /* Breathing room below header */
    margin-bottom: 4rem;
}

/* 2. "Actualidad" & Section Headers (White Pill Style) */
/* Target the section header container to center it */
.home .home-category-section .section-header,
.home .column-section .section-header,
.home .latest-news .section-header,
.home .ferias-block .section-header {
    border-bottom: none; /* Remove old underline */
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 0;
}

/* Style the title as a rounded pill */
.home .home-category-section .section-title,
.home .column-section .section-title,
.home .latest-news .section-title,
.home .ferias-block .section-title {
    background: #851900;
    border: 1px solid #851900;
    border-radius: 50px;
    padding: 0.8rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    margin-bottom: 0; /* Remove default margin */
    display: inline-block;
    z-index: 2;
}

/* Position "Ver todo" link elegantly to the right */
.home .home-category-section .view-more,
.home .column-section .view-more,
.home .ferias-block .view-more {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.home .home-category-section .view-more:hover,
.home .column-section .view-more:hover,
.home .ferias-block .view-more:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

/* Grid Definitions */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Mobile adjustments */
@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .home .home-category-section .section-header,
    .home .column-section .section-header,
    .home .latest-news .section-header,
    .home .ferias-block .section-header {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .home .home-category-section .view-more,
    .home .column-section .view-more,
    .home .ferias-block .view-more {
        position: static;
        transform: none;
        margin-top: 0.5rem;
    }
}

/* 3. Homepage Cards (Editorial Style) */
.home .card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.home .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: #eaeaea;
}

.home .card__image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    /* Create a consistent aspect ratio container */
    padding-top: 66.66%; /* 3:2 Aspect Ratio */
}

/* =========================================
   HERO SECTION SPECIFIC STYLES (CLEAN EDITORIAL)
   ========================================= */

.home-hero__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center; /* Center vertical alignment as requested */
}

@media (max-width: 1024px) {
    .home-hero__grid {
        grid-template-columns: 1fr;
    }
    .home-hero__main {
        border-right: none;
        padding-right: 0;
    }
}

.home .card--hero {
    border: none;
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
    border-radius: 16px;
    background: #ffffff;
    height: auto;
}

.home .card--hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.home .card--hero .card__content {
    padding: 1rem;
    text-align: center; /* Center text */
    flex-grow: 0;
}

.home .card--hero .card__title {
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: #000000;
}

.home .card--hero-main .card__title {
    font-size: 1.6rem;
    line-height: 1.1;
    margin-top: 0.5rem;
}

.home .card--hero-secondary .card__title {
    font-size: 1.1rem;
    line-height: 1.2;
    margin-top: 0.25rem;
}

.home .card--hero .card__meta {
    margin-bottom: 0.5rem;
    color: #888;
    font-weight: 600;
    letter-spacing: 0.05em;
    font-size: 0.7rem;
}

.home .card--hero .card__excerpt {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Aspect Ratios */
.home .card--hero-main .card__image-wrapper {
    padding-top: 60%; /* Cinematic ratio for main */
}

.home .card--hero-secondary .card__image-wrapper {
    padding-top: 56.25%; /* 16:9 Standard for secondary */
    height: auto;
    min-height: auto;
}

/* Ensure secondary container spacing */
.home-hero__secondary {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: auto !important; /* Force auto height */
    min-height: 0;
    margin: 0;
    padding: 0;
    justify-content: flex-start !important; /* Force start alignment */
    /* Removed align-self: start to allow centering from parent grid */
}

/* Ensure secondary cards don't have extra margins */
.home .card--hero-secondary {
    margin-bottom: 0;
    flex-grow: 0;
}

/* Force alignment for main and secondary containers */
.home-hero__main {
    margin-top: 0;
    /* Add vertical divider (Desktop) */
    border-right: 1px solid var(--color-border);
    padding-right: 2rem;
}

.home-hero__secondary {
    margin-top: 0;
}

/* Mobile adjustments for Hero */
@media (max-width: 768px) {
    .home .card--hero-main .card__title {
        font-size: 1.5rem;
    }
    .home .card--hero .card__content {
        padding: 1.5rem;
    }
}

.home .card__image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home .card:hover .card__image-wrapper img {
    transform: scale(1.05);
}

/* Floating Category Pill */
.home .card__category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #ffffff;
    color: var(--color-primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.home .card:hover .card__category {
    background: var(--color-primary);
    color: #ffffff;
}

.home .card__content {
    padding: 1.5rem 1.5rem 2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home .card__title {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    line-height: 1.35;
    font-weight: 700;
}

.home .card__title a {
    text-decoration: none;
    color: var(--color-text);
    transition: color 0.2s ease;
}

.home .card__title a:hover {
    color: var(--color-primary);
}

.home .card__meta {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    display: flex;
    justify-content: center;
}

.home .card__excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Mobile adjustments for Homepage Cards */
@media (max-width: 768px) {
    .home .home-hero {
        margin-top: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .home .column-section .section-header,
    .home .latest-news .section-header,
    .home .ferias-block .section-header {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .home .column-section .view-more,
    .home .ferias-block .view-more {
        position: static;
        transform: none;
        margin-top: 0.5rem;
    }
    
    .home .card__content {
        padding: 1.25rem;
    }
    
    .home .card__title {
        font-size: 1.1rem;
    }
}



/* =========================================
   CATEGORY ARCHIVE PAGES (EDITORIAL)
   ========================================= */

/* Reuse Homepage Card Styles for Archives */
.archive .card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.archive .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: #eaeaea;
}

.archive .card__image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 66.66%; /* 3:2 Aspect Ratio */
}

.archive .card__image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.archive .card:hover .card__image-wrapper img {
    transform: scale(1.05);
}

.archive .card__category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #ffffff;
    color: var(--color-primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.archive .card:hover .card__category {
    background: var(--color-primary);
    color: #ffffff;
}

.archive .card__content {
    padding: 1.5rem 1.5rem 2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.archive .card__title {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    line-height: 1.35;
    font-weight: 700;
}

.archive .card__title a {
    text-decoration: none;
    color: var(--color-text);
    transition: color 0.2s ease;
}

.archive .card__title a:hover {
    color: var(--color-primary);
}

.archive .card__meta {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    display: flex;
    justify-content: center;
}

.archive .card__excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* Archive Grid Layout */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* Actualidad Hero Section */
.category-hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Main (2/3) + Side (1/3) */
    gap: 2rem;
    margin-bottom: 4rem;
}

.category-hero-main .card {
    height: 100%; /* Fill column height */
}

/* Specifics for Main Feature Card */
.category-hero-main .card__title {
    font-size: 1.8rem; /* Larger title */
    margin-bottom: 1rem;
}

.category-hero-main .card__excerpt {
    font-size: 1.1rem; /* Larger excerpt */
    -webkit-line-clamp: 4; /* More lines */
}

/* Specifics for Side Feature Cards */
.category-hero-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.category-hero-side .card {
    flex-direction: row; /* Horizontal card for side items */
    align-items: center;
    text-align: left;
    height: auto;
    min-height: 120px;
}

.category-hero-side .card__image-wrapper {
    width: 35%; /* Fixed width for image */
    padding-top: 0; /* Reset aspect ratio padding */
    height: 100%;
    min-height: 120px;
    flex-shrink: 0;
}

.category-hero-side .card__content {
    width: 65%;
    padding: 1rem 1.25rem;
    align-items: flex-start; /* Left align text */
    text-align: left;
}

.category-hero-side .card__title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.category-hero-side .card__meta {
    margin-bottom: 0;
    justify-content: flex-start;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-hero-grid {
        grid-template-columns: 1fr; /* Stack on tablet */
    }
    
    .category-hero-side .card {
        flex-direction: row; /* Keep horizontal on tablet */
    }
}

@media (max-width: 768px) {
    .archive-grid {
        grid-template-columns: 1fr; /* Stack on mobile */
    }
    
    .category-hero-side .card {
        flex-direction: column; /* Stack side cards on mobile */
    }
    
    .category-hero-side .card__image-wrapper {
        width: 100%;
        height: 200px;
    }
    
    .category-hero-side .card__content {
        width: 100%;
        align-items: center;
        text-align: center;
    }
    
    .category-hero-side .card__title {
        text-align: center;
    }
    
    .category-hero-side .card__meta {
        justify-content: center;
    }
}

/* =========================================
   SINGLE POST EDITORIAL LAYOUT
   ========================================= */

/* 1. Header & Title (Editorial) */
.single .entry-header {
    margin-bottom: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.single .entry-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Subtitle (Excerpt) */
.single .entry-subtitle {
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Metadata Line */
.single .entry-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
    margin-top: 1.5rem;
    border-top: 1px solid var(--color-border);
    padding-top: 1.5rem;
}

.single .entry-meta .sep {
    color: #ddd;
}

.single .entry-meta a {
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
}

/* 2. Featured Image */
.single .entry-thumbnail {
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.single .entry-thumbnail img {
    width: 100%;
    height: auto;
    max-height: 450px; /* Constrain height */
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* 3. Social Share Buttons */
.social-share {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.share-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-right: 0.5rem;
}

.share-btn {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 50px; /* Pill shape */
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.share-btn.twitter {
    background-color: #000;
    color: white;
}

.share-btn.facebook {
    background-color: #3b5998;
    color: white;
}

.share-btn.whatsapp {
    background-color: #25D366;
    color: white;
}

/* 4. Article Content (Editorial Style) */
.single .entry-content {
    font-size: 1.125rem; /* 18px */
    line-height: 1.8;
    color: #222; /* High contrast for reading */
}

.single .entry-content p {
    margin-bottom: 1.8em;
}

/* Dropcap for first paragraph (Optional, adds editorial feel) */
.single .entry-content > p:first-of-type::first-letter {
    font-size: 3.5em;
    float: left;
    line-height: 0.8;
    margin-right: 0.15em;
    font-weight: 800;
    color: var(--color-primary);
}

/* Headings inside content */
.single .entry-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5em;
    margin-bottom: 0.8em;
    text-align: left; /* Keep headings left aligned for reading flow */
}

.single .entry-content h3 {
    font-size: 1.4rem;
    margin-top: 2em;
    margin-bottom: 0.6em;
}

/* Blockquotes */
.single .entry-content blockquote {
    margin: 2.5rem 0;
    padding: 0 2rem;
    border-left: 4px solid var(--color-primary);
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 500;
    color: var(--color-secondary);
    line-height: 1.4;
}

.single .entry-content blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
}

/* Images inside content */
.single .entry-content img {
    max-width: 100%;
    height: auto;
    margin: 2.5rem auto;
    display: block;
    border-radius: 2px;
}

.single .entry-content .alignleft {
    float: left;
    margin-right: 2rem;
    margin-bottom: 1rem;
    max-width: 50%;
}

.single .entry-content .alignright {
    float: right;
    margin-left: 2rem;
    margin-bottom: 1rem;
    max-width: 50%;
}

.single .entry-content .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.single .entry-content figure {
    margin: 2.5rem 0;
}

.single .entry-content figcaption {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 0.5rem;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .single .entry-title {
        font-size: 1.8rem;
    }
    .single .entry-thumbnail img {
        max-height: 50vh;
    }
    .single .entry-content {
        font-size: 1.05rem;
    }
    .single .entry-content blockquote {
        font-size: 1.2rem;
        padding-left: 1.5rem;
    }
    .single .entry-content .alignleft,
    .single .entry-content .alignright {
        float: none;
        display: block;
        margin: 1.5rem auto;
        max-width: 100%;
    }
}

/* =========================================
   GLOBAL MOBILE SPACING FIX
   ========================================= */
@media (max-width: 768px) {
    /* Ensure container always has padding on mobile */
    .container, 
    .container-narrow, 
    .container-wide {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
        width: 100%;
        box-sizing: border-box;
    }

    /* Prevent horizontal overflow */
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
    
    /* Ensure sections don't overflow */
    section, .site-footer, header {
        max-width: 100vw;
        overflow-x: hidden;
    }
}

/* =========================================
   TORO A TORO (DIRECTOS) STYLES
   ========================================= */

/* 1. Status Bar */
.directo-status-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.status-badge {
    background-color: var(--color-text);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-badge.live-pulse {
    background-color: #D00000;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(208, 0, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(208, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(208, 0, 0, 0); }
}

.status-venue {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-weight: 600;
    text-transform: uppercase;
}

/* 2. Directo Specific Sections */
.directo-section {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: var(--color-bg-alt);
    border-radius: 8px;
    border-left: 4px solid var(--color-secondary);
}

.directo-section.resultado-rapido {
    border-left-color: var(--color-primary); /* Highlight quick result */
    background-color: #fff5f5; /* Light red bg for result */
}

.directo-section-title {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: var(--color-text);
    font-weight: 800;
}

.directo-section-content {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
}

/* 3. Main Text (Paragraphs) */
.directo-main-text {
    margin-bottom: 3rem;
    font-size: 1.125rem;
    line-height: 1.8;
}

.directo-main-text h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-border);
    color: var(--color-secondary);
}

.directo-main-text h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--color-text);
}

/* 4. Article Wrapper Specifics */
.directo-article .entry-title {
    font-size: 2.5rem; /* Larger title for events */
}

@media (max-width: 768px) {
    .directo-article .entry-title {
        font-size: 1.8rem;
    }
    .directo-section {
        padding: 1.5rem;
    }
}

/* =========================================
   HOMEPAGE LIVE BANNER & ARCHIVE STYLES
   ========================================= */

/* Homepage Live Banner */
.live-banner-section {
    background-color: var(--color-text); /* Dark background */
    color: #fff;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
    border-bottom: 4px solid #D00000;
}

.live-banner-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.live-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    text-align: center;
}

.live-indicator {
    background-color: #D00000;
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    animation: pulse-white-text 2s infinite;
}

@keyframes pulse-white-text {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.live-title {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
    color: #fff;
}

.live-cta {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.live-banner-link:hover .live-cta {
    background-color: #fff;
    color: var(--color-text);
}

@media (max-width: 768px) {
    .live-banner-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    .live-title {
        font-size: 1.2rem;
    }
}

/* Archive Directos Grid */
.directos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 992px) {
    .directos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .directos-grid {
        grid-template-columns: 1fr;
    }
}

.directo-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.directo-card:hover {
    transform: translateY(-5px);
}

.directo-card-link {
    text-decoration: none;
    color: inherit;
}

.directo-card-image {
    position: relative;
    aspect-ratio: 16/9;
    background-color: var(--color-bg-alt);
    overflow: hidden;
}

.directo-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.directo-card:hover .directo-card-image img {
    transform: scale(1.05);
}

.directo-card-status {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0,0,0,0.7);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.directo-card-status.live {
    background-color: #D00000;
}

.directo-card-content {
    padding: 1.5rem;
}

.directo-card-venue {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--color-text-light);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.directo-card-title {
    font-size: 1.25rem;
    margin: 0 0 1rem;
    line-height: 1.3;
    font-weight: 700;
    color: var(--color-text);
}

.directo-card-meta {
    font-size: 0.85rem;
    color: var(--color-text-light);
}
