.slider-custom-testimonials .slider .custom-testimonials__item .item--container {
    background-color: rgb(var(--card-color));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.custom-testimonials__item .item--stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.custom-testimonials__item .item--stars.item--stars-center {
    justify-content: center;
}

.custom-testimonials__item .item--author-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-testimonials__item .item--author-info.item--author-info-center {
    flex-direction: column;
    gap: 5px;
}

.custom-testimonials__item .item--author-info .item--author-info__avatar {
    max-width: 60px;
    height: auto;
}

.custom-testimonials__item .item--author-info .item--author-info__avatar > img {
    vertical-align: sub;
}

.custom-testimonials__item .item--author-info .item--author-info__avatar.item--author-info__avatar-rounded {
    border-radius: 50%;
    overflow: hidden;
}

.custom-testimonials__item .item--author-info .item--author-info__avatar.item--author-info__avatar-rect {
    border-radius: 6px;
    overflow: hidden;
}

@media (min-width: 960px) {
    .custom-testimonials__content {
        margin-bottom: 20px;
    }

    .custom-testimonials__item .item--container {
        padding: 40px 44px;
        min-height: 310px;
    }

    .custom-testimonials__item .item--description {
        opacity: 0.8;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 959px) {
    .custom-testimonials__content {
        margin-bottom: 30px;
    }

    .custom-testimonials__item .item--container {
        padding: 20px 20px 30px;
        min-height: 300px;
    }

    .custom-testimonials__item .item--description {
        opacity: 0.8;
        margin-bottom: 12px;
    }
}