.noticias-pagination .prev.page-numbers,
.noticias-pagination .next.page-numbers {
    display: none !important;
}

.page-noticias-list.noticias-destacadas-inner {
    display: grid;
    gap: 66px;
    grid-template-columns: 1fr;
}

.noticias-destacadas-inner {
    max-width: 1270px;
    margin: 0 auto;
}

/* Estilos generales */
.noticias-page {
    max-width: 1270px;
    margin: 0 auto;
    padding: 20px;
}

.noticias-title {
    font-size: 25px;
    color: #00A2F0;
    text-align: center;
    font-weight: 400;
    margin-bottom: 30px;
}

/* Estilos de cada noticia */
.noticias-list {
    display: flex;
    flex-direction: column;
    gap: 53px;
}

/* Página de noticias */ 
.noticias-list .noticias-destacadas-inner .noticia-item .noticia-date-destacada {
    color: #F7AD08;
    font-size: 12px;
    font-weight: 700;
}

.noticias-list .noticias-destacadas-inner .noticia-item .noticia-excerpt-home {
    color: #000;
}

/* NOTICIAS DE LA HOME */
.noticias-destacadas-inner .noticia-item .noticia-date-destacada {
    color: #104064;
    font-size: 14px;
    font-weight: 700;
}

.noticias-destacadas-inner .noticia-item .noticia-excerpt-home {
    color: #FFF;
}

.noticia-item {
    display: flex;
    /* align-items: center; */
    gap: 30px;
    text-decoration: none;
    border-radius: 0;
    background-color: transparent;
}

.noticia-image img {
    max-width: 500px;
    object-fit: cover;
    border-radius: 0;
}

.noticia-content {
    flex: 1;
}

.noticia-title-home {
    font-size: 24px;
    color: #104064;
    font-weight: bold;
    margin: 0 0 5px;
    text-align: left;
}
.noticia-title {
    font-size: 24px;
    color: #2E5E82;
    font-weight: bold;
    margin: 0 0 5px;
    text-align: left;

}

.noticia-date-destacada {
    font-size: 14px;
    color: #104064;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0px;
    text-align: left;
}

.noticia-date {
    font-size: 14px;
    color: #FFC137;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0px;
    text-align: left;
    
}

.noticia-excerpt {
    font-size: 16px;
    color: #535353;
    margin-bottom: 0px;
}
.noticia-excerpt-home {
    font-size: 16px;
    color: #fff;
    margin-bottom: 0px;
    line-height: 1.8;
}

/* Paginación */
.noticias-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}
.page-numbers.current{
    color: #00A2F0;
    font-size: 16px;
    font-weight: 500;
}
.noticias-pagination a {
    text-decoration: none;
    color: #2E5E82;
    font-weight: 500;
    font-size: 16px;

}
.pagination-numbers {
    display: flex;
    gap: 10px;
}

.noticias-pagination .disabled {
    color: #ccc;
}

.noticias-pagination .pagination-prev,
.noticias-pagination .pagination-next {
    font-size: 14px;
}
/* Contenedor principal */
.noticia-single {
    max-width: 1270px;
    margin: 0 auto;
    padding: 20px;
    
    line-height: 1.6;
}

/* Encabezado de Noticias */
.noticia-header {
    font-size: 25px;
    color: #00A2F0;
    text-align: center;
    font-weight: 400;
    margin-bottom: 30px;
}

.noticia-header h1 {
    font-size: 36px;
    font-weight: bold;
    color: #00A2F0; /* Color azul para el título principal */
    margin-bottom: 10px;
}
.single-noticia-image img{
    margin-bottom: 37px;
    max-height: 400px;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 16 / 9;
}

/* Imagen destacada */

.noticia-image-destacada img {

    max-width: 500px;
    max-height: 200px;
    object-fit: cover;
}
.noticia-image img {
    max-width: 500px;
    max-height: 200px;
    /* width: 100%;
    height: auto; */
}
.noticia-navigation{
    display: flex;
    justify-content: center;
}
/* Texto de la noticia */
.noticia-text {
    font-size: 17px;
    color: #535353; /* Gris del contenido */
    text-align: left;
    margin-bottom: 30px;
}

.noticia-back-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #2E5E82; /* Azul del botón */
    color: white;
    font-size: 15px;
    
    text-decoration: none;
    padding: 5px 20px;
    border-radius: 50px;
    gap: 8px;
    transition: background-color 0.3s ease;
}
.noticia-back-button span{
    font-family: "Titillium Web", serif !important;
    font-weight: 400;
}

.noticia-back-button .noticia-button-icon {
    display: inline-block;
    width: 20px;
    height: auto;
}

hr.hr-notice-custom{
    color: #BABABA;
}

hr.noticia-divider.noticias-page-divider {
    color: transparent;
}
.noticias-destacadas-inner .noticia-image-destacada img{
    aspect-ratio: 16/9;
}
@media (max-width: 980px) {
    .noticia-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 700px;
        margin: 0 auto;
    }
    .noticia-title-home{
        font-size: 22px;
    }
    .noticias-destacadas-inner .noticia-item .noticia-date-destacada{
        font-size: 12px;
    }
    .noticia-image-destacada {
        max-width: unset;
        width: 100%;
    }
    .noticias-list .noticia-image-destacada img{
        aspect-ratio: 16/9;
    }
    .noticia-image-destacada img {
        max-width: unset;
        width: 100%;
        max-height: 300px;
    }
}