section.home-testimonials {
    --background-image: url('../img/background-testimonials.webp');
    padding: 95px 0 0;
    background-image: var(--background-image);
    background-size: cover;
    background-position: center;
    position: relative;
}

section.home-testimonials:after {
    content: "";
    display: block;
    width: 100%;
    height: 40%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(11, 40, 57, 1) 0%, rgba(11, 40, 57, 0) 100%);
    z-index: 1;
}

section.home-testimonials .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

section.home-testimonials .container .slick-dots li.slick-active button:before,
section.home-testimonials .container .slick-dots li button:before {
    color: #fff;
}

.card-testimonial {
    border-radius: 12px;
    border: 0.832px solid var(--bluesky-color);
    background: linear-gradient(82deg, rgba(252, 216, 166, 0.50) -14.05%, rgba(17, 71, 97, 0.25) 48.02%, rgba(17, 71, 97, 0.00) 111.75%);
    backdrop-filter: blur(12.650176048278809px);
    padding: 42px 40px;
    margin: 0 9px;
    transition: all 0.8s ease 0s;
}

.podcast-holder {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
}

.card-testimonial:hover {
    background: var(--stroke-color, #D68631);
    box-shadow: 0 0 11.865px 0 rgba(252, 216, 166, 0.25);
    cursor: pointer;
}

.card-testimonial .testimonial-content {
    padding-bottom: 31px;
    transition: all 0.8s ease 0s;
}

.card-testimonial .testimonial-content .testimonial-text {
    color: #FFF;
    font-family: var(--monserrat-font);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
    max-height: 110px;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.8s ease 0s;
}


.card-testimonial .testimonial-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-color, #6A6A6A);
}

.card-testimonial:hover .testimonial-footer {
    border-top: 1px solid var(--icon-color, #FCD8A6);
}

.card-testimonial .testimonial-footer .testimonial-image {
    width: 59px;
    height: 59px;
    border-radius: 50%;
    object-fit: cover;
}

.card-testimonial .testimonial-footer .testimonial-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}