/**
 * s009 ("Portrait Solo" — individual team member detail page, e.g.
 * /uber-uns/paul-kimbacher/). REQUESTED REDESIGN: left column is now a
 * fixed 40%-width square portrait frame with a light border (same
 * technique as s001's image-frame — border:1px solid var(--border-c)),
 * replacing the old full-width, unconstrained-aspect-ratio image. Right
 * column's typography now follows the same visual language as the Contact
 * Globe panel (.globe-info__list-item-h/-copy/-field — headline, copy
 * paragraph, divider-topped label+content field) instead of the old
 * generic Tailwind heading + single bordered info block.
 */
.s009-detail {
  display: flex;
  align-items: stretch;
  gap: 4rem;
  padding-left: 3rem;
  padding-right: 3rem;
}

.s009-portrait-col {
  flex: 0 0 40%;
  max-width: 40%;
  width: 100%;
}

/* REQUESTED CHANGE: both columns match height — .s009-detail's own
   align-items:stretch makes .s009-portrait-col as tall as the content
   column already; this makes the frame itself fill that full height
   (instead of just its image's natural size) so the portrait crops via
   object-fit:cover to match exactly. */
.s009-portrait-frame {
  position: relative;
  height: 100%;
  border: 1px solid var(--border-c);
  border-radius: 0.5rem;
  overflow: hidden;
}

.s009-portrait-frame__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s009-portrait-frame__location-icon {
  position: absolute;
  bottom: 0.75em;
  right: 0.75em;
  width: 2.5em;
  height: auto;
  opacity: .9;
  font-size: 1.25rem;
}

.s009-content-col {
  flex: 1;
  min-width: 0;
  padding: 5rem;
  background-color: #1c1e26;
  border-radius: 0.5rem;
  width:50%;
}

.s009-name {
  font-family: Spectral, serif;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--w100);
}

.s009-copy {
  max-width: 34em;
  font-family: Karla, sans-serif;
  font-size: 1.125em;
  line-height: 1.7;
  color: var(--w80);
}

.s009-fields {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.s009-field-title {
  font-family: Karla, sans-serif;
  font-size: 1em;
  font-weight: 700;
  color: var(--w100);
  margin: 0 0 .5em;
}

.s009-field-content {
  font-family: Karla, sans-serif;
  font-size: 1em;
  line-height: 1.7;
  color: var(--w80);
  margin: 0;
}

/* REQUIRED NOTE: .s009-content-col is now a fixed dark panel
   (background-color:#1c1e26, not gated by light/dark mode) — same
   self-contained-dark-chrome convention as the Contact Globe panel, which
   also never flips its own internal colors for light mode. No light-mode
   text overrides here on purpose: the white text above stays correct
   against that panel's own always-dark background in both site modes. */

@media screen and (max-width: 1024px) {
  .s009-detail {
    flex-direction: column;
    gap: 2rem;
  }

  .s009-portrait-col {
    flex: none;
    max-width: 20rem;
    width: 100%;
  }

  /* FIX: this block reset .s009-portrait-col to full width when the layout
     stacks, but never did the same for .s009-content-col — it kept its
     desktop-only width:50% (meant to sit beside a 40%-wide portrait
     column), so on a stacked single-column layout it stayed pinned at half
     the viewport width with a fixed 5rem of padding on each side. On
     mobile that left as little as ~165px of usable width, wrapping nearly
     every word in the bio copy onto its own line. */
  .s009-content-col {
    width: 100%;
    padding: 3rem;
  }
}

@media screen and (max-width: 480px) {
  .s009-content-col {
    padding: 2rem;
  }
}
