@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* Reset y Contenedor Principal */
.news-grid-outer {
    font-family: 'Inter', sans-serif !important;
    margin: 20px 0;
    width: 100%;
}

.news-grid-outer .news-container {
    display: grid !important;
    grid-template-columns: 2fr 1fr !important;
    gap: 20px !important;
    height: 500px !important;
    box-sizing: border-box !important;
}

/* Wrapper de posts laterales */
.news-grid-outer .side-posts-wrapper {
    display: grid !important;
    grid-template-rows: 1fr 1fr !important;
    gap: 20px !important;
    height: 100% !important;
}

/* Items Individuales */
.news-grid-outer .news-item {
    position: relative !important;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.news-grid-outer .news-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
}

/* Overlay de Gradiente - Más fuerte para legibilidad */
.news-grid-outer .news-overlay {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    height: 100% !important;
    padding: 25px !important;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.95) 100%) !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
}

/* Badge de Categoría */
.news-grid-outer .news-badge {
    position: absolute !important;
    top: 15px !important;
    left: 15px !important;
    background-color: #004687 !important;
    /* Color corporativo azul oscuro */
    color: #fff !important;
    padding: 4px 10px !important;
    border-radius: 4px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    z-index: 2 !important;
}

/* Contenido de Texto */
.news-grid-outer .news-content {
    color: #fff !important;
    z-index: 2 !important;
    text-align: left !important;
}

.news-grid-outer .news-date {
    display: block !important;
    font-size: 12px !important;
    margin-bottom: 5px !important;
    opacity: 0.9 !important;
    color: #fff !important;
}

.news-grid-outer .news-content h3 {
    color: #fff !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    text-transform: none !important;
    word-wrap: break-word !important;
}

/* Tamaños específicos de títulos */
.news-grid-outer .main-post .news-content h3 {
    font-size: clamp(1.4rem, 4vw, 1.8rem) !important;
    /* Reducido para evitar desbordes */
    font-weight: 700 !important;
    margin-bottom: 8px !important;
}

.news-grid-outer .side-post .news-content h3 {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
}

/* Excerpt solo en principal */
.news-grid-outer .news-excerpt {
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    color: #eee !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

/* Responsivo */
@media (max-width: 991px) {
    .news-grid-outer .news-container {
        height: 700px !important;
    }
}

@media (max-width: 767px) {
    .news-grid-outer .news-container {
        grid-template-columns: 1fr !important;
        height: auto !important;
        gap: 15px !important;
    }

    .news-grid-outer .news-item {
        height: 300px !important;
    }

    .news-grid-outer .main-post .news-content h3 {
        font-size: 1.5rem !important;
    }
}