/*
 * Comments Stylesheet for AhmedTea Theme
 */

.comments-area {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.comments-title,
.comment-reply-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.comment-list .comment {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.comment-list .children {
    list-style: none;
    margin-top: 1.5rem;
    padding-inline-start: 2rem; /* Handles LTR/RTL */
    border-inline-start: 2px solid #e5e7eb;
}

.comment-author {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    gap: 5px;
}

.comment-author .avatar {
    border-radius: 50%;
    margin-inline-end: 1rem;
}

.comment-author .fn {
    font-weight: bold;
    font-style: normal;
}

.comment-meta {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.comment-content {
    line-height: 1.6;
}

.reply .comment-reply-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: bold;
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--color-link);
    color: var(--color-link);
    border-radius: 4px;
    transition: all 0.3s;
}

.reply .comment-reply-link:hover {
    background-color: var(--color-link);
    color: #fff;
}

/* Comment Form */
.comment-form p {
    margin-bottom: 1rem;
}

.comment-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'PingArLt';
    font-size: 1rem;
}

.comment-form .form-submit .submit {
    background-color: var(--color-link);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-family: 'PingArLt';
}

.comment-form .form-submit .submit:hover {
    background-color: #4a7c50;
}

.no-comments {
    padding: 1rem;
    background-color: #f8f9fa;
    border: 1px solid #e5e7eb;
    text-align: center;
}