.header-program {
    margin-block: 24px;

    @media (width > 800px) {
        margin-block: 48px;
    }
    
    > h2 {
        text-align: center;
        color: var(--_bg-color);
        line-height: 120%;
    }

    .blocs {
        display: flex;
        flex-direction: column;
        gap: 16px;
        justify-content: space-between;
        
        @media (width > 800px) {
            flex-direction: row;
            gap: 48px;
        }
    }

    .col {
        border-radius: 16px;
        border: 1px solid #e2e2e2;
        overflow: hidden;
        flex: 1;

        .head {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--_bg-color);
            padding: 12px 24px;

            h4 {
                font-size: 18px;
                margin: 0;
                color: #FDFEFF;
                font-weight: 500;

                @media (width > 800px) {
                    font-size: 24px;
                }

                &:before {
                    display: none;
                }
            }
        }
        .content {
            padding: 24px;

            p:last-child, ul:last-child, li:last-child {
                margin-bottom: 0;
            }

            p, ul {
                margin-bottom: 16px;
            }

            li::marker {
                color: var(--_bg-color);
                font-size: 1.6em;
            }

            em {
                display: block;
                font-size: 80%;
                line-height: 1.2;
            }
        }
    }
}