/* Stable nav/button styles independent of Tailwind JIT output */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
}

.site-nav.nav-top {
    background: rgba(0, 0, 0, 0);
    border-bottom: 1px solid transparent;
    box-shadow: none;
}

.site-nav.nav-scrolled {
    background: rgba(8, 10, 16, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.site-nav.nav-scrolled::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
}

.site-nav .nav-link {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    opacity: 0.9;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav .nav-link:hover {
    opacity: 1;
}

.newsroom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1px 24px;
    margin-top: 2px;
    margin-left: 4px;
    border-radius: 999px;
    border: 1px solid rgba(255, 241, 210, 0.86);
    background: linear-gradient(180deg, #ffe07a 0%, #f6bf3d 100%);
    color: #2a1d0f;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 2px 0 #a5671f, 0 6px 11px rgba(246, 191, 61, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.42);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.newsroom-btn:hover {
    background: linear-gradient(180deg, #ffefad 0%, #ffd45f 100%);
    color: #1b140d;
    transform: translateY(-1px);
    box-shadow: 0 3px 0 #a5671f, 0 8px 13px rgba(255, 212, 95, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

@media (max-width: 768px) {
    .site-nav .nav-link {
        font-size: 15px;
    }

    .newsroom-btn {
        padding: 1px 13px;
        margin-top: 1px;
        font-size: 13px;
    }
}