.manufacturing-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    overflow: hidden;
    max-width: 100%;
}

.stat-card {
    min-width: 0;
    overflow: hidden;
}

.stat-number {
    font-size: clamp(1rem, 3vw, 1.8rem);
    word-break: break-word;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stat-label {
    font-size: clamp(0.6rem, 1.5vw, 0.8rem);
    line-height: 1.1;
    word-break: break-word;
    hyphens: auto;
}

@media (max-width: 768px) {
    .manufacturing-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .manufacturing-stats .stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}