section.banner-alert {
    padding: 10px;
    position: sticky;
    top: var(--navbar-height);
    z-index: 4;
    width: 100%;
    max-width: var(--max-width);
}

section.banner-alert[data-variant="warning"] {
    background: orange;
}

section.banner-alert div.banner {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
}

section.banner-alert div.banner a.link {
    color: blue;
    border-bottom: 1px solid blue;
}

section.banner-alert div.banner button.close-icon {
    outline: none;
    background: none;
    border: none;
    border-radius: 100%;
    width: 24px;
    height: 24px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section.banner-alert div.banner button.close-icon:hover {
    background: var(--color-primary);
    transition: all 0.3s;
}
