.author-wrapper {
    display: flex;
    background-color: #fafafa;
    margin-top: 40px;
}

.author-wrapper h2 {
    font-size: 20px;
    font-weight: 700;
    color: #383838;
}

.author-wrapper .left {
    flex: 0 0 24%;
    padding: 32px;
    align-self: center;
}

.author-wrapper .name{
    margin-bottom: 16px;
	color: #CD172D;
}

.author-wrapper .left .image-wrapper{
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;          /* keeps crop clean */
  border-radius: 50%;        /* if you want a circle */
}


.author-wrapper .left .image-wrapper img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.author-wrapper .right {
    flex: 1;
    padding: 24px;
    padding-left: 16px;
    padding-right: 32px;
}

.author-wrapper .right p.short-bio {
    margin-bottom: 0px;
    overflow: hidden;
}

.author-wrapper .heading{
    display: flex;
    justify-content: space-between;
}

.author-wrapper .heading .social-media-links{
    margin-top: 8px;
}

.author-image-wrapper{
  display: none;
}

@media(max-width: 767px){
  .author-wrapper .left{
    display: none;
  }

  .author-image-wrapper{
    display: block;
    aspect-ratio: 1 / 1;
    max-width: 56px;
    border-radius: 8px;
    overflow: hidden;
  }

  .author-image-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
  }

  .author-details{
    display: flex;
    gap: 8px;
  }

  .author-details p.name{
    margin-bottom: 0px;
  }

  .author-wrapper .heading{
    margin-bottom: 16px;
  }
}