/* ───── Estilos generales ───── */
.news-section {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
    font-family: 'Helvetica Neue', sans-serif;
    color: #222;
    min-height: 800px;
}

/* ───── Slider de noticia destacada ───── */
.news-highlighted {
    margin-bottom: 4rem;
}

.news-highlighted__slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.news-highlighted__image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.news-highlighted__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.news-highlighted__subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #666;
}

.news-highlighted__text {
    font-size: 1rem;
    line-height: 1.6;
}

/* ───── Lista de noticias ───── */
.news-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.news-card {
    background-color: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease;
}

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

.news-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card__content {
    padding: 1.5rem;
}

.news-card__date {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 0.5rem;
}

.news-card__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.news-card__excerpt {
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
}

/* ───── Redes sociales ───── */
.news-social {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.news-social a {
    display: inline-block;
    background-color: #e5e5e5;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    font-size: 0.9rem;
    color: #222;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.news-social a:hover {
    background-color: #0073aa;
    color: #fff;
}

/* ───── Cita (quote) ───── */
.news-quote {
    margin-top: 2rem;
    padding: 1.5rem;
    border-left: 4px solid #0073aa;
    background-color: #f0f8ff;
    font-style: italic;
    color: #444;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.news-quote img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
}

/* ───── Responsive ───── */
@media (max-width: 600px) {
    .news-card__content {
        padding: 1rem;
    }

    .news-card__title {
        font-size: 1rem;
    }

    .news-highlighted__title {
        font-size: 1.4rem;
    }

    .news-highlighted__text {
        font-size: 0.95rem;
    }

    .news-quote {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .news-social a {
        width: 32px;
        height: 32px;
        line-height: 32px;
        font-size: 0.8rem;
    }
}