:root {
  --color-primary: #407c4c;
  --color-text: #222222;
  --color-muted: #6d6d6d;
  --color-border: #e3e3e3;
  --body-bg: #fdfdfd;
  --nowplaying-width: 320px;
}

@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue"), local("HelveticaNeue"),
    url("/assets/helvetica-neue/HelveticaNeueRoman.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Italic"), local("HelveticaNeue-Italic"),
    url("/assets/helvetica-neue/HelveticaNeueItalic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Medium"), local("HelveticaNeue-Medium"),
    url("/assets/helvetica-neue/HelveticaNeueMedium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Bold"), local("HelveticaNeue-Bold"),
    url("/assets/helvetica-neue/HelveticaNeueBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

[x-cloak] {
  display: none !important;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  background: var(--body-bg);
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#cont {
  flex: 1;
}

main {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto 64px;
}

h1, h2, h3, h4, h5 {
  font-family: "Helvetica Neue", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover,
a:focus-visible {
  text-decoration-thickness: 2px;
}

a:not(.navitem):not(.author-link):not(.wordmark-link) {
  transition: background-color 0.115s ease, color 0.115s ease,
    text-decoration-thickness 0.115s ease;
  border-radius: 4px;
  padding: 1px 2px;
  margin: 0 -2px;
}

a:not(.navitem):not(.author-link):not(.wordmark-link):hover,
a:not(.navitem):not(.author-link):not(.wordmark-link):focus-visible {
  background: #000;
  color: #fff;
  text-decoration: none;
}

.pagetitle {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.section-label {
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 32px 0 12px;
}

.site-header {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px 40px;
  position: relative;
}


.wordmark-group {
  text-align: center;
  margin-top: -32px;
  position: relative;
  top: -12px;
}

.wordmark-link {
  display: inline-block;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

.wordmark-link:hover,
.wordmark-link:focus-visible {
  outline: none;
  text-decoration: none;
}

#wordmark {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 4rem);
  letter-spacing: 2px;
  color: var(--color-primary);
  user-select: none;
}

.tagline {
  letter-spacing: 4px;
  margin: 0;
  font-size: 0.75rem;
  color: #000;
  user-select: none;
  text-transform: none;
  font-weight: 600;
}

.navbar {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.navitem {
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 6px 8px;
  border-radius: 4px;
  transition: background-color 0.115s ease-in-out;
}

.navitem:hover,
.navitem:focus-visible {
  background-color: rgba(0, 0, 0, 0.05);
}


.nowplaying-banner {
  width: 100%;
  border-bottom: 1px solid #000;
  background: linear-gradient(120deg, #e9e9e9, #f7f7f7);
  overflow: hidden;
  position: sticky;
  top: 0;
  z-index: 20;
}

.nowplaying-banner,
.nowplaying-banner * {
  user-select: none;
}

.nowplaying-inner {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 10px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  overflow: hidden;
}

.nowplaying-cover {
  width: 76px;
  height: 76px;
  border: 1px solid #000;
  border-radius: 10px;
  overflow: hidden;
  background: #fafafa;
}

.nowplaying-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nowplaying-copy p {
  margin: 4px 0;
}
.nowplaying-copy {
  min-width: 0;
}

.nowplaying-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.nowplaying-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
}

.nowplaying-host {
  font-size: 0.72rem;
  color: var(--color-muted);
  margin-bottom: 2px;
}

.nowplaying-description {
  font-size: 0.75rem;
  font-size: clamp(0.66rem, 1.4vw, 0.75rem);
  color: var(--color-text);
  max-width: clamp(180px, 60vw, 460px);
  width: 100%;
  position: relative;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  user-select: none;
  cursor: default;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.nowplaying-description * {
  user-select: none;
  font-size: inherit;
  line-height: inherit;
}

.nowplaying-description-static {
  display: inline;
}


.nowplaying-description-track {
  display: inline-flex;
  align-items: center;
  --marquee-duration: 24s;
  animation: none;
  will-change: transform;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  white-space: nowrap;
}

.nowplaying-description--marquee {
  overflow: hidden;
  white-space: nowrap;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 12%, rgba(0, 0, 0, 0.85) 88%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 12%, rgba(0, 0, 0, 0.85) 88%, rgba(0, 0, 0, 0) 100%);
}

.nowplaying-description--marquee .nowplaying-description-static {
  display: none;
}

.nowplaying-description--marquee .nowplaying-description-track {
  position: static;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  padding-left: 24px;
  animation: marquee var(--marquee-duration) linear infinite;
}

.nowplaying-description-segment {
  display: inline-flex;
  align-items: center;
}

.nowplaying-description-divider {
  color: var(--color-muted);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  margin: 0 16px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.radioPlayer {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid #000;
  background-color: #fff;
  cursor: pointer;
  background-repeat: no-repeat;
  background-size: 55%;
  background-position: center;
  transition: transform 0.15s ease-in-out;
}

.radioPlayer:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.radioPlayer[data-mode="stopped"] {
  background-image: url('/assets/images/play.png');
}

.radioPlayer[data-mode="playing"] {
  background-image: url('/assets/images/pause.png');
}

.radioPlayer[data-mode="loading"] {
  background-image: url('/assets/images/loading.png');
  animation: spin 2s linear infinite;
}

.radioPlayer:hover {
  transform: translateY(-1px);
}

.radioPlayer:active {
  transform: translateY(0);
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

footer {
  text-align: center;
  margin-top: auto;
  padding: 12px 0;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.saucer {
  width: 75px;
  display: inline-block;
}

.footerContent {
  max-width: 260px;
}

.made-on-earth {
  margin: 12px 0 0;
  font-size: 0.7rem;
  color: #000;
}

.heart-icon {
  fill: currentColor;
  vertical-align: middle;
  margin: 0 2px;
}

@media (max-width: 700px) {
  footer {
    gap: 12px;
  }
  .saucer {
    width: 55px;
  }
}


.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(220px, 60vw, 320px);
  height: 86px;
  padding: 0 52px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  background: #fff;
  border-radius: 50%;
  border: 2px solid #000;
  cursor: pointer;
}

.button:hover {
  color: #fff;
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.button:active {
  color: #fff;
  background: #2b5734;
  border-color: #2b5734;
}

.button:focus-visible {
  outline: 3px dotted #000;
  outline-offset: 4px;
}

.listen-button {
  position: relative;
  margin: 20px 0 60px;
  gap: 0;
}


.listen-button.cursor-hidden {
  cursor: none;
}

.listen-button.cursor-hidden .listen-button-icon {
  visibility: hidden;
}

.listen-button-cursor {
  position: fixed;
  height: 48px;
  width: auto;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%) rotate(12deg);
  opacity: 0;
  visibility: hidden;
  left: 0;
  top: 0;
  transition: left 0.06s linear, top 0.06s linear, opacity 0.08s linear;
  will-change: left, top;
}

.listen-button-cursor.listen-button-cursor--no-transition {
  transition: none;
}

.listen-button-cursor.visible {
  opacity: 1;
  visibility: visible;
}

.listen-button.listen-button--active {
  color: #777;
  background: #e6e6e6;
  border-color: #c5c5c5;
}

.listen-button.listen-button--active .listen-button-label {
  color: inherit;
}


.listen-button-content {
  position: relative;
  display: inline-block;
}

.listen-button-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  position: absolute;
  left: 100%;
  top: 100%;
  margin-left: 4px;
  margin-top: -20px;
  transform: rotate(12deg);
  transform-origin: center;
  pointer-events: none;
}

.listen-button-label {
  display: block;
  text-align: center;
}

.circle-image {
  border-radius: 50%;
  margin-top: 40px;
  width: 560px;
  max-width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.schedule-header {
  text-align: center;
  margin-bottom: 12px;
}

.schedule-header h2 {
  margin: 0;
}

.day-selector-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 16px;
}

.selectDay {
  border: none;
  background: transparent;
  text-transform: lowercase;
  cursor: pointer;
  color: var(--color-text);
  font-size: 0.95rem;
  padding: 4px 8px;
  border-radius: 4px;
}

.selectDay:hover,
.selectDay:focus-visible {
  background: rgba(0, 0, 0, 0.05);
}

.selectedSelectDay {
  font-weight: 700;
  background: rgba(64, 124, 76, 0.12);
}

.daydiv {
  text-align: left;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}

.showRow {
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.showRowImage--hidden,
.showRowTime--hidden {
  visibility: hidden;
}

.showRow--break .showRowInfo {
  text-align: center;
  padding: 10px 8px;
}

.showRowBreakLabel {
  display: block;
  width: 100%;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
}

.showRowBreakTime {
  display: block;
  margin-top: 4px;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.showRow--live .showRowTimeContent::after {
  content: 'On air now';
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--color-primary);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}


.showRow td {
  vertical-align: top;
}

.showRowImage {
  width: 160px;
  padding: 12px 0;
}

.showRowImage img {
  width: 152px;
  height: 152px;
  object-fit: cover;
  border: 1px solid #000;
  display: block;
}

.showRowInfo {
  padding: 12px;
}

.showRowName {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 6px;
  display: block;
  line-height: 1.05;
}

.showRowHost {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.showRowDescription {
  margin: 8px 0;
}

.showRowTime {
  width: 150px;
  min-width: 150px;
  font-size: 0.85rem;
  color: var(--color-muted);
  text-align: right;
  padding: 8px 24px 8px 32px;
  vertical-align: middle;
}

.showRowTimeContent {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  width: 100%;
}

.showRowTimeText {
  white-space: nowrap;
}

.directorateContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0;
}

.directoratePerson {
  flex: 1 1 calc(50% - 8px);
  max-width: calc(50% - 8px);
  min-width: 320px;
  border: 1px solid #000;
  border-radius: 0;
  padding: 16px 20px;
  background: #fff;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.directorate-photo {
  width: 96px;
  flex: 0 0 auto;
}

.directorate-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid #000;
  display: block;
}

.directorate-content {
  flex: 1 1 auto;
}

.directorate-label {
  margin: 0 0 4px;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.4px;
  color: #000;
}

.directorate-name {
  margin: 0 0 8px;
  font-size: 1.3rem;
  font-weight: 600;
}

.directorate-description {
  margin: 0;
}

@media (max-width: 640px) {
  .directoratePerson {
    flex-direction: column;
    align-items: flex-start;
    flex: 1 1 100%;
    max-width: 100%;
    min-width: 100%;
  }
  .directorate-photo {
    width: 60%;
    max-width: 160px;
  }
  .directorate-photo img {
    width: 100%;
  }
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.post {
  margin-bottom: 32px;
  padding: 20px 24px;
  border: 1px solid #000;
  border-radius: 0;
  background: #fff;
}

.musicblog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0 20px;
}

.musicblog-header-copy {
  flex: 1 1 320px;
  order: 1;
}

.musicblog-header .pagetitle {
  margin: 0 0 8px;
}

.musicblog-intro {
  margin: 0;
  font-size: 1rem;
  color: var(--color-text);
}

.musicblog-sun {
  flex: 0 0 auto;
  margin: 0;
  order: 2;
}

.musicblog-sun {
  width: 120px;
  max-width: 32vw;
  margin-top: -6px;
}

.musicblog-authors {
  margin: 24px 0;
}

.author-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.author-pill {
  border: 1px solid #000;
  border-radius: 999px;
  padding: 6px 14px;
  text-decoration: none;
  color: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  background: #fff;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.author-pill:hover,
.author-pill:focus-visible {
  background: var(--color-primary);
  color: #fff;
}

@media (max-width: 600px) {
  .musicblog-authors {
    text-align: center;
  }
  .author-pill-group {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .musicblog-header {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .musicblog-header-copy {
    text-align: center;
  }
  .musicblog-sun {
    margin-bottom: 12px;
    width: 120px;
  }
  .musicblog-intro {
    text-align: center;
  }
}

.news-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0 20px;
}

.news-header-copy {
  flex: 1 1 320px;
  order: 1;
}

.news-header .pagetitle {
  margin: 0 0 8px;
}

.news-intro {
  margin: 0;
  font-size: 1rem;
  color: var(--color-text);
}

.news-earth {
  flex: 0 0 auto;
  order: 2;
  width: 90px;
  max-width: 28vw;
  margin-top: -6px;
}

@media (max-width: 600px) {
  .news-header {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .news-header-copy {
    text-align: center;
  }
  .news-earth {
    margin-bottom: 12px;
    width: 90px;
  }
  .news-intro {
    text-align: center;
  }
}

.post h2 {
  margin: 0 0 8px;
  color: #000;
  letter-spacing: -1px;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.post-meta {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin: 0;
}

.post-excerpt {
  margin: 12px 0 0;
  color: #333;
}

.post-byline {
  font-size: 0.95rem;
  color: #000;
  font-weight: 600;
  margin: 0 0 6px;
}

.post-byline .post-date {
  font-weight: 500;
  color: var(--color-muted);
}

.post-section-label {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #000;
  margin: 0 0 16px;
}

.author-link {
  color: #000;
  text-decoration: underline;
  display: inline-block;
  padding: 2px 4px;
  margin: 0 -4px;
  border-radius: 4px;
  transition: background-color 0.115s ease, color 0.115s ease;
}

.author-link:hover,
.author-link:focus-visible,
.author-link:active {
  background: #000;
  color: #fff;
  text-decoration: none;
}


article img {
  max-width: 100%;
  height: auto;
}

.alumni-content {
  text-align: left;
}

.alumni-contact-card {
  border: 1px solid #000;
  padding: 16px 20px;
  max-width: 320px;
  float: right;
  margin: 0 0 24px 24px;
  background: #fff;
  border-radius: 0;
}

.alumni-contact-label {
  margin: 0 0 6px;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.4px;
  font-weight: 600;
  color: #000;
}

.alumni-contact-name {
  margin: 0 0 4px;
  font-size: 1.35rem;
  font-weight: 600;
}

.alumni-contact-email {
  margin: 0 0 8px;
  font-weight: 600;
}

.alumni-contact-email a {
  color: inherit;
  text-decoration: underline;
}

.alumni-contact-note {
  margin: 0;
  font-size: 0.9rem;
}

.home-content {
  text-align: center;
}

.home-logo {
  width: 215px;
  max-width: 60vw;
}

.page-content {
  text-align: left;
}

.audio-lab {
  max-width: 840px;
}

.audio-card {
  border: 1px solid #000;
  padding: 20px 24px;
  margin: 0 0 28px;
  background: #fff;
  box-shadow: 6px 6px 0 #000;
}

.audio-card--classic {
  background: #fffdf6;
}

.audio-card--split {
  background: #f0f4ff;
}

.audio-card--playlist {
  background: #f7f7f7;
}

.audio-intro {
  font-size: 1rem;
  color: var(--color-muted);
  max-width: 620px;
}

.audio-eyebrow {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.6px;
  margin: 0 0 6px;
  font-weight: 600;
  color: var(--color-muted);
}

.audio-description {
  margin: 0 0 14px;
  color: var(--color-text);
}

.audio-player {
  width: 100%;
  border: 1px solid #000;
  border-radius: 0;
  background-color: #fff;
}

.audio-player--slim {
  max-width: 520px;
}

.audio-track {
  display: flex;
  gap: 16px;
  align-items: center;
}

.audio-cover {
  width: 96px;
  height: 96px;
  border: 1px solid #000;
  object-fit: cover;
}

.audio-track-meta h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.audio-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.audio-play-toggle {
  border: 1px solid #000;
  background: #000;
  color: #fff;
  padding: 6px 16px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.audio-play-toggle:hover,
.audio-play-toggle:focus-visible {
  background: var(--color-primary);
}

.audio-progress {
  flex: 1;
  height: 6px;
  background: #d9d9d9;
  position: relative;
  overflow: hidden;
}

.audio-progress-bar {
  display: block;
  height: 100%;
  background: #000;
  width: 0;
}

.audio-time {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.85rem;
}

.audio-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.audio-stack-item {
  padding: 12px 16px;
  border: 1px dashed #000;
  background: #fff;
}

.audio-stack-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.author-page-header {
  margin-bottom: 24px;
}

.author-bio {
  color: var(--color-muted);
  margin: 0;
}

.error-page {
  text-align: center;
}

.error-page pre {
  letter-spacing: -1px;
  font-size: 3rem;
}

@media (max-width: 700px) {
  .site-header {
    justify-content: center;
  }
  .alumni-content {
    display: flex;
    flex-direction: column;
  }
  .alumni-contact-card {
    float: none;
    margin: 16px 0;
    order: 1;
    max-width: none;
    width: 100%;
  }
  .nowplaying-inner {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    text-align: left;
    gap: 8px;
    padding: 8px 12px;
    overflow: hidden;
  }
  .nowplaying-cover {
    justify-self: start;
    width: 58px;
    height: 58px;
  }
  .nowplaying-copy {
    text-align: left;
  }
  .nowplaying-copy p {
    margin: 2px 0;
  }
  .nowplaying-eyebrow {
    margin-bottom: 2px;
  }
  .radioPlayer {
    justify-self: end;
    width: 52px;
    height: 52px;
  }
  .nowplaying-description-track {
    padding-left: 0;
  }
  .nowplaying-title {
    font-size: 0.95rem;
    margin: 0;
  }
  .nowplaying-host {
    font-size: 0.7rem;
  }
  .nowplaying-description {
    font-size: 0.75rem;
    font-size: clamp(0.7rem, 3vw, 0.85rem);
    max-width: clamp(140px, 70vw, 320px);
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
  .schedule-table {
    display: block;
  }
  .showRow {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
  }
  .showRowImage {
    width: 100%;
    padding: 0 0 12px;
  }
  .showRowImage img {
    width: 120px;
    height: 120px;
    object-fit: cover;
  }
  .showRowInfo {
    padding: 0;
  }
  .showRowTime {
    width: auto;
    min-width: 0;
    text-align: left;
    padding: 0 0 12px;
    font-weight: 600;
    order: -1;
  }
  .showRowImage--hidden,
  .showRowTime--hidden {
    display: none;
  }
  .showRow.showRow--break {
    padding: 8px 0;
  }
  .showRow--break .showRowInfo {
    padding: 0;
  }
  .showRowTimeContent {
    align-items: flex-start;
  }
}
.about-layout {
  display: block;
}

.about-copy::after {
  content: "";
  display: block;
  clear: both;
}

.about-image {
  float: right;
  margin-left: 24px;
  margin-bottom: 16px;
  text-align: right;
}

.about-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 0;
  border: 1px solid #000;
  padding: 4px;
  background: #fff;
}

@media (max-width: 720px) {
  .about-image {
    float: none;
    margin: 0 auto 24px;
    text-align: center;
  }
}
.author-page-label {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin: 0 0 8px;
}

/* Audio Player */
.audio-player {
  border: 1px solid #000;
  padding: 12px 16px;
  margin: 0 0 24px;
  background: #fff;
}

.audio-player-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.audio-player-btn {
  width: 32px;
  height: 32px;
  border: 1.5px solid #000;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
}

.audio-player-btn img {
  width: 100%;
  height: 100%;
}

.audio-player-progress-wrap {
  flex: 1;
  min-width: 0;
}

.audio-player-progress {
  height: 8px;
  background: #e5e5e5;
  cursor: pointer;
  position: relative;
}

.audio-player-progress-bar {
  height: 100%;
  background: #000;
  width: 0;
  transition: width 0.1s linear;
}

.audio-player-time {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 0.75rem;
  color: var(--color-muted);
  font-family: monospace;
}
