/* ============================================================
   illus-prod.css — Carte illustration « Production »
   Charte PrediPlan · accent bleu #2563eb
   ============================================================ */

:root {
  --pc:        #2563eb;
  --pc-bg:     #eff6ff;
  --pc-border: #e5e7eb;
}

/* ── Carte ────────────────────────────────────────────────── */

.pc-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 28px rgba(0, 0, 0, .10), 0 1px 4px rgba(0, 0, 0, .06);
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Arial, sans-serif;
  box-sizing: border-box;
}

/* ── En-tête ─────────────────────────────────────────────── */

.pc-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pc-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pc-icon--blue { background: var(--pc); }
.pc-icon--sm   { width: 32px; height: 32px; }

.pc-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--pc);
  margin: 0;
  line-height: 1;
}

/* ── Bloc détail production ──────────────────────────────── */

.pc-block {
  border: 1.5px solid var(--pc-border);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fafafa;
}

.pc-block-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}

.pc-block-name {
  font-size: 0.98rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
  margin: 0;
}

.pc-block-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pc-meta-row {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: #374151;
}

.pc-meta-row svg {
  flex-shrink: 0;
}

/* ── Pied de carte ───────────────────────────────────────── */

.pc-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.pc-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 50px;
  padding: 6px 16px 6px 6px;
  background: var(--pc-bg);
  border: 2px solid var(--pc);
}
.pc-badge strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--pc);
}

.pc-caption {
  font-size: 0.82rem;
  color: #6b7280;
  text-align: center;
  margin: 0;
}
