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

.live-card {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border: 1px solid var(--line, #d8d1c6);
  border-radius: 1rem;
}

.live-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line, #d8d1c6);
}

.live-heading {
  min-width: 0;
}

.live-heading .eyebrow {
  margin-top: 0;
}

.live-heading > :where(h1, h2) {
  max-width: 18ch;
  margin: 0 0 .55rem;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: .98;
  overflow-wrap: normal;
  word-break: normal;
}

.live-status {
  max-width: 68ch;
  margin: 0;
  font-weight: 650;
}

.live-body {
  display: grid;
  grid-template-columns: minmax(160px, 210px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(1.25rem, 3vw, 2.25rem);
}

.live-cover {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line, #d8d1c6);
  border-radius: .75rem;
}

.live-cover[hidden] + .live-copy {
  grid-column: 1 / -1;
}

.live-copy {
  display: grid;
  min-width: 0;
  gap: 1.15rem;
  align-content: start;
}

.live-description {
  max-width: 72ch;
  margin: 0;
  color: var(--muted);
}

.live-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
}

.live-boost-host {
  display: contents;
}

.live-card audio {
  width: min(100%, 760px);
  min-width: 0;
}

.live-refresh {
  position: relative;
  flex: 0 0 auto;
  min-height: 44px;
  padding-right: 44px;
}

.live-refresh-spinner {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 15px;
  height: 15px;
  margin-top: -7.5px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  visibility: hidden;
}

.live-refresh[data-loading="true"] .live-refresh-spinner {
  visibility: visible;
  animation: live-refresh-spin .7s linear infinite;
}

.live-page-main {
  min-height: calc(100vh - 180px);
  padding-block: clamp(1.5rem, 3vw, 3rem);
}

.live-page .live-region.section {
  padding-block: clamp(1.5rem, 3vw, 3rem);
}


.live-page .site-header .header-inner {
  min-height: 76px;
}

@keyframes live-refresh-spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .live-refresh[data-loading="true"] .live-refresh-spinner { animation: none; }
}

@media (max-width: 760px) {
  .live-header {
    display: grid;
    gap: 1rem;
  }

  .live-refresh {
    width: 100%;
  }

  .live-body {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
  }

  .live-cover {
    width: min(100%, 240px);
    justify-self: center;
  }

  .live-cover[hidden] + .live-copy {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .live-card {
    padding: 1rem;
  }

  .live-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .live-actions .button,
  .live-actions [data-live-boost-open] {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
