/* ==========================================================================
   About page: hero bio (3-line serif heading + draft bio text on the left,
   profile photo on the right -- reusing the exact accent-frame treatment
   already built for the contact page: .contact-photo-frame/.contact-photo
   and --accent-blue from css/contact.css, linked on this page rather than
   redefined here), then a Workshops & Talks section (2x2 image grid one
   side, heading + text + placeholder link list the other -- mirrors the
   layout shape of .about-film-grid in css/movie.css).
   ========================================================================== */

/* ---- Hero bio ---- */

.about-hero {
  padding: calc(var(--nav-height) + 64px) 0 100px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* ~55/45 split, text side wider */
  gap: 64px;
  align-items: center;
}

.about-heading {
  font-family: var(--font-serif);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.15;
}

.about-heading span {
  display: block;
}

.about-bio {
  margin-top: 32px;
  max-width: 560px;
}

.about-bio .body-text {
  margin-bottom: 20px;
}

/* Same draft-note treatment as the movie page's synopsis note
   (css/movie.css .is-draft-note) -- kept as its own rule here rather than
   shared, since each page's CSS file stays self-contained on this site. */
.about-bio .body-text.is-draft-note {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--text-faint);
  border-left: 2px solid var(--border);
  padding-left: 14px;
  margin-top: 8px;
}

@media (max-width: 860px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-col-photo {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }
}

/* ---- Workshops & Talks ---- */

.workshops-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.workshops-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr; /* images narrower, copy+list wider */
  gap: 64px;
  align-items: start;
}

.workshops-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.workshop-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden; /* crops the portrait photo/video to this square tile */
  background: #000;
}

.workshop-tile img,
.workshop-tile .screening-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- Video tiles: click-to-play, same pattern as the Movies page
   Screenings section (css/movie.css / js/screening-video.js), styled
   fresh here rather than by linking that stylesheet -- this page doesn't
   need the rest of it, and js/screening-video.js works unchanged since it
   only depends on these class names, not on movie.css. ---- */

.screening-video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.screening-video {
  cursor: pointer;
  background: #000;
}

/* Dedicated dim layer behind the play icon -- separate from the icon's
   own inline circle backdrop -- so the icon reads clearly against any
   poster image, even a bright or busy one. Fades out with the icon once
   the video starts playing, so it doesn't dim actual playback. */
.screening-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.screening-video-wrap.is-playing .screening-video-overlay {
  opacity: 0;
}

.screening-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.screening-video-wrap.is-playing .screening-play-icon {
  opacity: 0;
}

.workshops-copy .body-text {
  margin-bottom: 20px;
}

.workshops-list-label {
  margin-top: 8px;
}

.workshops-list {
  display: flex;
  flex-direction: column;
}

.workshops-list li {
  border-top: 1px solid var(--border);
}

.workshops-list li:last-child {
  border-bottom: 1px solid var(--border);
}

/* The reference site used red for this list; this site's established
   accent is --accent-blue (see css/contact.css), so that's what's reused
   here instead of introducing a new color. */
.workshops-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4px;
  color: var(--accent-blue);
  font-size: 0.95rem;
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}

.workshops-list a:hover {
  color: var(--text);
  padding-left: 12px;
}

.workshops-list a::after {
  content: "→";
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .workshops-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .workshops-images {
    gap: 8px;
  }
}
