header{
    position: absolute !important;
    width: 100%;
}

header div{
    background-color: transparent !important;
}

.ast-container{
    flex-direction: column;
}

.exhibitions-banner {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 80vh; /* FULL VIEWPORT */
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.exhibition-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Imagen */
.exhibition-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* se ve igual a tu referencia */
    display: block;
}

/* Slide visible */
.exhibition-slide.active {
    opacity: 1;
}

.exhibitions-banner .text-banner{
    position: absolute;
    display: flex;
    flex-direction: column;
    padding-left: 35px;
    padding-right: 35px;
    color: black;
    bottom: 10px;
}

.exhibitions-banner .text-banner h2{
    line-height:0.85;
    padding-bottom: 10px;
}

/* ===========================
   PAST EXHIBITIONS CAROUSEL
=========================== */

.exhibitions-carousel {
    position: relative;
    overflow: hidden;
}

.exhibitions-carousel .past-title {
    padding: 35px;
    font-size: 30px;
    line-height: 0.85;
}

.exhibitions-carousel-inner {
    position: relative;
    width: 100%;
    height: 75vh;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-slide .text-banner.small {
    position: absolute;
    bottom: 15px;
    left: 35px;
    color: black;
    display: flex;
    flex-direction: column;
}

.carousel-slide .text-banner.small h2 {
    font-size: 40px;
    line-height: 0.85;
}

.carousel-slide .text-banner.small p {
    font-size: 16px;
    margin-top: 8px;
}

/* MOBILE */
@media (max-width: 768px) {
    .exhibitions-carousel-inner {
        height: 50vh;
    }

    .carousel-slide .text-banner.small h2 {
        font-size: 30px;
    }
}

