/*
Theme Name: Twenty Twenty-Five Child
Theme URI: https://example.com/
Description: Child theme for Twenty Twenty-Five
Author: Your Name
Author URI: https://example.com
Template: twentytwentyfive
Version: 1.0
*/

.custom-comments-section {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 0 25px rgba(0,0,0,0.08);
}

.comments-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    border-left: 5px solid #0073aa;
    padding-left: 12px;
}

.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment-box {
    margin-bottom: 18px;
}

.comment-inner {
    display: flex;
    gap: 15px;
    padding: 18px;
    background: #f7f9fc;
    border-radius: 14px;
    transition: 0.3s;
}

.comment-inner:hover {
    background: #eef3fa;
}

.comment-inner.reply {
    margin-left: 50px;
    background: #f0f6ff;
}

.comment-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.comment-author {
    font-weight: 600;
    margin: 0;
}

.comment-date {
    font-size: 13px;
    color: #777;
    margin-left: 8px;
}

.comment-text {
    margin: 10px 0;
}

.comment-actions a {
    color: #0073aa;
    font-weight: 600;
    text-decoration: none;
}

.comment-actions a:hover {
    text-decoration: underline;
}

.comment-input {
    width: 100%;
    height: 130px;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #ccd4e0;
    resize: none;
}

.submit-comment-btn {
    padding: 12px 25px;
    background: #ff3131;
    color: #fff;
    border-radius: 10px;
    margin-top: 10px;
    cursor: pointer;
    border: none;
}
