/* Anti-fraud banner */
.anti-fraud-banner {
    background: #c91515;
    /* strong red */
    color: #fff;
    width: 100%;
    font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.anti-fraud-banner__inner {
    /* align with your layout; if you have a site container class, use it instead */
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 16px;

    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: start;
}

.anti-fraud-banner__icon {
    font-size: 24px;
    /* readable but not huge */
    line-height: 1;
}

.anti-fraud-banner__text {
    display: grid;
    gap: 2px;
}

.anti-fraud-banner__title {
    font-weight: 800;
    margin-right: 6px;
}

.anti-fraud-banner__line {
    display: block;
    line-height: 1.35;
}

.anti-fraud-banner__link {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 700;
}

/* Compact on small screens: stack icon above text */
@media (max-width: 600px) {
    .anti-fraud-banner__inner {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .anti-fraud-banner__icon {
        font-size: 22px;
    }
}