/* Hero estilo páginas tipo turismo */
.video-section.item-slide {
    min-height: 330px;
    max-height: 330px;
    height: 330px;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.video-section.item-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
 
/* Contenedor de noticias */
.noticias-container{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
}

/* desktop */
.noticia-col{
    flex: 1 1 calc(33.333% - 24px);
    min-width: 280px;
}

/* tablet */
@media (max-width: 900px){
    .noticia-col{
        flex: 1 1 calc(50% - 24px);
    }
}

/* móvil */
@media (max-width: 600px){
    .noticia-col{
        flex: 1 1 100%;
    }
}
 
/* Tarjetas */
.noticias-container .noticia {
    margin-bottom: 2rem;
}
 
/* Paginación */
.pagination .page-link {
    color: #000;
}
.pagination .page-item.active .page-link {
    background-color: #a31e33;
    border-color: #a31e33;
    color: #fff;
}
 
/* ===== SECCIÓN INSCRÍBETE ===== */
.inscribete-section {
    background-color: #880d0d;
    color: #fff;
    padding: 4rem 0;
}
 
.inscribete-titulo {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    color: #fff;
}
 
.inscribete-row {
    gap: 0;
}
 
.inscribete-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 2rem;
    color: #fff;
}
 
.inscribete-dist {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.2rem;
    line-height: 1;
}
 
.inscribete-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
}
 
.inscribete-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    max-width: 280px;
}
 
.inscribete-btn {
    background-color: #fff;
    color: #6b0f1a;
    font-weight: 800;
    font-size: 1rem;
    padding: 0.85rem 2.5rem;
    border-radius: 8px;
    border: 2px solid #fff;
    transition: background-color 0.25s ease, color 0.25s ease;
    text-decoration: none;
}
 
.inscribete-btn:hover {
    background-color: transparent;
    color: #fff;
}
 
@media (max-width: 768px) {
    .inscribete-col {
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding: 2rem 1rem;
    }
    .inscribete-col:last-of-type {
        border-bottom: none;
    }
    .inscribete-titulo {
        font-size: 2rem;
    }
}
/* =========================
   VIDEO HERO NOTICIAS
========================= */

.video-section.item-slide {
    position: relative;
    min-height: 330px;
    max-height: 330px;
    height: 330px;
    width: 100%;
    overflow: hidden;
}

.video-section.item-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* overlay antes inline */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

/* caption antes inline */
.slide-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 100%;
}

.slide-title {
    color: #fff;
    font-size: 3rem;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
}

/* =========================
   NOTICIAS GRID (reemplazo inline)
========================= */

.noticias-container--grid {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

/* =========================
   INSCRÍBETE COL BORDER FIX
========================= */

.inscribete-col--border {
    border-right: 1px solid #fff;
}

.inscribete-col--border:last-child {
    border-right: none;
}