/* =========================================================
   GATE OUTCOME ROW
========================================================= */
.gateRow {
  display: grid;
  grid-template-columns: 28px 90px minmax(0, 1fr);
  align-items: center;
  gap: 16px;

  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gateRow:last-child {
  border-bottom: none;
}

.gateRow__dash {
  display: block;
  width: 18px;
  height: 2px;

  background: rgba(226, 234, 247, 0.35);
}

.gateRow--accent .gateRow__dash {
  background: #f07b2f;
}

.gateRow__title {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;

  color: #ffffff;
}

.gateRow--accent .gateRow__title {
  color: #f18943;
}

.gateRow__desc {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;

  color: rgba(255, 255, 255, 0.65);
  min-width: 0;
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 820px) {
  .gateRow {
    grid-template-columns: 22px 78px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 16px;
  }
}
