/* Cache-busted transcript layout. Keep this separate so deployed clients never reuse an older bundled stylesheet. */
.transcript-slide-groups {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 580px;
  overflow: auto;
  padding-right: 7px;
}

.transcript-slide-group {
  overflow: hidden;
  border: 1px solid #e8e3ed;
  border-radius: 11px;
  background: #fff;
}

.transcript-slide-toggle {
  width: 100%;
  min-height: 56px;
  padding: 11px 14px;
  border: 0;
  background: #f8f6fb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  cursor: pointer;
}

.transcript-slide-toggle:hover { background: #f3effa; }
.transcript-slide-toggle > span:first-child { min-width: 0; }

.transcript-slide-toggle small {
  display: block;
  color: #7650e7;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .1em;
}

.transcript-slide-toggle b {
  display: block;
  margin-top: 3px;
  overflow: hidden;
  color: #29252d;
  font-size: 10px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.transcript-slide-toggle > span:last-child {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.transcript-slide-toggle em {
  padding: 5px 7px;
  border-radius: 7px;
  background: #ece6fa;
  color: #6845c9;
  font-size: 7px;
  font-style: normal;
  font-weight: 850;
}

.transcript-slide-toggle i {
  color: #716b77;
  font-size: 13px;
  font-style: normal;
  transition: transform .18s;
}

.transcript-slide-group.open .transcript-slide-toggle {
  border-bottom: 1px solid #e8e3ed;
  background: #f5f2fa;
}

.transcript-slide-group.open .transcript-slide-toggle i { transform: rotate(180deg); }

.transcript-slide-group .transcript-segments {
  max-height: 430px;
  padding: 13px 14px;
  overflow: auto;
}
