/* ====== Style Toggle Komentar ====== */
#toggle-comments {
    background: #f7f7f7;
    border: 1px solid #ddd;
    padding: 12px 16px;
    font-weight: 600;
    cursor: pointer;
    margin: 25px 0;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
}
#toggle-comments:hover {
    background: #ececec;
}

/* ====== Area Komentar ====== */
#comments.comments-area {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 30px;
    max-width: 100%;
    font-family: 'Open Sans', sans-serif;
}
#comments .comments-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    border-bottom: 2px solid #f2f2f2;
    padding-bottom: 8px;
}

/* Daftar komentar */
#comments .comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
#comments .comment-list li {
    border-bottom: 1px solid #f2f2f2;
    padding: 15px 0;
    display: block;
}
#comments .comment-list li:last-child {
    border-bottom: none;
}

/* Avatar dan nama penulis */
#comments .comment-author {
    float: left;
    margin-right: 12px;
}
#comments .comment-author img {
    border-radius: 50%;
    width: 48px;
    height: 48px;
}
#comments .comment-meta {
    font-size: 0.85em;
    color: #999;
    margin-bottom: 4px;
}
#comments .comment-content {
    font-size: 0.95em;
    line-height: 1.6;
    overflow: hidden;
    color: #333;
}

/* Balasan komentar */
#comments .children {
    margin-left: 40px;
    border-left: 2px solid #f0f0f0;
    padding-left: 15px;
}
#comments .children .comment-author {
    float: left;
    margin-right: 12px;
}

/* ====== Form Komentar ====== */
#respond.comment-respond {
    margin-top: 25px;
}
#respond .comment-reply-title {
    font-size: 1.05rem;
    margin-bottom: 10px;
}
#respond form {
    display: flex;
    flex-direction: column;
}
#respond input[type="text"],
#respond input[type="email"],
#respond textarea {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 12px;
    font-size: 0.95em;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
}
#respond textarea {
    resize: vertical;
}
#respond input[type="submit"] {
    background: #e74c3c; /* warna merah tema kobaran */
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95em;
    font-weight: bold;
    transition: background 0.3s ease;
}
#respond input[type="submit"]:hover {
    background: #c0392b;
}

/* ====== Responsif ====== */
@media screen and (max-width: 768px) {
    #comments.comments-area {
        padding: 15px;
    }
    #comments .comment-author img {
        width: 40px;
        height: 40px;
    }
    #comments .children {
        margin-left: 20px;
        padding-left: 10px;
    }
}
