/**
 * Project Detail Row Component
 * A single row inside the Two Column Story details table:
 * label on the left, value on the right, divider below.
 * Not intended to be placed outside two_column_story.
 */

/* Row itself is transparent — its label/value participate in the parent
   details container's grid so all values align at the same column. */
.doghouse-project-detail-row {
  display: contents;
}

.doghouse-project-detail-row__label,
.doghouse-project-detail-row__value {
  margin: 0;
}

.doghouse-project-detail-row__label {
  font-family: var(--site-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--site-color-text-label);
}

.doghouse-project-detail-row__value {
  font-size: 0.82rem;
  font-weight: var(--site-fw-semibold);
  color: var(--site-color-text-heading);
  text-align: left;
  min-width: 0;
  word-break: break-word;
}

/* Optional tone overrides (set via field_color). Mirrors the table_cell
 * tone-* pattern so editors can colour-code values like STATUS: Live. */
.doghouse-project-detail-row__value.tone-positive { color: var(--site-color-primary); }
.doghouse-project-detail-row__value.tone-negative { color: var(--site-color-red); }
.doghouse-project-detail-row__value.tone-neutral  { color: var(--site-color-text-label); }
.doghouse-project-detail-row__value.tone-accent   { color: var(--site-color-secondary); }
