.nc-b01-progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 10px;
  margin: 14px 0 18px;
}
.nc-b01-progress__item {
  padding: 12px 14px;
  border: 1px solid #d5e1e8;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(29, 54, 75, .05);
}
.nc-b01-progress__item strong { display: block; font-size: 22px; color: #15354f; }
.nc-b01-progress__item span { display: block; margin-top: 2px; font-size: 12px; color: #627584; }

.nc-b01-editor {
  margin: 18px 0;
  padding: 16px;
  border: 1px solid #b7d8d2;
  border-radius: 12px;
  background: #f5fbfa;
}
.nc-b01-editor__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.nc-b01-editor__head h2 { margin: 0; font-size: 18px; color: #174f4b; }
.nc-b01-editor__status { font-size: 12px; color: #526777; }
.nc-b01-editor__status[data-state="dirty"] { color: #9a5a00; font-weight: 700; }
.nc-b01-editor__status[data-state="error"] { color: #b42318; font-weight: 700; }
.nc-b01-editor__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.nc-b01-editor label { display: block; font-weight: 650; color: #314b5d; }
.nc-b01-editor select, .nc-b01-editor input, .nc-b01-editor textarea {
  display: block; width: 100%; min-height: 42px; margin-top: 5px; padding: 8px 10px;
  border: 1px solid #a7bbb9; border-radius: 8px; background: #fff; color: #17324d;
}
.nc-b01-editor textarea { min-height: 78px; resize: vertical; }
.nc-b01-editor__wide { grid-column: 1 / -1; }
.nc-b01-editor__actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 14px; }
.nc-b01-editor__actions button { min-height: 42px; padding: 8px 14px; border-radius: 8px; cursor: pointer; }
.nc-b01-editor__discard { background: #fff; border: 1px solid #aebdc7; color: #30485d; }
.nc-b01-editor__save { background: #187f78; border: 1px solid #187f78; color: #fff; font-weight: 700; }

@media (max-width: 900px) {
  .nc-b01-progress { grid-template-columns: repeat(2, minmax(130px, 1fr)); }
  .nc-b01-editor__grid { grid-template-columns: 1fr; }
  .nc-b01-editor__wide { grid-column: auto; }
}
@media (max-width: 560px), (pointer: coarse) {
  .nc-b01-progress { grid-template-columns: 1fr 1fr; }
  .nc-b01-editor select, .nc-b01-editor input, .nc-b01-editor textarea,
  .nc-b01-editor__actions button { min-height: 48px; font-size: 16px; }
}
