.author-detail-container {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 30px 20px;
  background: #fff;
}

.author-detail-wrapper {
  display: flex;
  margin: 0 auto;
  flex-direction: column;
  text-align: center;
}

.author-detail-container .author-avatar img {
  width: 129px;
  height: 129px;
  margin-bottom: 20px;
}

.author-detail-container .author-detail-info-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.author-detail-container .author-detail-info-wrapper .author-info {
  margin-bottom: 20px;
  font-size: 6.2vw;
  display: ruby;
}

.author-detail-container .author-detail-info-wrapper .author-info a{
  font-size: inherit;
}

.author-detail-container .author-detail-info-wrapper .author-bio {
  margin-bottom: 32px;
  font-size: 5vw;
  color: #394157;
}


.author-detail-container .author-detail-info-wrapper a{
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: flex-start;
  color: #051235;
  font-weight: 700;
  text-decoration: underline;
  font-size: 5.5vw;
}

.author-detail-container .author-detail-info-wrapper .author-detail-cta::after {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url("https://useinsider.com/wp-content/themes/useinsider/assets/img/diagonal-arrow.svg");
  background-size: cover;
  margin-left: 10px;
  display: none;
}

/* Responsive */
@media only screen and (min-width:768px){
  .author-detail-container .author-detail-info-wrapper .author-detail-cta::after{
    display: block;
  }
  .author-detail-container .author-detail-info-wrapper .author-detail-cta{
    font-size: 20px;
  }
  .author-detail-container .author-detail-info-wrapper .author-bio {
    font-size: 18px;
  }
  .author-detail-container .author-detail-info-wrapper .author-info {
    font-size: 20px;
  }
}

@media only screen and (min-width:1024px){
  .author-detail-container{
    padding: 50px 20px;
  }
  .author-detail-wrapper{
    text-align: left;
    max-width: 1170px;
    flex-direction: row;
    align-items: center;
    column-gap: 20px;
  }
  .author-detail-container .author-avatar img {
    width: 188px;
    height: 188px;
    margin-bottom: 0;
  }
  .author-detail-container .author-detail-info-wrapper{
    align-items: flex-start;
  }
}
