/* ============================================================
   Publishing page
   ============================================================ */

.nav-links a.active { color: var(--rose); border-color: var(--rose); }
.page-eyebrow { color: var(--rose); }
.publishing-label-feature.is-hidden {
  display: none;
}
.label-feature {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 34px;
  align-items: flex-start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.label-feature:first-of-type { padding-top: 0; }
.label-feature:last-child { border-bottom: none; }
.label-badge {
  width: 150px;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  padding: 18px;
}
.label-badge-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.label-name {
  font-size: 28px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 8px;
}
.label-tagline {
  font-size: 13px;
  color: var(--rose);
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.label-body {
  font-size: 15px;
  color: var(--text);
  line-height: 1.95;
  max-width: 640px;
}
.label-future {
  margin-top: 36px;
  padding: 22px 28px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.label-future-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 800;
  margin-bottom: 10px;
}
.label-future-text { font-size: 14px; color: var(--text); line-height: 1.8; }
.future-pills { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.pill {
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  font-weight: 800;
}
.wanted {
  padding: 72px 48px;
  border-bottom: 1px solid var(--line);
  background: #2a151c;
  color: #fff;
}
.wanted-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.wanted-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f0b0c5;
  font-weight: 800;
  margin-bottom: 18px;
}
.wanted-title {
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.35;
}
.wanted-body {
  font-size: 15px;
  color: #f2e9e0;
  line-height: 1.95;
  margin-bottom: 32px;
  max-width: 760px;
}
.wanted-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.wanted-point {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 22px;
  color: var(--text);
}
.wp-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--rose-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.wp-icon-wrapper svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--rose);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.wp-title {
  font-size: 14px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 6px;
}
.wp-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
}
.btn-submit { background: var(--rose); }
.btn-submit:hover { background: var(--rose-strong); }

@media (max-width: 768px) {
  .wanted { padding: 52px 24px; }
}
@media (max-width: 600px) {
  .label-feature { grid-template-columns: 1fr; }
  .label-badge { width: 100%; max-width: 180px; }
  .wanted-points { grid-template-columns: 1fr; }
}
