/*Autor profile*/

.mnr-author-profile-card {
  background: var(--neutral3);
  border: 1px solid var(--neutral5);
  border-radius: var(--corner-border-radius);
  padding: 24px;
  margin-top: 32px;
}

@media (max-width: 767px) {
  .mnr-author-profile-card {
    text-align: center;
  }
}

.mnr-author-profile-card .author-title {
  margin-top: 0;
  color: var(--neutral13);
  font-family: var(--main-font);
}

.mnr-author-profile-card .author-title,
.mnr-author-profile-card .author-short-bio {
  margin-bottom: 12px;
}

.mnr-author-profile-card .author-title:hover {
  color: var(--secondary);
}

.mnr-author-profile-card .author-photo {
  float: left;
  margin: 10px 20px 0 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--corner-border-radius);
}

.mnr-author-profile-card .author-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-profile-card .author-profile-link {
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .mnr-author-profile-card .author-profile-link {
    justify-content: center;
    gap: 15px;
  }
}

.author-profile-link__item:not(:last-of-type) {
  margin-right: 15px;
}

@media (max-width: 767px) {
  .author-profile-link__item:not(:last-child) {
    margin-right: 0;
  }

  .mnr-author-profile-card .author-photo {
    float: none;
    margin: 0 0 16px 0;
    text-align: center;
  }
}
