.pratical-information {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-block: 24px;
    border-radius: 16px;
    background: var(--_bg_color, #e2f3ff);
    padding: 24px;

    @media (width > 768px) {
        margin-block: 48px;
    }

    h3 {
        margin-block: 0;
    }

    .text {

        p:last-child, ul:last-child, li:last-child {
            margin-bottom: 0;
        }

        strong {

            a {
                font-weight: bold;
            }
        }
    }

}