#banner-principal {
    padding-top: 72px;
}
.indexContent .container-fluid {
    max-width: 1200px;
}
.img-ppal {
    height: 320px;
    background: var(--gray-900) url(../img/portada.png) no-repeat center center;
}
@media (max-width: 575px) {
    .img-ppal {
        height: 440px;
        background: var(--gray-900) url(../img/portada_movil.png) no-repeat center center;
        background-size: contain;
    }
}
/* Carrusel */
#carousel {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.carousel-indicators {
    position: relative;
    margin-top: 1.5rem;
}
.carousel-indicators li {
    background-color: var(--gray-400);
    border: none;
    width: 100px;
    height: 10px;
    margin: 0 10px;
}
.carousel-indicators li:focus, .carousel-indicators li.active {
    background-color: var(--primary) !important;
    border: none;
}
/* Notas */
#notas {
    .carousel-inner {
        padding-bottom: 5px;
    }
    .card-noticia {
        box-shadow: -4px 4px 0px 0px var(--primary);
    }
    .card-noticia .img-16x9 {
        height: 200px;
    }
    .card-noticia .card-body {
        background-color: #fff;
        padding: 0.75rem 1rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .card-noticia .encabezado, .card-noticia .resumen {
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        line-height: 1.2;
    }
}
@media (max-width: 991px) {
    #notas {
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
        .card-noticia .card-body {
            height: 235px;
        }
    }
}
@media (min-width: 992px) {
    #notas {
        .carousel-inner {
            overflow: visible;
            width: unset !important;
            margin-left: -15px;
            margin-right: -15px;
        }
        .carousel-inner .carousel-item {
            display: block !important;
            transition: none !important;
            margin-right: 0 !important;
            padding-left: 15px;
            padding-right: 15px;
        }
    }
}