
/* ===== COMMENT MEDIA & VOICE BUTTONS ===== */
.ce-v6-comment-form .ce-v6-media-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
    position: relative;
    z-index: 3;
}

.ce-v6-comment-form .ce-v6-btn-icon {
    width: auto;
    padding: 0.45rem 0.9rem;
    gap: 0.45rem;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-weight: 600;
}
.ce-v6-comment-form .ce-v6-btn-icon span { font-size: 0.85rem; }
.ce-v6-comment-form .ce-v6-btn-icon:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
}

#ce-v6-voice-button.ce-v6-recording,
.ce-v6-reply-voice.ce-v6-reply-recording {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.3);
    color: #b91c1c;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.15);
}

.ce-v6-recording-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #b91c1c;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.ce-v6-rec-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55);
    animation: ce-v6-rec-pulse 1.2s infinite;
}

.ce-v6-rec-label {
    font-size: 0.9rem;
}

@keyframes ce-v6-rec-pulse {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55); }
    70% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* Inline markdown styles */
.ce-v6-comment-content .ce-v6-md-h { font-size: 1.05rem; margin: 0.25rem 0; font-weight: 700; }
.ce-v6-comment-content .ce-v6-md-quote { margin: 0.35rem 0; padding: 0.35rem 0.6rem; border-left: 3px solid var(--ce-accent); background: rgba(124,179,66,0.08); border-radius: 6px; color: var(--ce-text-primary); }
.ce-v6-comment-content .ce-v6-md-ul { margin: 0.25rem 0 0.25rem 1.2rem; }
.ce-v6-comment-content .ce-v6-md-ul li { list-style: disc; margin: 0.15rem 0; }
.ce-v6-comment-content code.ce-v6-md-code { background: rgba(0,0,0,0.06); padding: 0.1rem 0.25rem; border-radius: 4px; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 0.9em; }

/* Featured 3x3 image polish */
.ce-v6-featured-grid img { border-radius: 12px; border: 1px solid var(--ce-glass-border); background: rgba(255,255,255,0.4); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }

