.author-info {
  display: grid;
  grid-gap: 1em;
  align-items: center;
  text-wrap: wrap;
  text-align: center;
}
.author-info .author-pic {
  text-align: center;
  overflow: hidden;
  border-radius: 100%;
  display: block;
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.author-info .author-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-info h1 {
  display: none;
}
.author-info .author-name {
  font-weight: var(--font-weight-bold);
  line-height: var(--heading-line-height);
}
.author-info .author-social {
  display: flex;
  gap: 1.2em;
  font-size: 1.2em;
  justify-content: center;
}
.author-info .author-social a:hover {
  color: var(--color-primary);
}
.author-info .author-link {
  font-size: 1em;
}
.author-info .author-link:hover {
  color: var(--color-primary);
}

.tooltip-container .author-info,
.authors-wrapper-condensed .author-info {
  grid-template-columns: auto 1fr;
  text-align: left;
}
.tooltip-container .author-info .author-pic,
.authors-wrapper-condensed .author-info .author-pic {
  width: 45px;
  height: 45px;
  margin: 0;
}
.tooltip-container .author-info .author-social,
.authors-wrapper-condensed .author-info .author-social {
  justify-content: left;
}
.tooltip-container .author-info .author-desc,
.authors-wrapper-condensed .author-info .author-desc {
  line-height: 1.35;
}
.tooltip-container .author-info .author-desc,
.tooltip-container .author-info .author-link,
.tooltip-container .author-info .author-social,
.authors-wrapper-condensed .author-info .author-desc,
.authors-wrapper-condensed .author-info .author-link,
.authors-wrapper-condensed .author-info .author-social {
  grid-column: span 2;
}

.author-header {
  padding: 4em 0;
}
.author-header h1 {
  display: block;
  padding: 0;
}
.author-header a.author-name,
.author-header a.author-link {
  display: none;
}

.site-main .author-posts h3 {
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 1em;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 1em;
}

.post-bottom .author-info {
  background: var(--color-bg-gradient-light);
  padding: 2em;
  border-radius: var(--border-radius-large);
  margin-bottom: 1em;
}
.post-bottom .author-info a.author-name {
  font-size: 1.7em;
  color: var(--color-tertiary);
  font-family: var(--font-stack-heading);
}
.post-bottom .author-info .avatar-left-big {
  font-size: 0.85em;
}

.avatar-left-big {
  display: grid;
  grid-gap: 1em;
}

.authors-wrapper {
  display: grid;
  grid-gap: 2em;
  grid-template-columns: 1fr;
  margin: 1em 0;
}
.authors-wrapper .author-info {
  background: var(--color-light);
  padding: 1.5em;
  border-radius: var(--border-radius-large);
  display: grid;
  grid-template-rows: auto 1fr auto auto;
}
.authors-wrapper .author-info .author-desc {
  align-self: flex-start;
  line-height: var(--body-line-height);
}

.team-wrapper .author-name {
  font-family: var(--font-stack-heading);
  line-height: var(--heading-line-height);
  font-size: 1.5em;
  display: block;
}
.team-wrapper .team--position {
  line-height: var(--heading-line-height);
  margin-top: 0.5em;
  font-size: 0.9em;
}

@media screen and (min-width: 768px) {
  .author-header .author-info,
  .post-bottom .author-info {
    grid-template-columns: auto 1fr;
    grid-gap: 0.5em 2.5em;
    text-align: left;
    align-items: flex-start;
  }
  .author-header .author-info .author-social,
  .post-bottom .author-info .author-social {
    justify-content: left;
  }
  .authors-wrapper-condensed .author-info {
    grid-column-gap: 1.5em;
    padding: 2em;
  }
  .authors-wrapper-condensed .author-info a.author-name {
    font-size: 1.5em;
    font-weight: var(--font-weight-bold);
    color: var(--color-tertiary);
    font-family: var(--font-stack-heading);
  }
  .authors-wrapper-condensed .author-info .author-pic {
    width: 120px;
    height: 120px;
  }
  .team-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .team-wrapper .author-info:nth-child(1) {
    grid-column: span 2;
  }
}
@media screen and (min-width: 1024px) {
  .authors-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .authors-wrapper-condensed .author-info a.author-name {
    font-size: 1.5em;
  }
  .authors-wrapper-condensed .author-info .author-pic {
    width: 100px;
    height: 100px;
  }
  .team-wrapper {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }
  .team-wrapper .author-info:nth-child(1),
  .team-wrapper .author-info:nth-child(2) {
    grid-column: span 3;
  }
  .team-wrapper .author-info {
    grid-column: span 2;
  }
}

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