/* ================================
   HOME SCALING
================================ */

#body.home-page {
    font-size: 114%;
}

@media (max-width: 480px){
    body.home-page { font-size: 100%; }
}

/* ================================
   TAGS
================================ */

.tag-list{
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tag{
    padding: 8px 14px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    cursor: pointer;
    font-size: 14px;
}

.tag.more{
    background: transparent;
    border: 0;
    color: #9aa4ff;
}

.tag-hidden{ display: none; }
.tag-list.expanded .tag-hidden{ display: contents; }

/* ================================
   NEW: STICKY SEARCH BAR (separate)
================================ */

#sticky-searchbar{
    position: fixed;
    left: 0;
    right: 0;
    top: var(--nav-h, 56px);
    z-index: 9999;

    /* smooth appear */
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;

    transition: opacity 200ms ease, transform 220ms ease;

    /* bar backing */
    background: rgba(10, 15, 31, 0.92);
    border-bottom: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    padding: 10px 0;
}

#sticky-searchbar.show{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* align with your full-bleed sections */
#sticky-searchbar .sticky-inner{
    width: calc(100% - (var(--page-gutter, 24px) * 2));
    margin: 0 auto;
}

/* the sticky search uses the same look; keep it a touch narrower */
#sticky-searchbar .hero-search-box{
    width: min(980px, 70%);
}
@media (max-width: 768px){
    #sticky-searchbar .hero-search-box{ width: 100%; }
}

