.comments-area {
    margin-top: 50px;
    font-family: 'Ubuntu', sans-serif;
}
.comments-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}
.comments-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #333;
}
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.comment-list .children {
    margin-left: 40px;
}
.comment-body {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.comment-body:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.comment-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.comment-author img {
    border-radius: 50%;
    width: 48px;
    height: 48px;
    border: 2px solid #f0f0f0;
}
.comment-author-info {
    display: flex;
    flex-direction: column;
}
.comment-author-name a {
    font-weight: 500;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}
.comment-author-name a:hover {
    color: #555;
}
.comment-date {
    font-size: 14px;
    color: #999;
}
.comment-content {
    line-height: 1.6;
    color: #555;
    font-size: 16px;
    margin-bottom: 15px;
}
.comment-content a {
    color: #333;
    text-decoration: underline;
    transition: color 0.3s ease;
}
.comment-content a:hover {
    color: #555;
}
.comment-awaiting-moderation {
    font-style: italic;
    color: #888;
    font-size: 14px;
}
.comment-reply {
    text-align: right;
}
.comment-reply a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 5px;
    background: #f0f0f0;
    transition: background 0.3s ease, color 0.3s ease;
}
.comment-reply a:hover {
    background: #333;
    color: #fff;
}
.comment-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 14px;
}
.comment-previous a,
.comment-next a {
    color: #333;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    background: #f0f0f0;
    transition: background 0.3s ease, color 0.3s ease;
}
.comment-previous a:hover,
.comment-next a:hover {
    background: #333;
    color: #fff;
}
.comment-respond {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-top: 40px;
}
.comment-reply-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}
.logged-in-as {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 20px;
}
.logged-in-as a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}
.logged-in-as a:hover {
    color: #555;
}
.comment-notes {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 20px;
}
.comment-notes .required {
    color: #333;
    font-weight: bold;
}
.comment-form-comment,
.comment-form-author,
.comment-form-email {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}
.comment-form-comment textarea,
.comment-form-author input,
.comment-form-email input {
    width: 100%;
    max-width: 600px;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Ubuntu', sans-serif;
    outline: none;
    background: #fff;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s ease;
}
.comment-form-comment textarea {
    height: 150px;
    resize: vertical;
}
.comment-form-comment textarea:focus,
.comment-form-author input:focus,
.comment-form-email input:focus {
    border-color: #333;
}
.form-submit {
    display: flex;
    justify-content: center;
}
.form-submit button {
    background: #333;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}
.form-submit button:hover {
    background: #555;
}
@media (max-width: 768px) {
    .comments-title {
        font-size: 22px;
    }
    .comment-list .children {
        margin-left: 20px;
    }
    .comment-body {
        padding: 15px;
    }
    .comment-author img {
        width: 40px;
        height: 40px;
    }
    .comment-author-name a {
        font-size: 14px;
    }
    .comment-date {
        font-size: 12px;
    }
    .comment-content {
        font-size: 14px;
    }
    .comment-reply a {
        font-size: 12px;
        padding: 4px 8px;
    }
    .comment-navigation {
        font-size: 12px;
    }
    .comment-previous a,
    .comment-next a {
        padding: 6px 12px;
    }
    .comment-respond {
        padding: 20px;
    }
    .comment-reply-title {
        font-size: 20px;
    }
    .comment-form-comment textarea,
    .comment-form-author input,
    .comment-form-email input {
        font-size: 14px;
        max-width: 100%;
    }
    .form-submit button {
        padding: 10px 20px;
        font-size: 14px;
    }
}
@media (max-width: 480px) {
    .comment-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .comment-author img {
        width: 32px;
        height: 32px;
    }
    .comment-reply {
        text-align: left;
    }
}