.production-checklist-page {
    max-width: 1180px;
}

.production-hero-card {
    background: linear-gradient(135deg, rgba(35, 116, 158, .12), rgba(244, 139, 37, .12));
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 30px;
    margin: 22px 0;
}

.production-hero-card h2 {
    color: var(--blue);
    margin: 0 0 8px;
    font-size: 30px;
}

.production-hero-card p {
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

.production-checklist-grid {
    display: grid;
    gap: 14px;
    margin-bottom: 24px;
}

.production-check-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 4px 14px rgba(143, 83, 39, .08);
    padding: 20px;
}

.production-check-item h2 {
    color: var(--blue);
    margin: 0 0 6px;
    font-size: 18px;
}

.production-check-item p {
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

.production-check-item > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 900;
}

.production-check-item.ok > span {
    background: #dcfce7;
    color: #166534;
}

.production-check-item.warning > span {
    background: #ffedd5;
    color: #9a3412;
}

.production-check-item.manual > span {
    background: #e0f2fe;
    color: #075985;
}

.production-code-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.production-code-list code {
    background: #f8fafc;
    border: 1px solid var(--border);
    color: var(--blue);
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 800;
}

@media (max-width: 760px) {
    .production-check-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .production-check-item > span {
        min-width: 0;
    }
}
