/* ── Outer wrapper ── */
.ws-block {
    width: 92%;
    height: 0;
    padding-bottom: 57.541%;
    /* adjust to match image aspect ratio */
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    justify-self: center;
}

/* ── Content: left-center aligned, occupies left ~55% to clear the water drop icon ── */
.ws-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4% 6% 4% 12%;
    max-width: 55%;
    box-sizing: border-box;
    text-align: center;
}

/* ── Step icon ── */
.ws-icon {
    width: 19%;
    height: auto;
    margin-bottom: 8px;
}

/* ── Heading ── */
.ws-heading {
    margin: 0 0 10px;
    font-size: 4vw;
    font-weight: 900;
    font-family: 'Gilroy W05 Heavy', serif;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.1;
}

/* ── Paragraph ── */
.ws-paragraph {
    margin: 0;
    font-size: 2vw;
    font-weight: 900;
    font-family: 'Gilroy W05 Heavy', serif;
    color: #fff;
    line-height: 1.45;
}

/* ── Mobile ── */
@media (max-width: 767px) {
    .ws-block {
        height: auto;
        padding-bottom: 0;
        width: 84vw;
        margin-left: auto;
        margin-right: auto;
        margin-top: -10vw;
        margin-bottom: -6vw;
    }

    .ws-content {
        position: relative;
        max-width: 100%;
        padding-top: 13vw;
        padding-right: 6vw;
        padding-left: 6vw;
        padding-bottom: 17vw;
    }

    .ws-icon {
        width: 10vw;
        margin-left: 20vw;
        margin-top: 5vw;
        align-self: flex-start;
    }

    .ws-heading {
        font-size: 5.5vw;
        margin-right: 24vw;
        margin-left: 0;
    }

    .ws-paragraph {
        font-size: 3.5vw;
        line-height: normal;
    }
}