.iea-author-box {
  margin-top: 40px;
  overflow: auto;
  border: 1px solid #ccc;
  padding: 10px;
  position: relative;  
}

.iea-credentials {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.iea-credentials span.label {
  font-weight: bold;
}

.posted-by a {
  margin-left: 4px;
}

.iea-author-bio {
  clear: left;
}

#vitals {
  margin: 0;
  list-style-type: none;
}
#vitals li {
  margin-bottom: 6px;
}
#vitals span {
  font-weight: bold;
}

.entry-meta > ::after {
  margin-left: .5rem;
  margin-right: .5rem;
  content: "";
  display: inline-block;
  background-color: currentColor;
  height: .25rem;
  width: .25rem;
  opacity: .8;
  border-radius: 9999px;
  vertical-align: .1875em;
}

.entry-meta .last::after {
  background-color: transparent;
}

.entry-meta .button {
  margin-right: 16px;
}

.entry-meta .button::after {
  content: unset;
}

#contributor-author-posts h2 {
  margin: 2rem 0;
}

#contributor-author-posts article {
  padding: 1rem;
  background-color: #fff;
  overflow: auto;
  margin: 2rem 0;
  box-shadow: 0px 15px 15px -10px rgba(0,0,0,0.05);
  border-radius: .25rem;
}

#author-social-icons {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
#author-social-icons a {
  text-decoration: none;
  margin-left: 1rem;
}

/**
 * Tabs
 */
.topher-tabs {
  display: flex;
  flex-wrap: wrap; // make sure it wraps
}
.topher-tabs label {
  order: 1; // Put the labels first
  display: block;
  margin-right: 0.2rem;
  cursor: pointer;
  background: #90CAF9;
  font-weight: bold;
  transition: background ease 0.2s;
  z-index: 2;
  position: relative;
  border: 1px solid #90CAF9;
  border-bottom: 1px solid #fff;
  border-radius: 6px 6px 0 0;
  padding: .5rem 2rem;
  margin-bottom: -1px;
}
.topher-tabs .tab {
  order: 99; // Put the topher-tabs last
  flex-grow: 1;
  width: 100%;
  display: none;
  padding: 1rem;
  background: #fff;
  border: 1px solid #90CAF9;
  position: relative;
  z-index: 1;
}
.topher-tabs input[type="radio"] {
  display: none;
}
.topher-tabs input[type="radio"]:checked + label {
  background: #fff;
}
.topher-tabs input[type="radio"]:checked + label + .tab {
  display: block;
}

@media (max-width: 45em) {
  .topher-tabs .tab,
  .topher-tabs label {
    order: initial;
  }
  .topher-tabs label {
  width: 100%;
    margin-right: 0;
    margin-top: 0.2rem;
  }
}
