.ata-alerts {
    --ata-accent: #0b63ce;
    align-items: flex-start;
    background: #f4f8fd;
    border: 1px solid #c9dcf4;
    border-left: 5px solid var(--ata-accent);
    border-radius: 10px;
    color: #172033;
    display: flex;
    font-family: inherit;
    gap: 14px;
    padding: 18px 20px;
    width: 100%;
}

.ata-alerts--warning {
    --ata-accent: #d97706;
    background: #fff8eb;
    border-color: #f3d39a;
}

.ata-alerts--clear {
    --ata-accent: #16803c;
    background: #effaf3;
    border-color: #bce1c8;
}

.ata-alerts__icon {
    align-items: center;
    background: var(--ata-accent);
    border-radius: 50%;
    color: #fff;
    display: flex;
    flex: 0 0 30px;
    font-size: 18px;
    font-weight: 700;
    height: 30px;
    justify-content: center;
    line-height: 1;
}

.ata-alerts__content {
    min-width: 0;
}

.ata-alerts h3 {
    color: inherit;
    font-size: 18px;
    line-height: 1.35;
    margin: 1px 0 7px;
}

.ata-alerts p,
.ata-alerts ul {
    margin: 0 0 7px;
}

.ata-alerts ul {
    padding-left: 20px;
}

.ata-alerts li + li {
    margin-top: 8px;
}

.ata-alerts a {
    color: #154f91;
    font-weight: 650;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.ata-alerts li span {
    display: block;
    font-size: 12px;
    opacity: .72;
}

.ata-alerts small {
    display: block;
    font-size: 12px;
    opacity: .7;
}

@media (max-width: 600px) {
    .ata-alerts {
        gap: 11px;
        padding: 15px;
    }

    .ata-alerts h3 {
        font-size: 16px;
    }
}

