﻿.comments-carousel{
    --card-padding: 80px;
    font-weight: 400;
}

.comment-title{
    margin-top: 80px;
    margin-bottom: 40px;
}

.comments-carousel__content{
    display: flex;
    margin: 0 calc(var(--card-padding)/2);
    width: fit-content;
}

.comments-carousel__item .comments-slide{
    margin-right: 68px;
}

.comments-carousel__content .comments-slide .comments-carousel__card:nth-child(2){
    transform: translateX(calc(var(--card-padding)/ 2));
}

.comments-carousel__card{
    width: 350px;
    background-color: #282828;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 300px) {
    .comments-carousel__card{
        width: 260px;
    }
}

.card-right{
    margin-right: -55px;
}

.card-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-information{
    display: flex;
    justify-content: start;
    align-items: center;
}

.user-information img{
    width: 3rem;
    height: 3rem;
    margin-right: 10px;
}

.user-name{
    font-family: 'Lato-Regular', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    color: #7C7C7C;
}

.user-name p{
    margin: 0;
    padding: 0;
}

.card-desc{
    margin-top: 10px;
}

.card-desc p:nth-child(2) {
    color: #DEDEDE;
    font-family: 'Lato-Regular', sans-serif;
}

