.evaluations {
    margin-block: 24px;

    @media (width > 768px) {
        margin-bottom: 48px;
    }

    > h2 {
        color: var(--_bg-color);
    }

    .cols {
        display: flex;
        flex-direction: column;
        gap: 16px;

        @media (width > 768px) {
            flex-direction: row;
            align-items: flex-start;
            gap: 48px;
        }

        .col {
            flex: 1;
            background: #E2F3FF;
            padding: 24px;
            border-radius: 16px;

            h3 {
                margin-top: 0;
            }

            .text {

                p:last-child, li:last-child, ul:last-child {
                    margin-bottom: 0;
                }
            }
        }
    }
}