.block-cartes-metiers {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-block: 24px;
    scroll-margin-top: 150px;

    @media (width > 768px) {
        margin-block: 48px;
    }

    h2 {
        color: var(--_bg-color);
        margin-bottom: 0;
    }

    .blocks {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 32px;

        @media (width > 830px) {
            grid-template-columns: repeat(3, 1fr);
        }

        .carte {
            display: flex;
            flex-direction: column;
            gap: 24px;
            padding: 24px;
            border-radius: 16px;
            border: 2px solid #E2E2E2;

            p {
                margin-bottom: 0;
            }

            > div {
                flex: 1;
            }
            .title {
                font-size: 2rem;
                font-weight: 500;
                line-height: 150%;
                 margin-bottom: 8px;
            }
            .text {
                font-size: 1.4rem;
                font-weight: 400;
                line-height: 150%;
                color: #0D1A22 !important;
            }
        }
    }
}



@media (max-width:768px) {

.block-cartes-metiers {
gap:12px!important;
}

}