/* Person / founder — compact luxury card (unified composition, balanced type) */

.personCardBlock {
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding: 0.75rem 1rem 1rem;
}

@media (min-width: 768px) {
  .personCardBlock {
    padding: 1rem 1.25rem 1.25rem;
  }
}

.personCard {
  background: #0b0b0b;
  border-radius: clamp(14px, 1.8vw, 20px);
  box-shadow: 0 12px 40px -18px rgba(0, 0, 0, 0.38);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: clamp(1.1rem, 2.4vw, 1.5rem) clamp(1.1rem, 2.8vw, 1.65rem);
  align-items: stretch;
}

@media (min-width: 768px) {
  .personCard {
    grid-template-columns: minmax(0, 1fr) minmax(200px, 36%);
    gap: 1.15rem;
    padding: clamp(1.2rem, 2.6vw, 1.65rem) clamp(1.2rem, 3vw, 1.85rem);
  }
}

.personCard__text {
  min-width: 0;
  max-width: 26rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Prominent but controlled — not poster scale */
.personCard__name {
  margin: 0;
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(1.2rem, 2.35vw, 1.6rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.personCard__name::after {
  content: '';
  display: block;
  width: 2rem;
  max-width: 20%;
  height: 1px;
  margin-top: 0.4rem;
  background: rgba(255, 255, 255, 0.24);
}

.personCard__role {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .personCard__role {
    font-size: 0.90625rem;
    margin-top: 0.4rem;
  }
}

.personCard__bio {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.55;
}

@media (min-width: 768px) {
  .personCard__bio {
    font-size: 0.9375rem;
    line-height: 1.52;
    margin-top: 0.55rem;
  }
}

/* Compact card: global .public-rich-text tokens, keep card type scale */
.personCard__bio.public-rich-text {
  --rt-text: rgba(255, 255, 255, 0.88);
  --rt-muted: rgba(255, 255, 255, 0.72);
  --rt-heading: #ffffff;
  --rt-link: rgba(255, 255, 255, 0.95);
  --rt-link-hover: #ffffff;
  --rt-bg-soft: rgba(255, 255, 255, 0.1);
  --rt-border: rgba(255, 255, 255, 0.15);
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: 0;
}

.personCard__bio p {
  margin: 0 0 0.4rem;
}

.personCard__bio p:last-child {
  margin-bottom: 0;
}

.personCard__bio--clamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

@media (min-width: 768px) {
  .personCard__bio--clamp {
    -webkit-line-clamp: 6;
  }
}

.personCard__meta {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.45;
}

/* Portrait: same card language — light mat, tight to grid */
.personCard__figure {
  margin: 0;
  background: #ffffff;
  border-radius: clamp(12px, 1.6vw, 16px);
  padding: 0.4rem;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.personCard__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 300px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: clamp(8px, 1.2vw, 12px);
}

@media (min-width: 768px) {
  .personCard__img {
    max-height: min(320px, 50vh);
  }
}

@media (max-width: 767px) {
  .personCard__figure {
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
  }
}

