/* ==========================================================================
   dab-quote.css — Pull Quote (Design & Build)
   Figma: node 4511:25680 — bg #F0EBDF (chalk), px-60px py-80px
   Centred quote: Freight Neo 24px, max-w 900px
   Attribution: Geist 300, 16px
   ========================================================================== */

.dab-quote {
    background-color: var(--color-sand-light, #f0ebdf);
    padding-block: 80px;
    padding-inline: 60px;
    text-align: center;
    color: var(--color-dark, #1c1c1c);
}

.dab-quote__inner {
    max-width: var(--max-width);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

/* Quote: Freight Neo 400, 24px, normal lh */
.dab-quote__text {
    font-family: var(--font-heading);
    font-size: 1.5rem;   /* 24px */
    font-weight: 400;
    line-height: normal;
    color: var(--color-dark, #1c1c1c);
    max-width: 900px;
    margin: 0;
    padding: 0;
    border: none;
}

/* Attribution: Geist 300, 16px, lh 1.39 */
.dab-quote__attribution {
    font-family: var(--font-body);
    font-size: 1rem;   /* 16px */
    font-weight: 300;
    line-height: 1.39;
    color: var(--color-dark, #1c1c1c);
    font-style: normal;
}

/* ── Mobile (≤ 639px) ────────────────────────────────────────────────────────── */
@media (max-width: 639px) {
    .dab-quote {
        padding-block: 80px;
        padding-inline: 16px;
    }
    .dab-quote__text {
        font-size: 1.25rem;
    }
}
