/* Current business status: mirrors the legacy timeline with stronger emphasis. */
.history-stage--now {
  grid-template-columns: 250px 1fr;
}

.history-current {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
}

.history-current p {
  min-height: 0;
  padding: 12px 0;
  display: grid;
  grid-template-columns: 58px 1fr;
  grid-template-rows: auto auto;
  gap: 2px 12px;
  align-items: start;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #ffffff24;
  border-radius: 0;
}

.history-current time {
  grid-row: 1 / 3;
  padding-top: 3px;
  color: var(--yellow);
  font: 10px 'DM Mono', monospace;
}

.history-current strong {
  font-size: 15px;
  letter-spacing: -.04em;
}

.history-current span {
  font-size: 11px;
  color: #b6c4df;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .history-stage--now {
    display: block;
  }

  .history-current {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .history-current p {
    grid-template-columns: 53px 1fr;
  }

  .history-current strong {
    font-size: 14px;
  }

  .history-current span {
    font-size: 10px;
  }
}
