/* Customer Spotlight Block */
.customer-spotlight {
    position: relative;
    width: 100%;
    padding: 60px 20px;
    overflow: hidden;
}

.customer-spotlight__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    gap: 50px;
}

/* ── Images column ── */
.customer-spotlight__images {
    position: relative;
    flex: 0 0 45%;
    max-width: 45%;
}

.customer-spotlight__mosaic {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.customer-spotlight__mosaic-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.customer-spotlight__mosaic-col--a {
    align-items: flex-end;
}

.customer-spotlight__mosaic-col--b {
    align-items: flex-start;
}

.customer-spotlight__mosaic-item {
    overflow: hidden;
    border-radius: 4px;
}

.customer-spotlight__mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Badge image ── */
.customer-spotlight__badge {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    z-index: 10;
    transition: transform 0.3s ease;
}

.customer-spotlight__badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.customer-spotlight__mosaic:hover ~ .customer-spotlight__badge {
    transform: translate(-50%, -50%) scale(1.12) rotate(-8deg);
}

/* ── Content column ── */
.customer-spotlight__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    padding: 20px 0;
}

.customer-spotlight__heart {
    color: #db5526;
    font-size: 1.5rem;
    margin-bottom: 4px;
    line-height: 1;
}

.customer-spotlight__heart img {
    width: 28px;
    height: auto;
    display: inline-block;
}

.customer-spotlight__script-heading {
    font-family: 'BNRendallScript', cursive;
    font-size: 2.2rem;
    font-weight: 400;
    margin: 0 0 10px 0;
    line-height: 1.2;
    text-transform: none;
    transform: rotate(-5deg);
    display: inline-block;
    color: #4C62A9 !important;
}

.customer-spotlight__main-heading {
    font-family: var(--wp--preset--font-family--mindset, 'Mindset', sans-serif);
    font-size: 3.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.05;
    margin: 0 0 24px 0;
}

.customer-spotlight__body {
    font-family: var(--wp--preset--font-family--ptmono, 'PTMonoWebRegular', monospace);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 28px 0;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.customer-spotlight__quote {
    font-family: var(--wp--preset--font-family--bntillsdale, 'BNTillsdale', serif);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.25;
    margin: 0 0 20px 0;
    font-style: normal;
    quotes: none;
    border: none;
    padding: 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.customer-spotlight__quote::before,
.customer-spotlight__quote::after {
    content: none;
}

.customer-spotlight__attribution {
    font-family: var(--wp--preset--font-family--bntillsdale, 'BNTillsdale', serif);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 0;
}

/* ── Tablet (1024px) ── */
@media (max-width: 1024px) {
    .customer-spotlight__container {
        gap: 30px;
    }

    .customer-spotlight__main-heading {
        font-size: 2.4rem;
    }

    .customer-spotlight__script-heading {
        font-size: 1.8rem;
    }

    .customer-spotlight__badge {
        width: 95px;
        height: 95px;
    }
}

/* ── Mobile (768px) ── */
@media (max-width: 768px) {
    .customer-spotlight {
        padding: 40px 15px;
    }

    .customer-spotlight__container {
        flex-direction: column;
        gap: 30px;
    }

    .customer-spotlight__images {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .customer-spotlight__mosaic {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
        gap: 10px;
    }

    .customer-spotlight__mosaic-col {
        display: contents;
    }

    .customer-spotlight__mosaic-item {
        flex: 0 0 65% !important;
        width: 65% !important;
        height: 280px !important;
        scroll-snap-align: start;
    }

    .customer-spotlight__badge {
        width: 80px;
        height: 80px;
        top: auto !important;
        bottom: -20px;
        left: -10px !important;
        transform: none;
    }

    .customer-spotlight__content {
        padding: 0;
    }

    .customer-spotlight__main-heading {
        font-size: 2rem;
    }

    .customer-spotlight__script-heading {
        font-size: 1.5rem;
    }

    .customer-spotlight__body {
        font-size: 0.85rem;
    }

    .customer-spotlight__quote {
        font-size: 1.5rem;
    }
}

/* ── Extra small mobile (480px) ── */
@media (max-width: 480px) {
    .customer-spotlight {
        padding: 30px 10px;
    }

    .customer-spotlight__mosaic-item {
        flex: 0 0 75% !important;
        width: 75% !important;
        height: 240px !important;
    }

    .customer-spotlight__main-heading {
        font-size: 1.6rem;
    }

    .customer-spotlight__script-heading {
        font-size: 1.3rem;
    }

    .customer-spotlight__body {
        font-size: 0.8rem;
        line-height: 1.6;
    }

    .customer-spotlight__quote {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .customer-spotlight__attribution {
        font-size: 0.65rem;
    }

    .customer-spotlight__badge {
        width: 70px;
        height: 70px;
    }
}
