/* ==========================================================================
   PABU 2026 — Program Page Styles
   ========================================================================== */

.program-filter {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    justify-content: center;
}

/* Single Program */
.program-single-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: var(--space-10);
    align-items: start;
}

.program-progress-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-100);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-card);
    position: sticky;
    top: calc(var(--header-height) + var(--space-6));
}

.program-progress-card h3 {
    font-size: var(--text-base);
    margin-bottom: var(--space-4);
}

.progress-amount {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.progress-label {
    font-size: var(--text-xs);
    color: var(--color-gray-500);
}

.progress-value {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--color-primary);
}

@media (max-width: 992px) {
    .program-single-grid {
        grid-template-columns: 1fr;
    }
    .program-progress-card {
        position: static;
    }
}


@media (max-width: 768px) {
    .program-filter {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: var(--space-2);
    }
    .program-filter .btn,
    .program-filter .gallery-tab {
        flex-shrink: 0;
    }
}

@media (max-width: 425px) {
    .program-progress-card {
        padding: var(--space-4);
    }
    .progress-value {
        font-size: var(--text-xl);
    }
}
