#committee {
  --member-img-size: 128px;
}
@media (min-width: 992px) {
  #committee {
    --member-img-size: 160px ;
  }
}
@media (min-width: 1200px) {
  #committee {
    --member-img-size: 176px ;
  }
}
#committee .member-grid {
  --gap: 2rem;
  display: flex;
  gap: var(--gap);
  flex-direction: row;
  flex-wrap: wrap;
  padding-top: var(--spacing);
}
#committee .member {
  flex-basis: 100%;
  display: grid;
  align-items: center;
  grid-template-columns: var(--member-img-size) auto;
}
@media (min-width: 768px) {
  #committee .member {
    flex-basis: calc(50% - var(--gap) / 2);
  }
}
#committee .member img {
  float: left;
  width: var(--member-img-size);
  height: var(--member-img-size);
  border-radius: 50%;
  object-fit: cover;
}
#committee .member .bio {
  margin-left: 1rem;
  line-height: 1.1;
}
#committee .member .bio .name {
  font-weight: 700;
  font-size: 1.2rem;
}
#committee .member .bio .role {
  font-style: italic;
  margin-top: 0.1rem;
}
#committee .member .bio .course {
  margin-top: 0.5rem;
}
#committee .member .bio .residence, #committee .member .bio .hometown {
  margin-top: 0.2rem;
}

#ring #ring-img {
  width: 75%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--spacing);
}
@media (min-width: 992px) {
  #ring #ring-img {
    float: right;
    max-width: 40%;
    margin-right: -15%;
    position: relative;
    overflow: hidden;
  }
}

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