.alert-summary {
    display: flex;
    gap: 9px;
}

.notification-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.notification-badge {
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    padding: 0 5px;
    background: #cf493e;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    line-height: 18px;
    text-align: center;
}

.alert-summary span {
    border-radius: 8px;
    padding: 8px 10px;
    background: #eef3f5;
    color: #526676;
    font-size: 11px;
}

.alert-summary b {
    color: #182b36;
    font-size: 15px;
}

.notification-list {
    display: grid;
    gap: 12px;
}

.notification-list article {
    display: grid;
    grid-template-columns: 12px minmax(0, 1fr) auto;
    gap: 15px;
    align-items: center;
    padding: 19px 22px;
}

.notification-list article > i {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #80909a;
    box-shadow: 0 0 0 6px #eef1f4;
}

.notification-list article.critical > i {
    background: #cf493e;
    box-shadow: 0 0 0 6px #fff0ef;
}

.notification-list article.warning > i {
    background: #d99a32;
    box-shadow: 0 0 0 6px #fff5df;
}

.notification-list article.information > i {
    background: #347eb9;
    box-shadow: 0 0 0 6px #e8f1fb;
}

.notification-list article.success > i {
    background: #27a36a;
    box-shadow: 0 0 0 6px #e5f6ed;
}

.notification-list article > div > span {
    color: #607080;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.notification-list h2 {
    margin: 3px 0 4px;
    font-size: 17px;
}

.notification-list p {
    margin: 0;
    color: #526676;
    font-size: 12px;
}

.notification-actions {
    display: grid;
    justify-items: end;
    gap: 7px;
}

.notification-list a,
.notification-actions button {
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.notification-actions form {
    margin: 0;
}

.notification-actions button {
    border: 0;
    padding: 0;
    background: transparent;
    color: #607080;
    cursor: pointer;
}

.notification-actions button:hover {
    color: #182b36;
}

@media (max-width: 650px) {
    .alert-summary {
        margin-top: 12px;
    }

    .notification-list article {
        grid-template-columns: 12px 1fr;
    }

    .notification-actions {
        grid-column: 2;
        justify-items: start;
    }
}
