.landing-bio-section {
  padding: 96px 0;
  background: #20231f;
}

.landing-bio-section__inner {
  width: min(1234px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px minmax(0, 598px);
  justify-content: center;
  gap: 40px;
  align-items: start;
  min-height: 504px;
  backdrop-filter: blur(4px);
}

.landing-bio-section__media {
  border-radius: 8px;
  overflow: hidden;
  width: 400px;
  height: 486px;
}

.landing-bio-section__media--placeholder {
  background: linear-gradient(160deg, #5a6558 0%, #3f463d 100%);
  display: grid;
  place-items: center;
}

.landing-bio-section__image-placeholder {
  width: min(320px, calc(100% - 48px));
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  background: linear-gradient(180deg, #c9894d 0%, #8f5d31 100%);
  display: grid;
  place-items: center;
}

.landing-bio-section__image-placeholder span {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-secondary);
  font-size: 20px;
  letter-spacing: 0.08em;
}

.landing-bio-section__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 22%;
}

.landing-bio-section__content {
  max-width: 598px;
  padding-top: 52px;
}

.landing-bio-section__eyebrow {
  display: none;
}

.landing-bio-section__title {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(34px, 3.2vw, 47.78px);
  font-weight: 400;
  line-height: 1.1;
}

.landing-bio-section__text {
  margin-top: 24px;
  max-width: 598px;
  color: #d8dcd2;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

.landing-bio-section__text p {
  margin: 0;
}

.landing-bio-section__text p + p {
  margin-top: 1em;
}

.landing-bio-section__text ul,
.landing-bio-section__text ol,
.landing-bio-section__bullets {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.landing-bio-section__text li,
.landing-bio-section__bullets li {
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  display: grid;
  grid-template-columns: 16.67px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.landing-bio-section__text li::before,
.landing-bio-section__bullets li::before {
  content: '';
  width: 16.67px;
  height: 16.67px;
  margin-top: 4px;
  background-repeat: no-repeat;
  background-size: 16.67px 16.67px;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.4989 6.66951C16.8795 8.53725 16.6082 10.479 15.7304 12.171C14.8526 13.863 13.4213 15.2029 11.6751 15.9673C9.92899 16.7317 7.97357 16.8743 6.13496 16.3715C4.29636 15.8686 2.68571 14.7507 1.57161 13.204C0.457516 11.6574 -0.0926832 9.77554 0.0127684 7.87233C0.11822 5.96912 0.872948 4.15958 2.15109 2.74548C3.42923 1.33138 5.15353 0.398198 7.03644 0.101551C8.91934 -0.195097 10.847 0.162723 12.498 1.11534' stroke='%23A9B99A' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.25 7.91667L8.33333 10L15.2778 3.05556' stroke='%23A9B99A' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

@media (max-width: 1200px) {
  .landing-bio-section__inner {
    width: min(100% - 48px, 980px);
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 30px;
    min-height: 0;
  }

  .landing-bio-section__media {
    width: 100%;
    height: auto;
    max-height: 486px;
    aspect-ratio: 400 / 486;
  }

  .landing-bio-section__content {
    padding-top: 24px;
  }
}

@media (max-width: 900px) {
  .landing-bio-section {
    padding: 72px 0;
  }

  .landing-bio-section__inner {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 680px);
  }

  .landing-bio-section__media {
    width: 100%;
    max-width: 474px;
    justify-self: center;
  }

  .landing-bio-section__content {
    max-width: 100%;
    padding-top: 0;
  }

  .landing-bio-section__text ul,
  .landing-bio-section__text ol,
  .landing-bio-section__bullets {
    grid-template-columns: 1fr;
  }
}
