.block-accompagnement-formation-primelis {
    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, #0D1A22);
        margin-bottom: 0;
    }

    h4::before {
        display: none;
    }

    .text {
        color: #0D1A22;
        margin-bottom: 8px;
        font-size: 16px;
        font-family: 'Lexend';
        font-weight: 300;
        line-height: 150%;
    }

    .coach {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
        align-items: start;

        @media (width > 780px) {
            grid-template-columns: 1fr 1fr;
        }

        .coach-steps {
            display: grid;
            gap: 12px;

            .cstep {
                display: flex;
                gap: 14px;
                background: #fff;
                border: 1px solid #e3e9ec;
                border-radius: 12px;
                padding: 15px 17px;

                .cn {
                    flex: 0 0 30px;
                    height: 30px;
                    border-radius: 50%;
                    background: var(--_bg-color, #0070b8);
                    color: #fff;
                    display: grid;
                    place-items: center;
                    font-weight: 800;
                    font-size: 14px;
                }

                h4 {
                    margin-top: 0;
                    margin-bottom: 5px;
                    font-size: 18px;
                    color: #0D1A22;
                    font-weight: 700;
                }

                p {
                    margin: 0;
                    color: #0D1A22;
                    font-size: 16px;
                    font-family: 'Lexend';
                    font-weight: 300;
                    line-height: 150%;

                    b {
                        color: #0D1A22;
                    }
                }
            }
        }

        .media {
            display: flex;
            flex-direction: column;
            gap: 12px;

            .photo {
                margin: 0;
                height: 300px;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    border-radius: 14px;
                }
            }

            .video {
                width: 100%;

                iframe {
                    border-radius: 14px;
                }
            }

            .button {
                margin: 0;

                a, a:focus {
                    width: max-content;
                    padding: 12px 24px;
                    font-size: 1.6rem;
                }
            }
        }
    }

    .pedo {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;

        .pt {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #f4f7f8;
            border: 1px solid #e3e9ec;
            border-radius: 99px;
            padding: 8px 14px;
            font-size: 13px;
            color: #16242c;
            font-weight: 500;
        }
        
    }
}

@media (max-width: 768px) {
    .block-accompagnement-formation-primelis {
        gap: 12px !important;
    }
}
@media (min-width: 768px) {
  .pt {
            font-size: 16px!important;
  }
}