/* ============================================================
   PUBLIC GALLERY PAGE
   ============================================================ */

/* ---------- ALBUM TABS ---------- */

.gallery-tabs
{
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.gallery-tab
{
    padding: 8px 16px;
    border: 1px solid var(--pub-border);
    border-radius: 20px;
    background: var(--pub-card);
    color: var(--pub-text-light);
    font-size: 0.88em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.gallery-tab:hover
{
    border-color: var(--pub-primary);
    color: var(--pub-primary);
}

.gallery-tab.active
{
    background: var(--pub-primary);
    border-color: var(--pub-primary);
    color: #fff;
}

.gallery-tab-count
{
    font-size: 0.8em;
    background: rgba(0,0,0,0.1);
    padding: 1px 7px;
    border-radius: 10px;
}

.gallery-tab.active .gallery-tab-count
{
    background: rgba(255,255,255,0.25);
}

@media (max-width: 768px)
{
    .gallery-tabs
    {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
    }

    .gallery-tab
    {
        white-space: nowrap;
        flex-shrink: 0;
    }
}
