.hero__slider .carousel {
    --hero-carousel-height: 70vh;
    min-height: var(--hero-carousel-height);
    height: var(--hero-carousel-height);
    max-height: var(--hero-carousel-height);
}


.hero__slider .carousel-inner,
.hero__slider .carousel-item,
.hero__slider .carousel-item img {
    height: 100%;
}
.hero__slider .carousel-item img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__slider .carousel-caption {
    top: calc( 1.25rem + 24px );
    right: auto;
    bottom: 1.25rem;
    left: 10%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.25rem;
    width: 80%;
    color: var(--black);
    text-align: left;
    background-color: rgba(255,255,255, .6);
    border: 8px solid var(--black);
}
.hero__slider .carousel-caption__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
}
.hero__slider .carousel-caption__icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero__slider .carousel-caption__title {
    flex: 1 0 auto;
    font-family: var(--font-black);
    font-size: calc( 1.2rem + 2vw );
    text-transform: uppercase;
    line-height: 1.1;
}
    .carousel-caption__title-link,
    .carousel-caption__title-link:visited,
    .carousel-caption__title-link:focus,
    .carousel-caption__title-link:hover,
    .carousel-caption__title-link:active {
        color: var(--color-text);
        text-decoration: none;
        transition: all .25s ease-in-out;
    }
.carousel-caption__datetime {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1rem;
    padding: .5rem 1rem;
    width: 100%;
    max-width: 100%;
    text-align: center;
    white-space: normal;
    background-color: rgba(255,255,255, .8);
}
    .carousel-caption__datetime__icon {
        display: none;
    }
        .carousel-caption__datetime__icon svg,
        .hero__slider .carousel-caption__link svg {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    .carousel-caption__datetime__text {
        flex: 1 0 auto;
        max-width: 100%;
        font-size: .9rem;
        line-height: 1.2;
        text-transform: uppercase;
        white-space: normal;
    }
.hero__slider .carousel-caption__link {
    align-self: flex-end;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .5rem;
    width: 50px;
    height: 50px;
    background-color: var(--black);
}

.hero__slider .carousel-control-next, 
.hero__slider .carousel-control-prev {
    width: 10%;
}
.hero__slider .carousel-control-prev-icon,
.hero__slider .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-size: 50% 50%;
    background-color: var(--color-text-20);
    border-radius: 50%;
}

.hero__slider .carousel-indicators {
    justify-content: flex-end;
    margin-right: 5%;
    margin-left: 25%;
}

.hero__slider .carousel-indicators [data-bs-target] {
    flex: 0 1 auto;
    width: 10px;
    height: 10px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    background-color: var(--white);
    opacity: 1;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-radius: 50%;
}
.hero__slider .carousel-indicators [data-bs-target].active {
    background-color: var(--color-sala-gold);
}

@media ( min-width: 600px ){
    .hero__slider .carousel-caption__title {
        font-size: calc( 1.4rem + 2vw );
        line-height: 1.2;
    }
    .carousel-caption__datetime__icon {
        display: block;
        width: 24px;
        height: 24px;
    }
}

@media ( min-width: 992px ){
    .hero__slider .carousel-caption {
        top: calc( 1.25rem + 24px );
        bottom: 1.25rem;
        left: 10%;
        padding: 1.25rem;
        width: 45%;
    }
    .hero__slider .carousel-caption__title {
        font-size: 2.2rem;
    }
}

@media ( min-width: 1200px ){
    .hero__slider .carousel-caption {
        width: 35%;
    }
    .hero__slider .carousel-caption__title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero__slider .carousel-caption {
        flex-direction: row;
        flex-wrap: wrap;
        align-content: space-between;
    }
        .hero__slider .carousel-caption__title {
            width: 100%;
        }
        .carousel-caption__datetime {
            margin-bottom: 0;
            width: calc( 100% - 60px);
            font-size: .85rem;
        }
}.section-title {
    text-align: center;
}

.featured__content .row {
    gap: 2rem 0;
}


/** Categories list - Ver también events-categories-list.css + event-card.css **/
.categories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.events_actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}
.events_actions .button {
    font-size: .85rem;
}