.roja-hero {
    height: 550px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    border-bottom: 4px solid var(--accent-red);
}

.roja-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
    text-transform: uppercase;
}

.roja-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.hero-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}

.roja-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.roja-container {
    max-width: 1200px;
    margin: -40px auto 40px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.roja-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
}

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

/* Estilo compacto para noticias en esta página */
.news-grid-compact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-grid-compact .news-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    height: 100px;
    overflow: hidden;
}

.news-grid-compact .news-img-wrap {
    height: 100%;
}

.news-grid-compact .news-body {
    padding: 10px;
}

.news-grid-compact .news-title {
    font-size: 0.9rem;
    line-height: 1.2;
    margin-bottom: 5px;
}

.news-grid-compact .news-desc,
.news-grid-compact .news-category,
.news-grid-compact .news-cat-badge {
    display: none;
}
