.transcript-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.transcript-body {
  max-height: 20rem;
  overflow: hidden;
  position: relative;
}

.transcript-body::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4rem;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 1)
  );
  pointer-events: none;
}

.transcript-toggle:checked + .transcript-body {
  max-height: none;
}

.transcript-toggle:checked + .transcript-body::after {
  display: none;
}

.transcript-toggle-label {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
  line-height: 1.2;
}

.transcript-toggle-label::before {
  content: "Show full transcript";
}

.transcript-toggle:checked ~ .transcript-toggle-label::before {
  content: "Hide transcript";
}

@media print {
  .transcript-body {
    max-height: none !important;
    overflow: visible !important;
  }
  .transcript-body::after,
  .transcript-toggle-label {
    display: none !important;
  }
}
