/* ========================================
   SERIES PROGRESS (Generic)
   ======================================== */

.progress-bar-container {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 51, 102, 0.08);
    margin: -2rem 0 2rem 0;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(51, 102, 153, 0.1);
}

.series-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-dark);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
    font-weight: 600;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .progress-bar-container {
        padding: 1.5rem;
        margin: -1.5rem 0 1.5rem 0;
    }

    .series-stats {
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}
