/* ============================================================
   CTM Daily Quote — Public Styles
   ============================================================ */

/* ── Widget container ───────────────────────────────────────── */
.ctm-quote-widget {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
    background: #faf8f5;
    border-radius: 12px;
    padding: 32px 40px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, .07);
    overflow: hidden;
    transition: box-shadow .3s ease;
}

.ctm-quote-widget::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 7rem;
    line-height: 1;
    color: rgba(124, 77, 189, .10);
    font-family: Georgia, serif;
    pointer-events: none;
    user-select: none;
}

.ctm-quote-widget:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, .11);
}

/* ── Inner layout ───────────────────────────────────────────── */
.ctm-quote-inner {
    position: relative;
    z-index: 1;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Text ───────────────────────────────────────────────────── */
.ctm-quote-content {
    width: 100%;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .5s ease, transform .5s ease;
}

.ctm-quote-content.ctm-visible {
    opacity: 1;
    transform: translateY(0);
}

.ctm-quote-text {
    font-family: Georgia, serif;
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.7;
    color: #2d2d3a;
    text-align: center;
    margin: 0 0 18px;
    padding: 0;
    border: none;
}

.ctm-quote-author {
    display: block;
    font-family: Georgia, serif;
    font-size: 0.95rem;
    color: #7c4dbd;
    font-style: normal;
    font-weight: 600;
    text-align: center;
    letter-spacing: .03em;
    opacity: .85;
}

/* ── Loading spinner ─────────────────────────────────────────── */
.ctm-quote-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
    width: 100%;
}

.ctm-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(124, 77, 189, .2);
    border-top-color: #7c4dbd;
    border-radius: 50%;
    animation: ctm-spin .7s linear infinite;
}

@keyframes ctm-spin {
    to { transform: rotate(360deg); }
}

/* ── Error state ─────────────────────────────────────────────── */
.ctm-quote-error {
    text-align: center;
    color: #888;
    font-style: italic;
    font-size: 0.9rem;
    padding: 20px 0;
    width: 100%;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 600px) {
    .ctm-quote-widget {
        padding: 24px 20px;
        border-radius: 8px;
    }

    .ctm-quote-text {
        font-size: 1.1rem;
    }

    .ctm-quote-widget::before {
        font-size: 5rem;
        top: -5px;
        left: 10px;
    }
}
