/* ── Slot Intro Editorial Block ──────────────────────────────────────
   The <blockquote> is a semantic-only tag — no visual styles on it.
   All card styling lives on .sn-blockquote-section.
   ─────────────────────────────────────────────────────────────────── */

.sn-blockquote-section {
    margin-top: 20px;
    margin-bottom: 8px;
    padding: 20px 24px;
    background: var(--sn-card-bg);
    border: 1px solid var(--sn-border);
    border-radius: var(--sn-radius);
}

/* blockquote: semantic wrapper only — no visual styling */
.sn-blockquote-section blockquote {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
}

.sn-blockquote__text {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--sn-text-secondary);
    line-height: 1.7;
}

.sn-blockquote__footer {
    margin-top: 12px;
}

.sn-blockquote__cite {
    font-size: 0.75rem;
    font-weight: 600;
    font-style: normal;
    color: var(--sn-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Dark mode */
[data-theme="dark"] .sn-blockquote-section {
    background: var(--sn-card-bg);
    border-color: var(--sn-border);
}

/* Responsive */
@media (max-width: 600px) {
    .sn-blockquote-section {
        padding: 16px 18px;
    }
}
