.warning-message {
    --wm-bg: var(--Primitives-Slate-Slate-2, #F8F9FA);
    --wm-text: var(--Tokens-Text-Text-Mid-Contrast, #4D565C);
    --wm-strong: #010203;

    color: var(--wm-text);
    font-family: "PPNV";
    font-size: 16px;
    font-style: normal;
    font-weight: 375;
    line-height: 22px;
    letter-spacing: 0.48px;

    display: block;
    padding: 30px 40px;
    border-radius: 4px;
    background: var(--wm-bg);
    margin: 0 auto;
}

.warning-message_light {
    --wm-bg: white;
}

.warning-message strong {
    font-weight: 550;
    color: var(--wm-strong);
}

.warning-message a {
    color: inherit;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    text-underline-position: from-font;
}

@media (max-width: 992px) {
    .warning-message {
        font-size: 14px;
        font-style: normal;
        font-weight: 375;
        line-height: 18px;
        letter-spacing: 0.42px;

        padding: 20px 20px 25px;
    }
}