.team-member {
  box-sizing: border-box;
}

.team-member--standalone {
  width: 100%;
  display: flex;
}
.team-member--listed {
  display: none;
}

.team-member__info,
.team-member__description-container {
  flex-basis: 0;
  flex-grow: 1;
}
.team-member__portrait {
  max-width: 100%;
  height: auto;
  margin-bottom: 1em;
}
.team-member__title {
  margin: 0.75em 0em;
  font-weight: 700;
  line-height: 150%;
}
.team-member__broadcasts {
  margin-top: 1em;
  line-height: 145%;
}
.team-member__description-container {
  min-width: 50%; /* Ensure empty right hand side doesn't shrink */
  line-height: 145%;
  padding-left: 10px;
}
.team-member__description-container hr {
  margin-top: 0;
  margin-bottom: 1em;
}
.team-member__description a:link,
.team-member__description a:active,
.team-member__description a:visited,
.team-member__description a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .team-member--standalone {
    display: block;
    max-width: 360px;
  }
  .team-member__description-container {
    margin-top: 1em;
    padding-left: 0;
  }
}

@media (max-width: 568px) {
  .team-member--listed {
    display: block;
  }
  .team-member--standalone {
    display: none;
  }
}
