/* ===========================================================================
   Contributor and review surfaces.

   Same ink system as the public site, but the register drops: this is a
   working tool, not a cover. Screamers stay for headings, the two lanes are
   colour-separated so a contributor can never be confused about which pile
   they are filling, and nothing rotates except the kicker.
   =========================================================================== */

body.contribute .sheet { max-width: 1180px; }

.field-label {
  display: block;
  font-family: var(--meta);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 18px 0 7px;
  font-weight: 700;
}
.field-label .opt {
  font-weight: 400;
  letter-spacing: 0.1em;
  opacity: 0.65;
  text-transform: none;
}

.field {
  width: 100%;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.5;
  padding: 12px 13px;
  border: 3px solid var(--ink);
  background: var(--newsprint);
  color: var(--ink);
  border-radius: 0;
}
.field--area { min-height: 180px; resize: vertical; font-size: 17px; }
.field[type="file"] { font-family: var(--meta); font-size: 14px; padding: 10px; background: var(--cream); }
.field:focus-visible { outline: 4px solid var(--cyan); outline-offset: 2px; }

.gate-error {
  border: 3px solid var(--ink);
  background: var(--yellow);
  color: var(--ink);
  padding: 12px 14px;
  font-family: var(--meta);
  font-size: 14px;
  line-height: 1.55;
  margin: 16px 0;
}

/* --- The two lanes ------------------------------------------------------ */

.lanes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: var(--rule-fat);
}
.lane { padding: 24px var(--gutter) 30px; border-bottom: var(--rule); }
.lane--fake { border-right: var(--rule); background: var(--newsprint); }
.lane--real { background: var(--cream); }
.lane--visual, .lane--submit { grid-column: 1 / -1; }
.lane--visual { background: var(--newsprint); }
.lane--submit { border-bottom: 0; background: var(--cream); }

.lane-tag {
  display: inline-block;
  font-family: var(--meta);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--yellow);
  padding: 4px 10px;
  margin: 0 0 12px;
}
.lane--fake .lane-tag { background: var(--red); color: var(--yellow); }
.lane--real .lane-tag { background: var(--ink); color: var(--yellow); }
.lane-deck { font-size: 18px; margin: 8px 0 4px; max-width: 52ch; }

.ack {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 18px 0 6px;
  font-size: 16px;
  line-height: 1.5;
  max-width: 68ch;
  cursor: pointer;
}
.ack input[type="checkbox"] { width: 22px; height: 22px; margin-top: 3px; accent-color: var(--red); flex: 0 0 auto; }

.image-list { margin-top: 14px; }
.image-row {
  display: flex;
  gap: 12px;
  align-items: center;
  border-top: 2px solid var(--ink);
  padding: 8px 0;
  font-family: var(--meta);
  font-size: 13px;
}
.image-name { flex: 1; word-break: break-all; }
.image-size { opacity: 0.7; }

/* --- Review ------------------------------------------------------------- */

.band-label-solo {
  font-family: var(--meta);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--yellow);
  display: inline-block;
  padding: 5px 11px;
  margin: 0 0 16px;
}

.stage-list { list-style: none; margin: 20px 0 0; padding: 0; max-width: 520px; }
.stage {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 3px solid var(--ink);
  padding: 11px 0;
  font-family: var(--meta);
  font-size: 14px;
}
.stage-status { text-transform: uppercase; letter-spacing: 0.14em; font-size: 12px; }
.stage--done .stage-status { color: var(--red); font-weight: 700; }
.stage--running .stage-status { background: var(--yellow); padding: 2px 8px; }
.stage--failed .stage-status, .stage--blocked .stage-status { background: var(--red); color: var(--newsprint); padding: 2px 8px; }

.review-figure { margin: 20px 0 0; max-width: 620px; }
.review-quote {
  margin: 20px 0 0;
  border-left: 6px solid var(--yellow);
  padding-left: 18px;
  max-width: 62ch;
}
.review-quote p:first-child { font-size: 21px; font-style: italic; margin: 0; }

.action-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.revision { margin-top: 18px; max-width: 640px; }
.revision-scopes { display: flex; gap: 20px; flex-wrap: wrap; margin: 14px 0; }
.revision-scopes .ack { margin: 0; font-size: 15px; }
.revision .btn { margin-top: 14px; margin-right: 14px; }

@media (max-width: 860px) {
  .lanes { grid-template-columns: 1fr; }
  .lane--fake { border-right: 0; }
}
