.comment {
    margin-bottom: 38px;
}

.comment__form{

}
.comment__form label{
    display: block;
    margin-bottom: 4px;
}
.comment__form input,
.comment__form textarea{
    margin-top: 4px;
    margin-bottom: 10px;
}
.comment__form-submit{
    color: #ccc;
    height: 45px;
    margin-top: 8px;
}

.comments-pagination{

}
.comments-pagination .nav-links{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.comments-pagination .page-numbers{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    width: 40px;
    height: 40px;
    border-radius: 3px;
    border: 1px solid #94a3b8;
    color: #94a3b8;
    transition: all 0.3s;
}
.comments-pagination .nav-links .page-numbers:hover,
.comments-pagination .nav-links .page-numbers.current{
    border-color: #5eead4;
    color: #5eead4;
}

.comment__list {
    /* padding: 40px;
    margin-top: 40px;
    border-radius: 8px;
    border: 1px solid #94a3b8; */
    gap: 20px 0;
}

.comment__item {
    width: 100%;
    padding: 20px;
    border-radius: 8px;
    background-color: rgba(30, 41, 59, 0.5);
    -webkit-box-shadow: inset 0 1px 0 0 rgba(148, 163, 184, 0.1), 0 10px 8px rgba(0, 0, 0, 0.04), 0 4px 3px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 0 0 rgba(148, 163, 184, 0.1), 0 10px 8px rgba(0, 0, 0, 0.04), 0 4px 3px rgba(0, 0, 0, 0.1);
}

.comment__author {
    justify-content: space-between;
    width: 100%;
    align-items: center;
    border-radius: 8px;
    box-shadow: 0 0 3px rgba(148, 163, 184, 0.1);
    min-height: 50px;
    padding: 0 20px;
    margin-bottom: 20px;
}

.comment__author-name {
    font-weight: 600;
}

.comment__date {
    color: #ccc;
    font-size: 14px;
}

.comment__content {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 3px rgba(148, 163, 184, 0.1);
    p:last-child {
        margin-bottom: 0;
    }
}