.comment-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.comment-item {
    padding-bottom: 40px;
    border-bottom: 1px solid var(--light-grey);
    display: flex;
    align-items: start;
    gap: 15px;
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-item img {
    min-width: 65px;
    max-width: 65px;
    max-height: 65px;
}

.comment-item svg {
    background: var(--bg-light-grey);
    color: var(--black);
    height: 40px;
    min-width: 40px;
    max-width: 40px;
    padding: 10px;
    border-radius: 50%;
}

.comment-name {
    margin-bottom: 5px;
    color: var(--black);
    font-weight: 500;
    font-size: 20px;
}

.comment-date {
    margin-bottom: 25px;
    color: var(--grey);
}

@media (max-width: 768px) {
    .comment-list {
        gap: 15px;
    }

    .comment-item {
        padding-bottom: 15px;
    }

    .comment-text {
        width: calc(100vw - 30px);
        margin-left: -80px;
    }
}