.transcript-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.transcript-header h2 {
  margin: 0;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
}

.transcript-expand {
  color: #007cff;
  background: transparent;
}

.transcript-body {
  background: #fff;
  padding: 50px;
  border-radius: 8px;
}

.transcript-body.active {
  max-height: 400px;
  overflow-y: scroll;
}

.transcript-content {
  line-height: 1.4em;
  height: 9.8em;
  overflow: hidden;
  position: relative;
}

.transcript-content.collapsed:after {
  content: "";
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  height: 1.4em;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 50%);
}

.transcript-readmore-container {
  text-align: center;
  margin-top: 25px;
}

.transcript-readmore {}
