
.body {
  margin-top: calc(var(--line-height-em)*3);
}

.name {
  margin-top: 0;
  margin-bottom: 0.68421053em
}

.picture {
  max-width: 100%;
  width: 400px;
  height: 400px;
  object-fit: cover;
  margin-left: 0;
  margin-right: auto;
}

@media screen and (max-width:639px) {
  .picture {
    max-height: 200px;
    object-fit: scale-down;
    margin-left: 0;
    margin-right: auto;
    display: block;
    width: auto;
  }
}

.contact-info h2 {
  margin-top: 0;
}

.overlapping-element {
  margin-top: calc(var(--line-height-em)*2);
  margin-bottom: calc(var(--line-height-em)*3);
  margin-left: calc(.75 * 70px);     /* how much of gray block juts out to the left */
}

.overlapping-element__text {
  width: calc(100%);
  overflow-wrap: break-word;
}

.overlapping-element__text::before {
  width: 70px;
  height: calc(100% + var(--line-height-em)*3);
  left: calc(-.75 * 70px);        /* 75% of width */
}


.affiliations {
  margin-bottom: calc(2.375 * 1.36842106em);
}

.person__affiliation {
  /* font-weight: var(--fw-medium); */
  font-size: var(--fs-x-small);
  margin-right: calc(var(--line-height-em)/4);
  padding: calc((var(--line-height-em) - var(--fs-small))/1.5) calc(var(--line-height-em) - var(--fs-small)) ;
  background: var(--burnt-orange);
  color: var(--white);
}


.person__research-team {
  display: block;
  margin-bottom: calc(var(--line-height-em)/2);
  /* min-width: 10em;
  background: var(--block-gray);
  padding: calc(var(--line-height-em)/4) calc(var(--line-height-em)/2);
  border-left: 5px solid var(--teal-blue);
  margin-right: 1em;
  margin-bottom: calc(var(--line-height-em)/2);
  display: inline-block; */
}


.person__topic {
  margin-bottom: calc(var(--line-height-em)/2);
}

.person__contact-item {
  justify-content: space-between;
  display: flex;
  margin-bottom: calc(var(--line-height-em)/2);
}

.person__contact__type {
  font-weight: var(--fw-book);
  width: 10em;
}


.person__contact__value-group {
  text-align: right;
  width: auto;
}

.person__contact__value-group .person__contact__value:not(:last-child)::after {
  content: ',';
  margin-right: .2em;
}

@media screen and (max-width:1100px) {
  .overlapping-element {
    margin-left: 0;
  }

  .person__contact-item {
    display: block;
  }

  .person__contact__type {
    display: block;
  }

  .person__contact__value-group {
    text-align: left;
  }
}

.external.person__website {
  margin-right: 0;
}