.vg-maintenance-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--vg-warn);
    color: #fff;
    font-size: .88rem;
    font-weight: 600;
    text-align: center;
}

.vg-announce {
    overflow: hidden;
    background: var(--vg-accent);
    color: var(--vg-on-accent);
    font-size: .86rem;
    font-weight: 600;
    white-space: nowrap;
}

.vg-announce__track {
    display: inline-flex;
    gap: 80px;
    padding: 7px 0 7px 100%;
    animation: vg-marquee 28s linear infinite;
}

.vg-announce:hover .vg-announce__track {
    animation-play-state: paused;
}

@keyframes vg-marquee {
    to {
        transform: translateX(-100%);
    }
}

.vg-topbar {
    position: relative;
    z-index: 60;
    font-size: .84rem;
}

.vg-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 42px;
}

.vg-topbar__start,
.vg-topbar__end {
    display: flex;
    align-items: center;
    gap: 6px 16px;
    min-width: 0;
}

.vg-topbar__end {
    justify-content: flex-end;
    gap: 8px 14px;
}

.vg-topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: 0;
    background: none;
    white-space: nowrap;
    opacity: .88;
    transition: opacity .15s ease, color .15s ease;
}

.vg-topbar__item:hover {
    opacity: 1;
}

.vg-topbar__item .vg-ico {
    width: 15px;
    height: 15px;
}

.vg-topbar__item--strong {
    font-weight: 700;
    opacity: 1;
}

.vg-topbar__text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
    opacity: .85;
}

.vg-topbar__social {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding-right: 12px;
    margin-right: 2px;
    border-right: 1px solid rgba(255, 255, 255, .16);
}

.vg-topbar__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    opacity: .8;
}

.vg-topbar__social a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, .1);
}

.vg-topbar__social .vg-ico {
    width: 14px;
    height: 14px;
}

.vg-topbar--2 {
    background: var(--vg-secondary);
    color: #fff;
}

.vg-topbar--1 {
    color: #fff;
    background: color-mix(in srgb, var(--vg-secondary) 94%, #000);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.vg-masthead.is-overlay .vg-topbar--1 {
    background: var(--vg-secondary);
}

.vg-topbar--1 .vg-topbar__inner {
    min-height: 50px;
}

.vg-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 5px 13px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: var(--vg-radius-pill);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-weight: 600;
    font-size: .83rem;
    white-space: nowrap;
    transition: background-color .15s ease, border-color .15s ease;
}

.vg-pill:hover {
    background: rgba(255, 255, 255, .18);
    border-color: rgba(255, 255, 255, .4);
}

.vg-pill .vg-ico {
    width: 16px;
    height: 16px;
}

.vg-pill--accent {
    background: var(--vg-primary);
    border-color: var(--vg-primary);
}

.vg-pill--accent:hover {
    background: var(--vg-primary-dark);
    border-color: var(--vg-primary-dark);
}

.vg-pill--ghost {
    background: transparent;
}

.vg-pill__count,
.vg-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--vg-accent);
    color: var(--vg-on-accent);
    font-size: .7rem;
    font-weight: 800;
    line-height: 1;
}

@media (max-width: 767px) {
    .vg-topbar__text {
        display: none;
    }

    .vg-topbar--1 .vg-topbar__start {
        display: none;
    }

    .vg-topbar--1 .vg-topbar__end {
        width: 100%;
        justify-content: space-between;
    }

    .vg-pill {
        padding: 5px 10px;
    }
}
