.mnr-author-section {
  padding-top: var(--page-header-padding);
  padding-bottom: var(--page-header-padding);
}

.mnr-author-bio__photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--corner-border-radius);
  aspect-ratio: 1/1;
}

.mnr-author-bio__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(51, 36, 0, 0) 0%,
    rgba(51, 36, 0, 0.5) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.mnr-author-bio__photo img {
  width: 100%;
  object-fit: contain;
}

.mnr-author-bio__name {
  margin-bottom: 20px;
  color: var(--neutral9);
}

@media (max-width: 767px) {
  .mnr-author-bio__name {
    margin-top: 20px;
  }
}

.mnr-author-bio__description {
  color: var(--neutral13);
}
