.section--testimonials {
    padding: 28px 0 5px;
}

.section--testimonials .accordion {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    padding: 5px 21px 21px 12px;
    max-height: 590px;
    overflow: auto;
}

.section--testimonials .accordion .collapse:not(.show) {
    display: none;
}

.section--testimonials .card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 10px 12px 20px 1px rgba(27, 82, 179, 0.15);
}

.section--testimonials .card .btn {
    width: 100%;
    padding: 14px 16px;
    font-size: 18px;
    font-weight: 700;
    text-transform: none !important;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section--testimonials .card .btn:hover {
    transform: translateY(0);
}

.section--testimonials .card .btn .icon--collapse {
    display: block;
    width: 27px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg width='27' height='16' viewBox='0 0 27 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_26_1773)'%3E%3Cpath d='M2.5 2L13.5 13L24.5 2' stroke='%2382B63C' stroke-width='2' stroke-linecap='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_26_1773'%3E%3Crect width='24' height='14' fill='white' transform='translate(1.5 1)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    transform: rotate(0deg);
    transition: 300ms;
}

.section--testimonials .card .btn:not(.collapsed) .icon--collapse {
    transform: rotate(180deg);
}

.section--testimonials .card .card-body {
    padding: 0 16px 14px 16px;
    font-size: 18px;
    line-height: 1.5;
    color: #3D3D3D;
}

/* WebKit (Chrome, Safari, Edge) */
.section--testimonials .accordion::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.section--testimonials .accordion::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.section--testimonials .accordion::-webkit-scrollbar-thumb {
    background-color: #EBECF5;
    /* subtle green */
    border-radius: 10px;
    background-clip: padding-box;
}

.section--testimonials .accordion::-webkit-scrollbar-thumb:hover {
    background-color: #EBECF5;
}

/* Firefox */
.section--testimonials .accordion {
    scrollbar-width: thin;
    scrollbar-color: #91D92F transparent;
}

.testimonial-video-wrapper .video_title {
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
    color: #3D3D3D;
}

/* Video component styles */
.section--testimonials .testimonial-video-player {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 ratio */
    overflow: hidden;
    margin-bottom: 15px;
}

.section--testimonials .testimonial-video-player .video-poster {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    overflow: hidden;
}

.section--testimonials .testimonial-video-player video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.section--testimonials .testimonial-video-player .video-play {
    position: absolute;
    right: 18px;
    bottom: 16px;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    border: none;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    filter: drop-shadow(0px 0px 100px rgba(0, 0, 0, 0.25));
}

.section--testimonials .testimonial-video-player .video-play__triangle {
    width: 23px;
    height: 26px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='28' viewBox='0 0 24 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23 12.268C24.3333 13.0378 24.3333 14.9623 23 15.7321L3.5 26.9904C2.16666 27.7602 0.5 26.798 0.5 25.2584L0.500001 2.74169C0.500001 1.20209 2.16667 0.239841 3.5 1.00964L23 12.268Z' fill='%2391D92F'/%3E%3C/svg%3E%0A");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.section--testimonials .testimonial-video-player.is-playing .video-play {
    display: none;
}

@media (max-width: 767px) {
    .section--testimonials {
        padding: 28px 0 0;
    }

    .section--testimonials .accordion {
        max-height: 650px;
        right: 16px;
    }

    .section--testimonials .card .card-body {
        font-size: 16px;
    }

    .section--testimonials .testimonial-video-player {
        padding-top: 56.25%;
    }

    .section--testimonials .testimonial-video-player .video-play {
        width: 42px;
        height: 42px;
    }

    .testimonial-video-wrapper .video_title {
        font-size: 18px;
    }

    .section--testimonials .testimonial-video-player .video-play__triangle {
        width: 12px;
        height: 13px;
    }
}