.site-alert-bar {
    background: #c62828;
    color: #fff;
}

.site-alert-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    min-height: 20px;
    display: flex;
    align-items: center;
}

.site-alert-item {
    display: none;
    width: 100%;
}

.site-alert-item.is-active {
    display: block;
}

/* alert content */
.site-alert-item a,
.site-alert-item > span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.site-alert-item a:hover {
    text-decoration: underline;
}

/* urgent prefix */
.site-alert-item.is-urgent a::before,
.site-alert-item.is-urgent > span::before {
    content: "URGENT: ";
    font-weight: 400;
}

/* animated stripe overlay */
.site-alert-item.is-urgent {
    position: relative;
}

.site-alert-item.is-urgent::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        rgba(255,255,255,0.10),
        rgba(255,255,255,0.10) 10px,
        rgba(255,255,255,0.18) 10px,
        rgba(255,255,255,0.18) 20px
    );
    animation: alertStripeMove 8s linear infinite;
    pointer-events: none;
}

@keyframes alertStripeMove {
    from { background-position: 0 0; }
    to   { background-position: 80px 0; }
}

/* icon */
.site-alert-icon {
    color: #ffffff;
    font-size: 16px;
    flex: 0 0 auto;
}

/* message text */
.site-alert-message {
    display: inline-block;
}

/* mobile */
@media (max-width: 767px) {
    .site-alert-bar-inner {
        padding: 10px 12px;
    }

    .site-alert-item a,
    .site-alert-item > span {
        font-size: 14px;
    }
}