/* Restore the Story section to its original 50/50 layout. */
#about .about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 3rem;
  align-items: start;
}

#about .story-photo-wrap {
  width: 100%;
  max-width: none;
  aspect-ratio: 3 / 4;
  justify-self: stretch;
}

#about .story-photo {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

/* Consistent hierarchy and alignment across project cards. */
.shows-grid {
  align-items: stretch;
}

.featured-show-copy h3 {
  line-height: 1.12;
}

.featured-show-copy > p:not(.project-series):not(.project-role) {
  max-width: 62ch;
}

.supporting-project-card .featured-show-copy,
.compact-project-card .featured-show-copy {
  height: 100%;
}

.supporting-project-card .project-role,
.compact-project-card .project-role {
  margin-top: auto;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.featured-show-copy > .channel-link {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 0.5rem;
}

.featured-show-card .channel-link {
  margin-top: 0.25rem;
}

.project-role {
  margin-bottom: 0.35rem !important;
}

.supporting-project-card .featured-media,
.compact-project-card .featured-media {
  min-height: 0;
}

@media (max-width: 900px) {
  .featured-show-card .featured-show-copy {
    padding-top: 1.75rem;
  }
}

@media (max-width: 768px) {
  #about .about-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  #about .story-photo-wrap {
    grid-row: 1;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  #about .about-text {
    grid-row: 2;
  }
}
