.teaching-example {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  margin: 18px 0;
}
.teaching-example > div {
  display: grid;
  gap: 3px;
  margin-bottom: 12px;
}
.teaching-example span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .15em;
}
.teaching-example video {
  display: block;
  width: 100%;
  max-height: 430px;
  background: #000;
  border-radius: 12px;
}
.teaching-example p {
  margin: 12px 0 2px;
  font-weight: 800;
}
.teaching-example small {
  color: var(--muted);
}

.break-replay {
  background: #10130f;
  color: #fff;
  border-radius: 22px;
  padding: clamp(16px, 3vw, 24px);
  margin: 24px 0;
}
.break-replay-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 14px;
}
.break-replay-heading > div {
  display: grid;
  gap: 3px;
}
.break-replay-heading span,
.brian-read span {
  color: #d9f56a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .15em;
}
.break-replay-heading strong {
  font-size: 20px;
}
.break-replay button {
  border: 1px solid #5d6258;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  padding: 9px 13px;
  font-weight: 850;
  cursor: pointer;
}
.break-video-shell {
  position: relative;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
}
.break-video-shell video {
  display: block;
  width: 100%;
  max-height: 520px;
  background: #000;
}
.break-video-shell i {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: 7px;
  background: #ec5a2b;
  color: #fff;
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: .11em;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .08s linear, transform .08s linear;
  pointer-events: none;
}
.break-video-shell i.visible {
  opacity: 1;
  transform: translateY(0);
}
.break-transport {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 12px 0 4px;
}
.break-transport span {
  min-width: 76px;
  text-align: center;
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  color: #c7c8c2;
}
.brian-read {
  border-top: 1px solid #363a33;
  margin-top: 16px;
  padding-top: 16px;
}
.brian-read p {
  margin: 6px 0 0;
  font-size: clamp(18px, 2.4vw, 23px);
  line-height: 1.35;
  font-weight: 750;
}
@media (max-width: 600px) {
  .break-replay-heading {
    align-items: start;
    flex-direction: column;
  }
}
