/* Transcript focus reel */
.transcript-stage {
  display: grid;
  min-height: 74vh;
  grid-template-columns: minmax(280px, 0.56fr) minmax(320px, 1fr);
  gap: clamp(24px, 6vw, 78px);
  align-items: center;
  overflow: hidden;
  padding: 32px max(16px, calc((100vw - 1180px) / 2));
}

.transcript-panel {
  overflow: hidden;
  border: 1px solid rgba(17, 19, 21, 0.15);
  border-radius: 8px;
  background: #111315;
  box-shadow: 0 28px 76px rgba(17, 19, 21, 0.18);
}

.transcript-topbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(247, 242, 232, 0.12);
  color: rgba(247, 242, 232, 0.72);
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.transcript-lines {
  display: grid;
  gap: 1px;
  background: rgba(247, 242, 232, 0.08);
}

.transcript-line {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  background: #111315;
  color: rgba(247, 242, 232, 0.72);
  padding: 16px;
  will-change: transform, opacity;
}

.transcript-line time {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

.transcript-line strong {
  color: var(--paper);
}

.transcript-line.is-active {
  background: rgba(104, 216, 214, 0.14);
}

.transcript-summary {
  display: grid;
  gap: 8px;
  border-top: 1px solid rgba(247, 242, 232, 0.12);
  padding: 16px;
}

.transcript-summary small {
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.transcript-summary strong {
  color: var(--paper);
  font-size: clamp(24px, 4vw, 42px);
  line-height: 0.95;
  text-transform: uppercase;
}

@media (max-width: 840px) {
  .transcript-stage {
    grid-template-columns: 1fr;
  }

  .transcript-line {
    grid-template-columns: 1fr;
  }
}
