.team section {
  border-top: 1px solid var(--color-primary);
  padding-top: 1.4em;
  margin-bottom: 1em;
}

.team section:after { /* clearfix */
  content: '';
  display: block;
  clear: both;
  width: 0;
  height: 0;
}


.team section h2 {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.2;
}

.team section p {
  margin: var(--margin-bottom) 0;
}

.team section img {
  outline: 1px solid rgba(0,0,0,0.25);
  max-width: 100%;
  height: auto;
}


@media (min-width: 767px) {
  .team section > div {
    max-width: 50%;
    box-sizing: border-box;
  }

  .team section img {
    max-width: 50%;
  }


  .team section:nth-child(odd) > div {
    float: left;
    padding-right: 11px;
  }

  .team section:nth-child(odd) img {
    float: right;
  }


  .team section:nth-child(even) > div {
    float: right;
    padding-left: 11px;
  }

  .team section:nth-child(even) img {
    float: left;
  }
}

