.comments {
    padding-top: 32px;
    border-top: 1px solid var(--color-light-gray);
}

.comments p.comments-title {
    margin-top: 40px;
    margin-bottom: 40px;
    color: var(--color-black);
    font-size: 1.875rem;
    font-weight: 600;
    line-height: 2.5rem;
}

.comments p.comments-title.site-comments-title {
    margin-bottom: 16px;
}

.comments p.comments-title + .star-review {
    margin-bottom: 40px;
}

.comments p.comments-title small {
    font-size: 1.125rem;
    font-weight: normal;
}

.comments .comments-form {
    padding: 24px 32px;
    border-radius: 20px;
    background: var(--color-white-blue);
    margin-bottom: 64px;
}

.comments .comments-form .comments-form-review {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 12px;
}

.comments .comments-form .comments-form-review .star-review {
    margin-bottom: 0;
}

.comments .comments-form .comments-form-title {
    color: var(--color-black);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.75rem;
    margin-bottom: 0;
}

.comments .comments-list {
    display: flex;
    flex-direction: column;
}

.comments .comments-list .comments-list-comment {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-light-gray);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.comments .comments-list .comments-list-comment:last-child {
    border-bottom: unset;
    margin-bottom: 0;
}

.comments .comments-list .comments-list-comment .comments-list-comment-nick,
.comments .comments-list .comments-list-comment .comments-list-comment-date,
.comments .comments-list .comments-list-comment .comments-list-comment-star-rating,
.comments .comments-list .comments-list-comment .comments-list-comment-content {
    margin-bottom: 0;
}

.comments .comments-list .comments-list-comment .comments-list-comment-nick {
    color: var(--color-black);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.625rem;
}

.comments .comments-list .comments-list-comment .comments-list-comment-date {
    text-align: right;
    color: var(--color-dark-gray);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.375rem;
}

.comments .comments-list .comments-list-comment .comments-list-comment-star-rating {
    flex: 0 0 100%;
}

.comments .comments-list .comments-list-comment .comments-list-comment-star-rating .star-review {
    margin-bottom: 0;
}

.comments .comments-list .comments-list-comment .comments-list-comment-content {
    flex: 0 0 100%;
    color: var(--color-dark-gray);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
}

.comments .comments-list .comments-list-comment .comments-list-comment-answer {
    margin-left: 44px;
    border-radius: 12px;
    padding: 20px 24px;
    background-color: var(--color-light-green);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

@media (max-width: 500px) {
    .comments .comments-list .comments-list-comment .comments-list-comment-answer {
        margin-left: 0;
    }
}

.comments .comments-list .comments-list-comment .comments-list-comment-answer .comments-list-comment-answer-notch {
    position: absolute;
    top: 0;
    left: -32px;
}

@media (max-width: 500px) {
    .comments .comments-list .comments-list-comment .comments-list-comment-answer .comments-list-comment-answer-notch {
        display: none;
    }
}

.comments .comments-list .comments-list-comment .comments-list-comment-answer .comments-list-comment-answer-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--color-dark-green);
}

.comments .comments-list .comments-list-comment .comments-list-comment-answer .comments-list-comment-answer-title .icon {
    background-color: var(--color-dark-green);
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
}

.comments .comments-list .comments-list-comment .comments-list-comment-answer .comments-list-comment-answer-content {
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    color: var(--color-black);
    word-break: break-word;
}

.comments .comments-load-more {
    text-align: center;
    margin-bottom: 16px;
}
