#livestream {
  width: 100%;
  position: relative;
  z-index: 20;
}

.live-banner {
  width: 100%;
  overflow: hidden;
  background: var(--reach-surface, #171717);
  color: var(--reach-text, #fff);
  border-bottom: 1px solid rgba(127, 127, 127, .22);
}

.live-banner[hidden] {
  display: none !important;
}

.live-banner-toggle {
  appearance: none;
  width: 100%;
  min-height: 52px;
  padding: 12px 20px;
  border: 0;
  background: transparent;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font: inherit;
  font-weight: 700;
  letter-spacing: .01em;
  cursor: pointer;
}

.live-banner-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: #e53935;
  box-shadow: 0 0 0 4px rgba(229, 57, 53, .10);
  animation: reach-live-pulse 1.8s ease-in-out infinite;
}

.live-banner-chevron {
  margin-left: 2px;
  font-size: .9em;
  opacity: .65;
  transition: transform 320ms ease;
}

.live-banner.is-open .live-banner-chevron {
  transform: rotate(180deg);
}

.live-banner-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 400ms ease;
}

.live-banner.is-open .live-banner-panel {
  grid-template-rows: 1fr;
}

.live-banner-panel-inner {
  min-height: 0;
  overflow: hidden;
}

.live-banner-player {
  width: min(1100px, 100%);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #000;
}

.live-banner-player iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@keyframes reach-live-pulse {
  0%, 100% { opacity: .38; }
  50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .live-banner-dot { animation: none; opacity: 1; }
  .live-banner-panel,
  .live-banner-chevron { transition: none; }
}
