/* 5 SIMPLE WAYS QUIZ — periwinkle bg, taller portrait image, free-quiz badge + asterisk decor */

.quiz {
    padding: var(--section-py) 0;
    background: #a8b3d8;
}

.quiz-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.quiz-content { max-width: 560px; }

.quiz-heading {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2rem, 3.4vw, 3rem);
    line-height: 1.15;
    letter-spacing: -0.012em;
    color: var(--clr-navy);
    margin-bottom: 14px;
}

/* Yellow brushstroke under "Reignite Your Messaging" — uses brand effect PNG */
.quiz-heading .fx {
    color: var(--clr-navy);
    font-weight: 500;
    padding: 0 0.05em;
}
.quiz-heading .fx::before { z-index: -1; }
.quiz-heading .fx-reignite-quiz::before {
    background-image: url("../assets/images/reignite-effect.png");
    height: 0.55em;
    top: 50%;
    bottom: auto;
    left: -0.02em;
    width: 104%;
    transform: translateY(-50%);
}

.quiz-sub {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 2.1rem;
    color: var(--clr-navy);
    margin-bottom: 36px;
    letter-spacing: -0.005em;
}

.quiz-image-col {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.quiz-thumb {
    position: relative;
    width: 100%;
    max-width: 340px;
    aspect-ratio: 4 / 5;
    border-radius: 22px;
    overflow: visible;
}

.quiz-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 22px;
    display: block;
}

/* Yellow "FREE QUIZ" oval — top-right of photo */
.quiz-badge-img {
    position: absolute;
    top: -18px;
    right: -28px;
    width: 110px;
    height: auto;
    z-index: 2;
    pointer-events: none;
}

/* Blue asterisk graphic — overlays bottom-left of the photo */
.quiz-asterisk {
    position: absolute;
    bottom: -22px;
    left: -57px;
    width: 125px;
    height: auto;
    z-index: 3;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .quiz { padding: 72px 0; }
    .quiz-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 24px;
        text-align: center;
    }
    .quiz-image-col { justify-content: center; order: 2; }
    .quiz-content { order: 1; max-width: 100%; margin: 0 auto; }
    .quiz-heading { font-size: clamp(1.9rem, 7vw, 2.6rem); }
    .quiz-sub { font-size: 1.4rem; }
    .quiz-thumb { max-width: 280px; }
}

@media (max-width: 480px) {
    .quiz { padding: 56px 0; }
    .quiz-grid { padding: 0 20px; gap: 22px; }
    .quiz-heading { font-size: clamp(1.7rem, 8.5vw, 2.2rem); }
    .quiz-sub { font-size: 1.2rem; }
    .quiz-thumb { max-width: 240px; }
    .quiz-asterisk { width: 80px; left: -28px; bottom: -14px; }
    .quiz-badge { width: 84px; top: -14px; right: -16px; }
}
