.box-shadow {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}

.author {
  align-items: center;
  background-color: #efeff0;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  padding: 1rem;
}
@media screen and (min-width: 576px) {
  .author {
    flex-direction: row;
  }
}
.author__img {
  width: 70px;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 16px;
}
.author__img > div {
  padding-bottom: 100%;
  background-size: cover;
  background-position: 50% 50%;
}
@media screen and (min-width: 576px) {
  .author__img {
    margin-bottom: 0;
    margin-right: 16px;
  }
}
.author__info {
  font-weight: bold;
}
.author__info:has(+ .author__bio) {
  margin-bottom: 0.4em;
}
.author__bio {
  line-height: 1.2;
  margin: 0;
}
.author__bio p:last-child {
  margin-bottom: 0;
}
