/* ── How It Works banner ── */
.hiw-block {
    width: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 0;
    padding-bottom: 49.878%;
    position: relative;
    box-sizing: border-box;
    margin-top: -10vw;
}

/* ── Inner content: centered column sitting in the middle of the banner ── */
.hiw-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    gap: 3vw;
    /* push content away from the left avocado bowl and right character */
    padding: 15% 30% 3% 43%;
}

/* ── Top: icon + heading side by side ── */
.hiw-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hiw-step-icon {
    width: 22%;   /* scales with the banner */
    height: auto;
    flex-shrink: 0;
}

.hiw-heading {
    margin: 0;
    font-size: 4vw;
    font-weight: 900;
    font-family: 'Gilroy W05 Heavy', serif;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.05;
}

/* ── Bottom: body text centered under the header ── */
.hiw-body-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3vw;
    text-align: center;
}

.hiw-body {
    margin: 0;
    font-size: 2vw;
    font-weight: 1000;
    font-family: 'Gilroy W05 Heavy', serif;
    color: #fff;
    line-height: normal;
}

/* ── Mobile ── */
@media (max-width: 767px) {
    .hiw-block {
        padding-bottom: 96.574%;
        margin-top: 0;
    }

    .hiw-content {
        padding: 4% 40% 4% 14%;
        gap: 8px;
    }

    .hiw-header {
        flex-direction: column;
        gap: 3vw;
    }

    .hiw-step-icon {
        width: 10vw;
    }

    .hiw-heading {
        font-size: 6vw;
    }

    .hiw-body {
        font-size: 3.6vw;
    }
}