.about-bisc-header {
  margin-bottom: 40px;
}

.about-bisc-founder {
  margin-bottom: 60px;
}

.about-bisc-founder-inner {
  display: grid;
  grid-template-columns: minmax(280px, 350px) minmax(0, 1fr);
  align-items: start;
  gap: 40px;
}

.about-bisc-founder-image {
  overflow: hidden;
  border-radius: 8px;
  max-height: 350px;
  max-width: 350px;
}

.about-bisc-founder-image img {
  display: block;
  width: 100%;
  height: auto;
}

.about-bisc-founder-content > p {
  margin-top: 16px;
  margin-bottom: 32px;
  color: var(--primary500);
}

.about-bisc-founder-description > p {
  color: var(--surface700);
  margin-top: 24px;
}

.about-bisc-people-section > .container {
  padding-top: 80px;
  padding-bottom: 80px;
}

.about-bisc-people-section:nth-of-type(odd) {
  background-color: var(--surface100);
}

.about-bisc-section-header > h3 {
  color: var(--primary500);
}

.about-bisc-section-description {
  margin-top: 24px;
  color: var(--surface700);
}

.about-bisc-people-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.about-bisc-person-image {
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 350px;
  max-height: 350px;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 24px;
  background-color: var(--surface100);
}

.about-bisc-person-image.is-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface100);
}

.about-bisc-people-section:nth-of-type(odd) .about-bisc-person-image.is-placeholder {
  background-color: white;
}

.about-bisc-person-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-bisc-person-image.is-placeholder img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.about-bisc-person-name {
  color: var(--surface700);
}

.about-bisc-person-bio {
  margin: 12px 0 0;
  color: var(--surface700);
}

.about-bisc-person-bio a {
  color: var(--primary500);
}

.about-bisc-person-bio a:hover {
  text-decoration: underline;
}

.about-bisc-person-bio p {
  margin: 0;
}

.about-bisc-person-bio p + p {
  margin-top: 12px;
}

@media (max-width: 1024px) {
  .about-bisc-founder-inner {
    gap: 36px;
  }

  .about-bisc-people-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .about-bisc-founder-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .about-bisc-people-grid {
    gap: 16px;
    row-gap: 32px;
    margin-top: 32px;
  }

  .about-bisc-people-section > .container {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .about-bisc-person-image.is-placeholder img {
    max-width: 60%;
    max-height: 60%;
  }
}

@media (max-width: 640px) {
  .about-bisc-header {
    margin-bottom: 32px;
  }

  .about-bisc-founder {
    margin-bottom: 64px;
  }
}
