.comments-area {
    margin: 0 auto;
    background: #fff;
    margin-bottom: 15px;
    border-top: 1px solid #ececec;
}

.comments-title {
    font-size: 15px;
    margin-bottom: 15px;
    color: #333;
    background: #f9f9f9;
    padding-inline: 10px;
    border-radius: 10px;
    width: fit-content;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-body {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.comment-list .children {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-list .children .comment-body {
    background: #f5f5f5;
    margin: 5px 0;
    padding: 10px;
    border-radius: 10px;
}

.comment-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #555;
    flex-direction: row-reverse;
}

.comment-actions {
    order: 1;
}

.comment-actions a {
    color: #0073aa;
    text-decoration: none;
    font-size: 12px;
}

.comment-actions .delete-comment {
    color: #e74c3c;
    text-decoration: none;
    font-size: 12px;
}

.comment-actions a:hover {
    text-decoration: underline;
}

.comment-info {
    display: flex;
    align-items: center;
    gap: 10px;
    order: 2;
}

.comment-info img {
    border-radius: 50%;
    height: 30px;
    aspect-ratio: auto 40 / 40;
    width: 30px;
}

.comment-info span {
    font-weight: bold;
    color: #2196F3;
}

.comment-info time {
    font-size: 12px;
    color: #7f8c8d;
}

.reply-to {
    font-size: 12px;
    color: #7f8c8d;
    margin: 5px 0;
    font-style: italic;
}

.comment-content {
    font-size: 14px;
    margin: 5px 0;
    color: #555;
    line-height: 1.6;
}

.comment-content em {
    color: #e74c3c;
    font-size: 12px;
}

.comment-respond {
    margin-bottom: 20px;
    background-color: #fafafa;
    padding: 15px;
    border-radius: 10px;
    margin-top: 30px;
}

.comment-reply-title {
    font-size: 15px;
    margin: 0;
    color: #4f4f4f;
}

.comment-form p {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.comment-form label {
    font-size: 14px;
    color: #333;
    min-width: 80px;
}

.comment-form textarea {
    width: 95%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    font-family: var(--font-content);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    font-family: var(--font-content);
}

.comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.comment-form-cookies-consent input[type="checkbox"] {
    margin: 0;
}

.comment-form-cookies-consent label {
    font-size: 14px;
    color: #555;
}

.submit-btn {
    background: linear-gradient(to bottom, #13b6ff, #2196F3);
    color: #fff;
    padding: 8px 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: var(--font-titels);
    font-size: 14px;
}

.submit-btn:hover {
    background: #005f8b;
}

.required {
    color: #e74c3c;
    font-size: 14px;
}

.comment-notes {
    font-size: 13px;
    color: #777;
    margin-bottom: 15px;
}

@media (max-width: 600px) {
    .comment-form p {
        flex-direction: column;
        align-items: flex-start;
    }

    .comment-form label {
        margin-bottom: 5px;
    }

    .comment-form input[type="text"],
    .comment-form input[type="email"],
    .comment-form input[type="url"] {
        width: 100%;
    }

    .comment-meta {
        flex-direction: row;
        align-items: flex-start;
        gap: 5px;
    }

    .comment-actions {
        order: 2;
    }

    .comment-info {
        order: 1;
    }
}