.member-profile {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: start;
}

.member-profile-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.member-profile-card .portrait {
  height: 170px;
  flex: none;
}

.member-profile-introduction {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-start;
}

.member-profile-introduction > :first-child {
  margin-top: 0;
}

.member-profile-introduction > :last-child {
  margin-bottom: 0;
}

.member-profile-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 8px;
  width: 100%;
  margin-top: 8px;
}

@media (max-width: 700px) {
  .member-profile {
    grid-template-columns: 1fr;
  }
}

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