.members {
  margin-bottom: 24px;
  display: grid;
}
.members__container {
  display: grid;
}
.members__entry {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 24px;
  padding: 24px;
  background: #fafafa;
  margin-top: 24px;
  overflow: hidden;
  height: fit-content;
  transition: all 250ms ease-in-out;
}
@media (min-width: 768px) {
  .members__entry {
    grid-template-columns: repeat(2, 1fr);
  }
}
.members__entry.hidden {
  height: 0;
  padding: 0 24px;
  margin-top: 0;
}
.members__entry__address > * {
  display: block;
}
.members__entry__contact > * {
  display: block;
}
.members__entry__contact--web {
  padding-top: 21px;
}

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