.author-page .inner-wrap {
  display: flex;
  width: 100%;
}
.author-page .author-avatar {
  border-radius: 140px;
  border: 4px solid #FF9F1C;
  max-width: 280px;
  margin-right: 80px;
}
.author-page .author-avatar img {
  width: 100%;
  height: auto;
  border-radius: 140px;
  margin: 0;
  display: block;
}
.author-page .author-header {
  padding-top: 64px;
}
.author-page .author-header .inner-wrap {
  align-items: center;
}
.author-page .author-info {
  width: 100%;
}
.author-page .author-info .row {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.author-page .author-info .row:first-child {
  margin-bottom: 24px;
}
.author-page .author-info h1 {
  font-size: 30px;
  line-height: 38px;
  font-weight: 500;
  letter-spacing: -0.2px;
  text-transform: uppercase;
  color: #0A1389;
  margin: 0 0 8px;
}
.author-page .author-info .position-author {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: #72516A;
}
.author-page .author-info .phrase-author {
  padding: 16px 24px;
  background-color: #FFF6EB;
  border-left: 4px solid #FF9F1C;
  border-radius: 12px;
  font-size: 16px;
  line-height: 26px;
  color: #1C1C1C;
  width: 100%;
}
.author-page h5.title-bio {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0A1389;
  margin: 0 0 20px;
}
.author-page .wrap-bio {
  padding: 80px 0;
}
.author-page .wrap-bio p {
  font-size: 16px;
  line-height: 26px;
  color: #1C1C1C;
}
.author-page .author-posts {
  background-color: #F5F6F8;
  padding: 80px 0 100px;
}
.author-page .author-posts .popular-posts-title {
  font-size: 30px;
  line-height: 38px;
  font-weight: 500;
  letter-spacing: -0.2px;
  text-transform: uppercase;
  color: #0A1389;
  position: relative;
  padding-bottom: 16px;
  margin: 0 0 48px;
}
.author-page .author-posts .popular-posts-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 180px;
  display: block;
  border-bottom: 4px solid #FF9F1C;
}
@media (max-width: 991px) {
  .author-page .author-avatar {
    max-width: 180px;
    margin-right: 30px;
  }
  .author-page .author-info .row {
    flex-direction: column;
    gap: 10px;
  }
  .author-page .author-header .inner-wrap {
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .author-page .wrap-bio {
    padding: 40px 0;
  }
  .author-page .author-posts {
    padding: 40px 0;
  }
  .author-page .author-header {
    padding-top: 30px;
  }
}