.post-header-title { font-weight: 600; color: var(--navy); margin: 0; }

.stepper-wrap { padding: 24px 24px 0; }
.stepper {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  gap: 8px;
}
.step-dot {
  flex: 1;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  border-top: 3px solid var(--border);
  padding-top: 10px;
}
.step-dot span {
  display: block;
  width: 26px;
  height: 26px;
  line-height: 26px;
  border-radius: 50%;
  background: var(--border);
  color: #fff;
  font-weight: 700;
  margin: 0 auto 6px;
}
.step-dot.active { color: var(--navy); border-top-color: var(--amber); }
.step-dot.active span { background: var(--amber); color: var(--navy); }
.step-dot.done { border-top-color: var(--teal); }
.step-dot.done span { background: var(--teal); }

.form-wrap { max-width: 720px; padding-bottom: 80px; }
.form-step { display: none; }
.form-step.active { display: block; }
.form-step h2 { color: var(--navy); font-size: 24px; margin: 0 0 20px; }
.form-step h3 { font-size: 15px; margin: 28px 0 12px; color: var(--muted); font-weight: 600; }

.type-choice { display: flex; gap: 16px; }
.type-choice-3 { flex-wrap: wrap; }
@media (max-width: 560px) {
  .type-choice-3 .type-card { flex-basis: 100%; }
}
.type-card {
  flex: 1;
  text-align: left;
  background: var(--bg-alt);
  border: 2px solid var(--border);
  border-radius: var(--radius-card);
  padding: 20px;
  cursor: pointer;
  font-family: inherit;
}
.type-card .type-icon { font-size: 28px; display: block; margin-bottom: 8px; }
.type-card strong { display: block; color: var(--navy); font-size: 16px; margin-bottom: 4px; }
.type-card p { margin: 0; font-size: 13px; color: var(--muted); }
.type-active { border-color: var(--amber); background: #FFF8EC; }

.cat-choice {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 10px;
}
.hidden { display: none; }
.cat-pill {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: var(--bg-alt);
  border: 2px solid var(--border);
  border-radius: var(--radius-card);
  padding: 14px 8px;
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  color: var(--ink);
  cursor: pointer;
  text-align: center;
  transition: border-color 0.12s, transform 0.08s;
}
.cat-pill:hover { border-color: var(--amber); }
.cat-pill:active { transform: scale(0.97); }
.cat-pill-icon {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.cat-pill .ic-1 { background: #FBEAD9; }
.cat-pill .ic-2 { background: #E4ECF7; }
.cat-pill .ic-3 { background: #E9E4F5; }
.cat-pill .ic-4 { background: #FDEBEA; }
.cat-pill .ic-5 { background: #FBE7F0; }
.cat-pill .ic-6 { background: #E8F3E7; }
.cat-pill .ic-7 { background: #FFF3D6; }
.cat-active { border-color: var(--navy); background: #F0F2F8; }
.cat-active .cat-pill-icon { box-shadow: inset 0 0 0 2px var(--navy); }

@media (max-width: 520px) {
  .cat-choice { grid-template-columns: repeat(auto-fill, minmax(78px, 1fr)); gap: 8px; }
  .cat-pill { padding: 10px 4px; font-size: 12px; }
  .cat-pill-icon { width: 38px; height: 38px; font-size: 17px; }
}

.field { display: block; margin-bottom: 18px; }
.field span { display: block; font-size: 13.5px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit;
  font-size: 15px;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-alt);
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--navy); }
.field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.field-row .field { min-width: 0; }

.dyn-fields { display: none; }
.dyn-fields.active { display: block; }
.field-row .field { flex: 1; }

.step-hint { color: var(--muted); font-size: 14px; }

.upload-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.upload-slot {
  width: 120px; height: 120px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.upload-empty {
  border: 2px dashed var(--border);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 13px; color: var(--muted); gap: 6px; cursor: pointer;
}
.upload-empty span { font-size: 26px; color: var(--amber-dark); }
.upload-filled img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cover-tag {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(27,42,74,0.85); color: #fff;
  font-size: 11px; text-align: center; padding: 3px 0;
}

.preview-card { border: 1px solid var(--border); border-radius: var(--radius-card); overflow: hidden; margin-bottom: 20px; background: var(--bg-alt); max-width: 340px; }
.preview-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.preview-body { padding: 4px 14px 14px; }

.step-actions { display: flex; gap: 14px; margin-top: 32px; }
