/* =========================
   COMMENTS (SYNC ARTICLE)
========================= */

/* WRAPPER = SAMA SEPERTI ARTICLE */
.seoelite-comments {
    background: #fff;
    padding: 18px;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-top: 20px;
}

/* TITLE */
.comments-title {
    margin-bottom: 16px;
}

/* =========================
   COMMENT LIST
========================= */

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ITEM */
.comment-body {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 12px;
}

/* META */
.comment-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #777;
    margin-bottom: 8px;
}

/* AUTHOR */
.comment-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.comment-author img {
    border-radius: 50%;
}

/* CONTENT */
.comment-content {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

/* REPLY */
.comment-reply a {
    font-size: 12px;
    color: var(--accent);
    text-decoration: none;
}

.comment-reply a:hover {
    text-decoration: underline;
}

/* CHILD COMMENT (NESTED) */
.comment-list .children {
    margin-top: 10px;
    padding-left: 20px;
    list-style:none;
}

/* =========================
   COMMENT NAVIGATION
========================= */

.comment-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 13px;
}

/* =========================
   COMMENT FORM
========================= */

.comment-form-wrap {
    margin-top: 25px;
}

/* NOTE */
.comment-notes {
    font-size: 12px;
    color: #777;
    margin-bottom: 12px;
}


/* INPUT & TEXTAREA */
.seoelite-comments input[type="text"],
.seoelite-comments input[type="email"],
.seoelite-comments input[type="url"],
.seoelite-comments textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: 0.2s;
    box-sizing: border-box;
}

/* FOCUS */
.seoelite-comments input:focus,
.seoelite-comments textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(1,36,86,0.08);
}

/* TEXTAREA */
.seoelite-comments textarea {
    min-height: 120px;
    resize: vertical;
}

/* BUTTON */
.seoelite-comments .form-submit input {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.2s;
}

/* BUTTON HOVER */
.seoelite-comments .form-submit input:hover {
    opacity: 0.9;
}

/* CHECKBOX */
.comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #666;
}

