/* Beta notice bar */
body {
    transition: padding-top .25s ease;
}

.hl-beta-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2147482000;
    background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 60%, #fde68a 100%);
    color: #111827;
    border-bottom: 1px solid #b45309;
    box-shadow: 0 10px 18px rgba(0, 0, 0, .15);
    transform: translateY(-100%);
    transition: transform .25s ease;
}

.hl-beta-bar.is-open {
    transform: translateY(0);
}

.hl-beta-inner {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
}

.hl-beta-left {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.hl-beta-icon {
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    background: #111827;
    color: #fde68a;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
}

.hl-beta-text {
    font-size: 15px;
    line-height: 1.35;
}

.hl-beta-text strong {
    color: #111827;
}

.hl-beta-text a {
    color: #1f2937;
    text-decoration: underline;
}

.hl-beta-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.hl-beta-btn {
    background: #111827;
    color: #fff;
    border: 0;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
}

.hl-beta-btn:hover {
    background: #0b1220;
}

.hl-beta-btn.secondary {
    background: #ffffff;
    color: #111827;
    border: 1px solid #111827;
}

.hl-beta-btn.secondary:hover {
    background: #f3f4f6;
}

@media (max-width:820px) {
    .hl-beta-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .hl-beta-actions {
        justify-content: flex-end;
    }
}

/* Footer */
.hl-footer-inner {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    flex-wrap: wrap;
}