/* =============================================
   PCG YEAR TABS — 20260303
   Scrollable tab bar with arrows.
   Steel blue bar, active tab = light bg + gold text.
   ============================================= */

/* Tab bar container — 20260303 */
.pcg_tl_bar_20260303 {
    background: linear-gradient(135deg, #3a6680 0%, #2d5a73 100%);
    border-radius: 12px 12px 0 0;
    padding: 0;
    display: flex;
    align-items: stretch;
}

/* Arrow buttons — 20260303 */
.pcg_tl_arrow_20260303 {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    cursor: pointer;
    padding: 0 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.pcg_tl_arrow_20260303:hover {
    background: rgba(255, 255, 255, 0.15);
}
.pcg_tl_arrow_img_20260303 {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
    opacity: 0.55;
    transition: opacity 0.2s;
}
.pcg_tl_arrow_20260303:hover .pcg_tl_arrow_img_20260303 {
    opacity: 0.85;
}

/* Scrollable track — 20260303 */
.pcg_tl_track_20260303 {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex: 1;
    min-width: 0;
}
.pcg_tl_track_20260303::-webkit-scrollbar {
    display: none;
}

/* Individual tab — 20260303 */
.pcg_tl_tab_20260303 {
    flex-shrink: 0;
    padding: 10px 14px;
    text-align: center;
    cursor: pointer;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
    position: relative;
    white-space: nowrap;
    font-family: inherit;
    line-height: 1.3;
}
.pcg_tl_tab_20260303:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.06);
}

/* Active tab — light bg + dark gold — 20260303 */
.pcg_tl_tab_20260303.pcg_tl_active_20260303 {
    color: #b8860b;
    font-weight: 700;
    background: #e9eff3;
    border-radius: 8px 8px 0 0;
}

/* Gold underline on active — 20260303 */
.pcg_tl_tab_20260303.pcg_tl_active_20260303::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background: linear-gradient(90deg, #b8860b, #d4a853, #b8860b);
    border-radius: 2px;
}

/* Count below year — 20260303 */
.pcg_tl_count_20260303 {
    display: block;
    font-size: 9px;
    font-weight: 400;
    opacity: 0.5;
    margin-top: 2px;
    color: inherit;
}
.pcg_tl_tab_20260303.pcg_tl_active_20260303 .pcg_tl_count_20260303 {
    color: #b8860b;
    opacity: 0.75;
}

/* =============================================
   RESPONSIVE — 20260303
   ============================================= */

@media (max-width: 480px) {
    .pcg_tl_tab_20260303 {
        padding: 9px 11px;
        font-size: 12px;
    }
    .pcg_tl_arrow_20260303 {
        padding: 0 7px;
    }
    .pcg_tl_arrow_img_20260303 {
        width: 14px;
        height: 14px;
    }
}

@media (min-width: 769px) {
    .pcg_tl_tab_20260303 {
        padding: 14px 22px;
        font-size: 16px;
    }
    .pcg_tl_count_20260303 {
        font-size: 11px;
        margin-top: 3px;
    }
    .pcg_tl_arrow_20260303 {
        padding: 0 14px;
    }
    .pcg_tl_arrow_img_20260303 {
        width: 20px;
        height: 20px;
    }
}

/* =============================================
   HIDE OLD TAB BAR — 20260303
   ============================================= */
.pcg_cl_tab_bar {
    display: none !important;
}
