/* Estilo tarjetas */
#testimonials .tst-card {
    border: 1px solid #f1f5f9;
    border-radius: 16px;
}

#testimonials .tst-quote {
    font-size: 48px;
    line-height: 1;
    color: #fe6d04;
    opacity: .25;
    margin-top: -6px;
}

#testimonials .tst-text {
    font-size: .95rem;
    color: #334155;
}

#testimonials .tst-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff2e8;
    color: #fe6d04;
    display: grid;
    place-items: center;
    font-weight: 700;
    letter-spacing: .5px;
    border: 1px solid #ffe2cc;
}

/* Multi-item layout del slide activo */
#testimonials .carousel-item {
    display: none;
}

    #testimonials .carousel-item.active {
        display: flex;
    }

    #testimonials .carousel-item > .col {
        padding: .5rem;
    }

    /* 1 en móvil */
    #testimonials .carousel-item > .col {
        flex: 0 0 100%;
        max-width: 100%;
    }

/* 2 en tablet */
@media (min-width:768px) {
    #testimonials .carousel-item > .col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* 3 en desktop */
@media (min-width:992px) {
    #testimonials .carousel-item > .col {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }
}

/* Controles visibles */
#testimonials .carousel {
    position: relative;
}

#testimonials .carousel-control-prev, #testimonials .carousel-control-next {
    width: 4%;
    z-index: 5;
}

#testimonials .carousel-control-prev-icon, #testimonials .carousel-control-next-icon {
    background-color: rgba(0,0,0,.45);
    border-radius: 50%;
    width: 2.75rem;
    height: 2.75rem;
    background-size: 60% 60%;
}
