.section-comments {
    background: rgba(19, 9, 17, 1);
}

.comments-slide {
    background: rgba(255, 255, 255, 0.1);
    padding: 48px;
    transition: 0.3s;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.comments-slide-date {
    font-weight: 300;
    font-size: 14px;
    line-height: 100%;
    color: rgba(255, 255, 255, 1);
    padding-bottom: 10px;
    margin-bottom: 24px;
    position: relative;
    transition: 0.3s;
}

.comments-slide-date::after {
    content: '';
    width: 48px;
    height: 2px;
    background: rgba(237, 28, 36, 1);
    display: block;
    position: absolute;
    bottom: 0px;
}

.comments-slide-date span {
    display: block;
    font-weight: 500;
    transition: 0.3s;
}

.comments-slide-content p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: rgba(255, 255, 255, 1);
    transition: 0.3s;
    min-height: 96px;
}

.comments-slide-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 32px;
}

.comments-slide-image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    position: relative;
}

.comments-slide-image img {
    width: 47px;
    height: 47px;
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
}

.comments-slide-info-content p {
    font-weight: 500;
    font-size: 13px;
    line-height: 100%;
    color: rgba(255, 255, 255, 1);
    transition: 0.3s;
}

.comments-slide-info-content span {
    font-weight: 300;
    font-size: 10px;
    line-height: 100%;
    color: rgba(188, 145, 44, 1);
    transition: 0.3s;
}

.comments-slide-info-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.comments-slide:hover {
    background: rgba(255, 255, 255, 1);
}

.comments-slide:hover .comments-slide-date,
.comments-slide:hover .comments-slide-date span {
    color: rgba(19, 9, 17, 1);
}

.comments-slide:hover .comments-slide-content p {
    color: rgba(99, 100, 102, 1);
}

.comments-slide:hover .comments-slide-info-content p {
    color: rgba(19, 9, 17, 1);
}


.comments-slide:hover .comments-slide-info-content span {
    color: rgba(99, 100, 102, 1);
}

.section-comments .swiper-slide{
    height: auto;
}

@media (min-width: 991px) {
    .section-comments .swiper-slide {
        width: 32% !important;
    }

}

@media (max-width: 991px) {
    .section-comments {
        margin-top: -1px;
        padding: 67px 20px 16px;
    }

    .comments-buttons .swiper-button-next,
    .comments-buttons .swiper-button-prev {
        position: unset;
        margin: 0;
    }

    .comments-buttons {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 24px;
        margin-top: 28px;
    }

    .section-comments {
        padding: 0 20px 16px;
        backdrop-filter: unset;
    }

    .section-comments .section-head {
        margin-bottom: 28px;
        text-align: center;
    }
    .comments-slide{
        padding: 40px 24px;
    }
    
}