/* ==========================================================================
   dab-offer.css — Exclusive Offer (Design & Build)
   Figma: node 5170:18889 — white bg, px-60px py-80px
   Image left (562×450) + content right (675px, gap 40px inside)
   ========================================================================== */

.dab-offer {
    background-color: var(--color-white, #fff);
    padding-block: 80px;
    padding-inline: 60px;
}

.dab-offer__inner {
    max-width: var(--max-width);
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

/* Image: 562×450, aspect ~5:4 */
.dab-offer__image-wrap {
    flex: 0 0 562px;
    height: 450px;
    margin: 0;
    overflow: hidden;
}

.dab-offer__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content: 675px, flex-col, gap 40px */
.dab-offer__content {
    flex: 0 0 675px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Text group: eyebrow + heading + description, gap 28px */
.dab-offer__text {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.dab-offer__eyebrow {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    color: var(--color-dark, #1c1c1c);
    margin: 0;
}

.dab-offer__heading {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.15;
    color: var(--color-dark, #1c1c1c);
    margin: 0;
}

.dab-offer__description {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.39;
    color: var(--color-dark, #1c1c1c);
    margin: 0;
}

/* CTAs row */
.dab-offer__ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

/* ── Tablet ─────────────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .dab-offer {
        padding-inline: 40px;
    }
    .dab-offer__image-wrap {
        flex: 0 0 45%;
        height: auto;
        aspect-ratio: 562 / 450;
    }
    .dab-offer__content {
        flex: 1 0 0;
    }
}

/* ── Mobile (≤ 639px) ────────────────────────────────────────────────────────── */
@media (max-width: 639px) {
    /* Figma mobile: py-60px (not 80px), px-16px */
    .dab-offer {
        padding-block: 60px;
        padding-inline: 16px;
    }

    /* Stack vertically, 60px gap between image and content */
    .dab-offer__inner {
        flex-direction: column;
        gap: 60px;
    }

    /* Image: fixed 342×228 (3:2), not full-width — Figma: w-[342px] h-[228px] */
    .dab-offer__image-wrap {
        flex: none;
        width: 342px;
        height: 228px;
        aspect-ratio: unset;
    }

    .dab-offer__content {
        flex: none;
        width: 100%;
    }

    /* Mobile/H2: 32px lh 1 */
    .dab-offer__heading {
        font-size: 2rem;
        line-height: 1;
    }

    /* Buttons: each flex-1 so they split the row 50/50 */
    .dab-offer__ctas .btn {
        flex: 1 0 0;
        justify-content: center;
    }
}
