.author-card {
  display: flex;
  gap:  0px 40px;
  padding: 24px;
  background: var(--lightGrayGradient);
}

.author-card__img {
/*   grid-area: profImage; */
  width: 90px;
  min-width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow:hidden;
  vertical-align: center;
}

.author-card__img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.author-card p {
  font-size: var(--fs-20);
}

.author-card__author-name {
  font-weight: 800;
}

/* .author-card__author-name-title {
  grid-area: nameTitle;
}

.author-card__author-bio {
  grid-area: bio;
} */

@media screen and (max-width: 782px) {
  .author-card {
/* 	grid-template-areas: "profImage nameTitle" "bio bio"; */
	flex-direction: column;
  }
}