.neogov-alert {
    margin: 0;
    padding: 14px 18px;
    border-left: 5px solid currentColor;
}

.neogov-alert--information {
    background: #e8f3fb;
    color: #07558c;
}

.neogov-alert--warning {
    background: #fff2cc;
    color: #6b4d00;
}

.neogov-alert--emergency {
    background: #fde5e5;
    color: #8b1717;
}

.neogov-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

@media (max-width: 900px) {
    .neogov-grid {
        grid-template-columns: 1fr;
    }
}
