/* ============================================
   QUIZ CTA BANNER — Blog Posts & Pages
   Phase 0C of Marketing Plan
   ============================================ */

.quiz-cta-banner {
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.quiz-cta-banner::before {
    content: '☕';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 6rem;
    opacity: 0.08;
    pointer-events: none;
}

.quiz-cta-banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.quiz-cta-banner__text {
    flex: 1;
}

.quiz-cta-banner__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.4rem 0;
    line-height: 1.3;
}

.quiz-cta-banner__subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.5;
}

.quiz-cta-banner__action {
    flex-shrink: 0;
}

.quiz-cta-banner__button {
    display: inline-block;
    padding: 0.85rem 1.8rem;
    background: #c8a86e;
    color: #1a1a2e;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.quiz-cta-banner__button:hover {
    background: #d4b87a;
    color: #1a1a2e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(200, 168, 110, 0.3);
}

/* Mobile: Stack vertically */
@media (max-width: 600px) {
    .quiz-cta-banner {
        padding: 1.5rem;
        margin: 2rem 1rem;
    }

    .quiz-cta-banner__content {
        flex-direction: column;
        text-align: center;
        gap: 1.2rem;
    }

    .quiz-cta-banner__title {
        font-size: 1.25rem;
    }

    .quiz-cta-banner__button {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }
}