/* People hero: title centered over the sky in the group photo */
.magic-hero {
  position: relative;
  max-width: 860px;
  margin: 0 auto 10px;
}

.magic-hero-photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--rounded);
  box-shadow: var(--shadow);
}

.magic-hero-title {
  position: absolute;
  top: 6%;
  left: 0;
  right: 0;
  margin: 0;
  text-align: center;
  color: #1a1a1a;
  font-family: var(--heading);
  font-weight: var(--bold);
  font-size: 2rem;
  letter-spacing: 0.02em;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.8), 0 1px 2px rgba(255, 255, 255, 0.9);
}

@media (max-width: 600px) {
  .magic-hero-title {
    font-size: 1.3rem;
    top: 5%;
  }
}
.member-row {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 26px 0;
  text-align: left;
  border-bottom: 1px solid var(--light-gray);
}

.member-row:last-of-type {
  border-bottom: none;
}

/* left column: photo + haiku */
.member-media {
  flex-shrink: 0;
  width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.member-photo-link {
  display: block;
  width: 160px;
  height: 160px;
}

.member-photo {
  width: 160px;
  height: 160px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.member-haiku {
  width: 100%;
  font-size: 1.05rem;
  font-style: normal;
  line-height: 1.25;
  text-align: center;
  color: var(--dark-gray);
  white-space: nowrap;
}

.member-haiku-empty {
  color: var(--gray);
  opacity: 0.5;
  letter-spacing: 0.05em;
}

/* right column: name, title, links, blurb */
.member-body {
  flex: 1;
  min-width: 0;
}

.member-name {
  margin: 0;
  font-family: var(--heading);
  font-weight: var(--bold);
  font-size: var(--large);
}

.member-title {
  margin: 2px 0 10px;
  color: var(--gray);
  font-family: var(--heading);
}

.member-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 10px;
}

.member-links .button-wrapper {
  margin: 0;
}

.member-blurb,
.member-blurb p {
  line-height: 1.3;
}

.member-blurb p:first-child {
  margin-top: 0;
}

.member-blurb p:last-child {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .member-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .member-body {
    text-align: center;
  }
  .member-links {
    justify-content: center;
  }
}

/*# sourceMappingURL=member-row.css.map */