/* Comments Section Styles */

.comments-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 3px double var(--ink);
}

.comments-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.comments-section h3::before,
.comments-section h3::after {
    content: '✦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1rem;
}

.comments-section h3::before {
    left: 30%;
}

.comments-section h3::after {
    right: 30%;
}

/* Giscus iframe container */
.giscus {
    margin-top: 20px;
}

/* Loading state */
.comments-loading {
    text-align: center;
    padding: 40px;
    color: var(--ink-faded);
    font-style: italic;
}

/* Setup notice */
.comments-setup-notice {
    padding: 30px;
    text-align: center;
    border: 2px dashed var(--ink-faded);
    background: var(--paper-dark);
}

.comments-setup-notice h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
}

.comments-setup-notice p {
    color: var(--ink-faded);
    margin-bottom: 20px;
}

.setup-btn {
    display: inline-block;
    padding: 10px 25px;
    background: var(--ink);
    color: var(--paper);
    text-decoration: none;
    font-family: 'IM Fell English', serif;
    transition: all 0.3s;
}

.setup-btn:hover {
    background: var(--accent);
    transform: scale(1.05);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .comments-section h3::before,
    .comments-section h3::after {
        display: none;
    }
}
