.staggered {
    padding: 80px 0;
}

.staggered .staggered__block-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.staggered .staggered__heading {
    margin-bottom: 40px;
}

.staggered .staggered__block {
    display: flex;
    align-items: center;
    gap: 60px;
}

.staggered .staggered__text-wrap {
    width: 43%;
}

.staggered .staggered__picture {
    width: 57%;
}

.staggered .staggered__title {
    font-family: Suisse Intl;
    font-size: 32px;
    font-weight: 600;
    line-height: 41.6px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--Secondary-500-Text-Heading, #474766);
}

.staggered .staggered__description {
    margin-top: 24px;
    margin-bottom: 32px;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0%;
    color: var(--Secondary-400-Text-Base, #8787AB);
}

.staggered__cta-mobile {
    display: none;
}

@media screen and (max-width: 1200px) {
    .staggered {
        padding: 60px 0;
    }

    .staggered .staggered__title {
        font-size: 28px;
        line-height: 36.4px;
    }

    .staggered .staggered__text-wrap,
    .staggered .staggered__picture {
        width: 50%;
    }

    .staggered .staggered__block-wrapper {
        gap: 40px;
    }

    .staggered .staggered__heading {
        margin-bottom: 32px;
    }
}


@media screen and (max-width: 980px) {
    .staggered {
        padding: 40px 0;
    }

    .staggered .staggered__title {
        font-size: 20px;
        line-height: 26px;
    }

    .staggered .staggered__description {
        margin-top: 16px;
        margin-bottom: 24px;
    }
}

@media screen and (max-width: 740px) {
    .staggered {
        padding: 24px 0;
    }

    .staggered .staggered__cta-mobile {
        display: block;
    } 

    .staggered .staggered__cta-desktop {
        display: none;
    } 
    
    .staggered .staggered__block {
        display: grid;
        gap: 16px;
    }

    .staggered .staggered__text-wrap {
        grid-row: 1;
    }

    .staggered .staggered__picture {
        grid-row: 2;
    }

    .staggered .staggered__text-wrap,
    .staggered .staggered__picture {
        width: 100%;
    }

    .staggered .staggered__description {
        margin-top: 8px;
        margin-bottom: 0;
    } 
}
