/* Blog comments — scoped to .ul-comments-section, loaded only on blog_detail. */
.ul-comments-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #ebebeb;
}
.ul-comments-title {
    font-size: 22px;
    margin: 0 0 24px;
}
.ul-comments-empty {
    color: #6b7280;
    margin-bottom: 24px;
}
.ul-comments-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 36px;
}
.ul-comment {
    padding: 18px 20px;
    background: #f8f9fa;
    border-radius: 10px;
}
.ul-comment-meta {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 8px;
}
.ul-comment-author {
    font-weight: 700;
}
.ul-comment-date {
    font-size: 12px;
    color: #8b95a1;
}
.ul-comment-body {
    margin: 0 0 12px;
    line-height: 1.6;
    color: #4b5563;
}
.ul-comment-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}
.ul-comment-like {
    margin: 0;
}
.ul-comment-like button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #e2e5e9;
    background: #fff;
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 12px;
    cursor: pointer;
    color: #4b5563;
}
.ul-comment-like.is-liked button {
    border-color: #ff5b5b;
    color: #ff5b5b;
}
.ul-comment-reply {
    font-size: 12px;
}
.ul-comment-reply summary {
    cursor: pointer;
    color: #4b5563;
    font-weight: 600;
    list-style: none;
}
.ul-comment-reply summary::-webkit-details-marker {
    display: none;
}
.ul-comment-replies {
    margin-top: 16px;
    padding-left: 24px;
    border-left: 2px solid #e2e5e9;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ul-comment-reply-item {
    background: #fff;
    border: 1px solid #edf0f2;
}
.ul-comment-form,
.ul-comment-form-wrapper {
    margin-top: 14px;
}
.ul-comment-form-wrapper h4 {
    font-size: 17px;
    margin-bottom: 14px;
}
.ul-comment-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}
.ul-comment-form input[type="text"],
.ul-comment-form input[type="email"],
.ul-comment-form textarea {
    width: 100%;
    border: 1px solid #e2e5e9;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    margin-bottom: 12px;
}
.ul-comment-form textarea {
    min-height: 90px;
    resize: vertical;
}
.ul-comment-submitted {
    padding: 12px 14px;
    background: #eef7f1;
    color: #1c7c4d;
    border-radius: 8px;
    font-size: 14px;
}
/* Honeypot — hidden from real visitors, left reachable by bots that fill every field. */
.ul-hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 600px) {
    .ul-comment-form-row {
        grid-template-columns: 1fr;
    }
}
