.about-team-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);

  .about-team-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary-700);
    margin-bottom: 2.5rem;
  }
}

.about-team-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.team-member-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;

  @media screen and (min-width: 768px) {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem;
  }

  .member-image-col {
    flex-shrink: 0;
    width: 100%;

    @media screen and (min-width: 768px) {
      width: 220px;
    }

    img {
      width: 100%;
      height: auto;
      aspect-ratio: 4 / 5;
      object-fit: cover;
      display: block;
    }

    .image-fallback {
      width: 100%;
      aspect-ratio: 4 / 5;
      background-color: #eee;
      border-radius: 4px;
    }
  }

  .member-info-col {
    flex-grow: 1;
    display: flex;
    flex-direction: column;

    .member-header {
      margin-bottom: 1.25rem;
    }

    .member-name {
      font-family: 'Libre Baskerville', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--color-primary-700);
      margin: 0 0 0.25rem 0;
    }

    .member-position {
      font-family: 'Hanken Grotesk', sans-serif;
      font-size: 0.875rem;
      font-weight: 600;
      display: block;
    }

    .member-description {
      font-family: 'Hanken Grotesk', sans-serif;
      font-size: 1rem;
      line-height: 150%;
      color: var(--color-primary-700);
      margin-bottom: 1.5rem;

      p {
        margin-bottom: 0.75rem;
      }
      p:last-child {
        margin-bottom: 0;
      }
    }

    .member-contact {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;

      .contact-link {
        font-family: 'Hanken Grotesk', sans-serif;
        font-size: 1rem;
        font-weight: 600;
        color: var(--color-primary-700);
        text-decoration: none;
        position: relative;
        display: inline-flex;
        align-items: center;

        &:hover {
          text-decoration: underline;
          color: var(--color-primary-600);
        }

        svg {
          width: 1.25rem;
          height: 1.25rem;
          margin-right: 0.5rem;
        }
      }
    }
  }
}
