.block-apprentissage {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-block: 24px;
    scroll-margin-top: 140px;

    @media (width > 768px) {
        margin-block: 48px;
    }

    h2, h3 {
        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(2, 1fr);
        }

        .avantage {
            display: flex;
            gap: 16px;
            padding: 24px;
            border-radius: 16px;
            border: 2px solid #E2E2E2;

            p {
                margin-bottom: 0;
            }

            .picto {
                width: 42px;
            }

            > div {
                flex: 1;
            }
            .title {
                font-size: 2rem;
                font-weight: 500;
                line-height: 150%;
            }
            .text {
                font-size: 1.6rem;
                font-weight: 400;
                line-height: 150%;
                color: #707070 !important;
            }
        }
    }

}