/* ── BIO ──────────────────────────────────────────────────── */
.about-section {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #e0e0da;
}

.about-section:last-child { border-bottom: none; }

.bio-layout {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 3.5rem;
  align-items: start;
}

.bio-photo { width: 220px; height: auto; display: block; }

.bio-text p {
  font-size: 0.88rem;
  line-height: 1.85;
  color: #333;
  margin-bottom: 1rem;
}

.bio-text p:last-child { margin-bottom: 0; }

.bio-text a,
.rw-body a {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bio-text a:hover,
.rw-body a:hover { color: #555; }

/* ── PRESS CLIPS ─────────────────────────────────────────── */
.press-clips {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.press-clip {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 1.2rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid #e8e8e4;
  text-decoration: none;
  color: inherit;
  transition: background 0.1s;
}

.press-clip:first-child { border-top: 1px solid #e8e8e4; }
.press-clip:hover       { background: rgba(0,0,0,0.015); }

.press-pub {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
  font-weight: 600;
}

.press-headline { font-size: 0.83rem; color: #222; line-height: 1.4; }

.press-meta {
  font-size: 0.68rem;
  color: #bbb;
  white-space: nowrap;
  text-align: right;
}

/* ── TWO-COL (Rising Waves) ──────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 4rem;
  align-items: start;
}

.rw-body p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1rem;
}

.rw-logo { width: 140px; height: auto; display: block; margin-bottom: 1.6rem; }

.rw-aside {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.aside-block h3 {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 0.5rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #e0e0da;
}

.aside-block p  { font-size: 0.75rem; color: #444; line-height: 1.6; }
.aside-block a  { color: #111; text-decoration: underline; text-underline-offset: 3px; font-size: 0.75rem; }

/* ── PRODUCING ───────────────────────────────────────────── */
.producing-intro {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 2.5rem;
  max-width: 640px;
}

.producing-intro p { margin-bottom: 0.75rem; }
.producing-intro p:last-child { margin-bottom: 0; }

.producing-list { display: flex; flex-direction: column; gap: 0; }

.producing-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid #e8e8e4;
}

.producing-item:first-child { border-top: 1px solid #e8e8e4; }

.prod-title  { font-size: 0.88rem; font-weight: 600; color: #111; }
.prod-note   { font-size: 0.6rem; color: #aaa; margin-top: 0.25rem; letter-spacing: 0.1em; text-transform: uppercase; }
.prod-role   { font-size: 0.72rem; color: #888; margin-top: 0.2rem; letter-spacing: 0.02em; }
.prod-venue  { font-size: 0.7rem; color: #aaa; text-align: right; white-space: nowrap; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .rw-aside { position: static; flex-direction: row; flex-wrap: wrap; gap: 1.5rem 3rem; }
}

@media (max-width: 600px) {
  .bio-layout { grid-template-columns: 1fr; gap: 2rem; }
  .bio-photo  { width: 160px; }
  .press-clip { grid-template-columns: 60px 1fr; grid-template-rows: auto auto; }
  .press-meta { grid-column: 2; margin-top: -0.5rem; }
}

@media (max-width: 480px) {
  .rw-aside { flex-direction: column; }
}
