.program-sheets {
    margin-block: 24px;

    @media (width > 800px) {
        margin-block: 48px;
    }
    
    .programs-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
        
        @media (width > 800px) {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;

        }

        .program {
            border-radius: 16px;
            border: 1px solid #E2E2E2;
            overflow: hidden;

            .photo {
                margin-bottom: 0;

                img {
                    width: 100%;
                    height: 400px;
                    object-fit: cover;

                    .programme-formation-developpeur-web & {
                        object-fit: contain;
                    }
                    
                    @media (width > 800px) {
                        height: 452px;
                    }
                }
            }
            
            .content {
                display: flex;
                flex-direction: column;
                gap: 16px;
                padding: 24px;
                
                h3 {
                    text-align: center;
                    color: var(--_color);
                    margin: 0;

                    @media (width <= 800px) {
                        font-size: 18px;
                    }
                }

                .text {

                    @media (width <= 800px) {
                        font-size: 14px;

                        * {
                            font-size: 100%;
                        }
                    }

                    p:last-child, ul:last-child, li:last-child {
                        margin-bottom: 0;
                    }
                }
            }
        }
    }
}