/* Noticias Section Styles */
.noticias_section {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.noticias_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.noticia_card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.noticia_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 81, 203, 0.2);
}

.noticia_image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.noticia_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.noticia_card:hover .noticia_image img {
    transform: scale(1.08);
}

.noticia_fecha {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #0B346B;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.noticia_content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.noticia_meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 12px;
}

.meta-author,
.meta-category {
    color: #999999;
    display: flex;
    align-items: center;
    gap: 4px;
}

.meta-author i,
.meta-category i {
    color: #0B346B;
}

.noticia_titulo {
    font-size: 18px;
    color: #000000;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.4;
    border-left: 4px solid #0B346B;
    padding-left: 12px;
}

.noticia_excerpt {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.btn-leer-mas {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0B346B;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-leer-mas:hover {
    color: #1872E7;
    gap: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .noticias_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .noticia_image {
        height: 200px;
    }

    .noticia_content {
        padding: 20px;
    }

    .noticia_titulo {
        font-size: 16px;
    }

    .noticia_excerpt {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .noticia_meta {
        flex-direction: column;
        gap: 8px;
    }
}
