body .comments-area {
    width: min(100% - 32px, 920px);
    margin: clamp(24px, 4vw, 58px) auto clamp(42px, 6vw, 82px);
    padding: clamp(20px, 3vw, 34px);
    border: 1px solid rgba(123,16,24,.13);
    border-radius: 8px;
    background:
        radial-gradient(circle at 100% 0%, rgba(191,132,45,.15), transparent 34%),
        linear-gradient(135deg, rgba(255,255,255,.96), rgba(251,244,232,.84));
    box-shadow: 0 20px 50px rgba(58,16,10,.08);
}

body .comments-title,
body .comment-reply-title {
    margin: 0 0 16px !important;
    color: #2a0508 !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: clamp(26px, 2.4vw, 38px) !important;
    line-height: 1.12 !important;
    letter-spacing: 0 !important;
}

body .ast-comment-list,
body .comment-list {
    margin: 0 0 24px !important;
    padding: 0 !important;
    list-style: none !important;
    display: grid;
    gap: 12px;
}

body .ast-comment-list .comment-body,
body .comment-list .comment-body {
    padding: 16px !important;
    border: 1px solid rgba(123,16,24,.10);
    border-radius: 8px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 10px 24px rgba(58,16,10,.05);
}

body .comment-author,
body .comment-metadata {
    color: #6a5751;
    font-size: 13px;
}

body .comment-content,
body .comment-content p {
    color: #4f413d !important;
    font-size: 16px !important;
    line-height: 1.62 !important;
}

body .comment-reply-link,
body .comment-edit-link {
    color: #7b1018 !important;
    font-weight: 900;
}

body .comment-form {
    display: grid;
    gap: 13px;
}

body .comment-form p {
    margin: 0 !important;
}

body .comment-form label {
    display: block;
    margin-bottom: 6px;
    color: #2a0508;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
}

body .comment-form textarea,
body .comment-form input[type="text"],
body .comment-form input[type="email"],
body .comment-form input[type="url"] {
    width: 100%;
    border: 1px solid rgba(123,16,24,.16) !important;
    border-radius: 8px !important;
    background: #fff !important;
    padding: 13px 14px !important;
    color: #342927 !important;
    box-shadow: none !important;
}

body .comment-form .submit,
body .form-submit .submit {
    min-height: 50px;
    border: 0 !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, #7b1018, #9b111b) !important;
    color: #fff !important;
    padding: 13px 24px !important;
    box-shadow: 0 16px 34px rgba(123,16,24,.18) !important;
    font-weight: 900 !important;
}

@media (max-width: 720px) {
    body .comments-area {
        width: min(100% - 24px, 920px);
        border-radius: 8px;
    }
}
