.comments-section {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background: #f4f4f4;
}

.comments__upper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.comments__text {
    color: #6E6E6E;
    line-height: 140%;
}

.comments__title {
    margin: 0;
}

.comments__slider .swiper-slide {
    width: auto;
}

.comments {
    width: 100%;
    border: 1px solid var(--light-border-color);
    background: var(--light-color);
    border-radius: var(--small-border-radius);
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all .3s ease;
    min-height: 375px;
}

.comments:hover {
    border: 1px solid var(--primary-color);
}

.comments__image {
    border-radius: var(--small-border-radius);
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.comments__title {
    font-size: 16px;
    font-weight: 600;
    line-height: 130%;
}

.comments__button {
    width: 100%;
}

.content__container h3 {
    font-size: 20px;
    font-weight: 600;
}

.content__container h4 {
    font-size: 18px;
    font-weight: 600;
}


@media (max-width:500px) {
    .comments__upper {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}

@media (max-width:900px) {
    .comments__image {
        height: 200px;
    }
}