/* Page Noticias */
.noticias-hero {
    min-height: 60vh; 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
}
.noticias-hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem); 
    letter-spacing: -1px;
}
.noticias-hero-btn {
    font-size: 0.95rem; 
    min-width: 180px;
}

/* News Cards */
.noticias-card {
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.noticias-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12) !important;
}
.noticias-card-img {
    height: 240px;
    border-radius: 20px 20px 0 0 !important;
    transition: transform 0.4s ease;
}
.noticias-card:hover .noticias-card-img {
    transform: scale(1.05);
}

/* Pagination */
.theme-pagination .page-numbers {
    display: flex;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}
.theme-pagination .page-numbers li a,
.theme-pagination .page-numbers li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    text-decoration: none;
    color: #333;
    background: #f5f5f5;
}
.theme-pagination .page-numbers li a:hover {
    background: #ED1651;
    color: #fff;
}
.theme-pagination .page-numbers li span.current {
    background: #ED1651;
    color: #fff;
}
