/* Unified blog tab bar — one row, all sites */
.site-blog-header {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
}

.site-blog-header-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem 1rem;
}

.site-blog-tabs {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.3rem;
    margin: 0;
    padding: 0.25rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.site-blog-tab {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0.42rem 0.78rem;
    border-radius: 999px;
    border: 1px solid rgba(90, 62, 38, 0.22);
    background: rgba(255, 252, 247, 0.92);
    color: inherit;
    font-size: 0.76rem;
    font-weight: 500;
    line-height: 1.25;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.site-blog-tab:hover {
    border-color: rgba(90, 62, 38, 0.38);
    background: rgba(139, 107, 58, 0.1);
}

.site-blog-tab.is-active {
    border-color: rgba(139, 107, 58, 0.45);
    background: rgba(139, 107, 58, 0.18);
    box-shadow: 0 0 0 1px rgba(90, 62, 38, 0.12) inset;
}

.site-blog-tab.is-draft {
    opacity: 0.72;
    border-style: dashed;
}

.site-blog-tab.is-aura {
    font-size: 0.74rem;
}

.site-blog-content {
    min-height: 12rem;
}

.theme-black-gold .site-blog-tab {
    border-color: rgba(201, 162, 80, 0.28);
    background: rgba(12, 10, 8, 0.65);
    color: #e8d5a8;
}

.theme-black-gold .site-blog-tab.is-active {
    background: rgba(201, 162, 80, 0.22);
    border-color: rgba(201, 162, 80, 0.55);
    color: #f5e6c0;
}

/* Hide legacy duplicate nav rows when blog nav is present */
.site-blog-header ~ .social-aura-nav,
.site-header .social-aura-nav {
    display: none !important;
}

body.has-blog-nav .studio-tabs:not(.site-blog-tabs),
body.has-blog-nav .workshop-tab-chips {
    display: none !important;
}
