.media-feature-hero-section {
  background: #F3EFE7;
  padding: 80px 20px;
}

.media-feature-hero-section .media-feature-hero-section__layout {
  display: flex;
  gap: 120px;
  justify-content: center;
}

.media-feature-hero-section .media-feature-hero-section__content {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.media-feature-hero-section .media-feature-hero-section__figure {
  width: 100%;
  max-width: 580px;
}

.media-feature-hero-section .media-feature-hero-section__figure .img-wrapper {
  box-shadow: -8.24px 16.48px 20.6px 0px #AAB8D352;
  border-radius: 40px;
  overflow: hidden;
}
.media-feature-hero-section .media-feature-hero-section__figure .img-wrapper .desktop-img {
  display: block;
}
.media-feature-hero-section .media-feature-hero-section__figure .img-wrapper .mobile-img {
  display: none;
}

.media-feature-hero-section .media-feature-hero-section__content h1 {
  font-family: PT Serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 62px;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #000000;
  margin: 0;
  margin-bottom: 24px;
}

.media-feature-hero-section .media-feature-hero-section__description p {
  font-family: Lato;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0%;
  color: #3A3A3B;
  margin: 0;
}
.media-feature-hero-section .media-feature-hero-section__reviewer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.media-feature-hero-section .media-feature-hero-section__reviewer-avatar {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 200px;
}

.media-feature-hero-section .media-feature-hero-section__reviewer-info .media-feature-hero-section__reviewer-label {
  font-family: Lato;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #000000;
}

.media-feature-hero-section .media-feature-hero-section__reviewer-info .media-feature-hero-section__reviewer-label .media-feature-hero-section__reviewer-link {
  font-family: Lato;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0%;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 0%;
    color: #000;
}

.media-feature-hero-section .media-feature-hero-section__reviewer-meta-label {
  font-family: Lato;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 6%;
  text-transform: uppercase;
  color: #564B26;
}

.media-feature-hero-section .media-feature-hero-section__reviewer-meta-specialties {
  font-family: Lato;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 6%;
  text-align: justify;
  text-transform: uppercase;
  margin: 0;
  color: #949496;
}

@media screen and (max-width: 767px) {
  .media-feature-hero-section {
    padding: 0;
  }

  .media-feature-hero-section .media-feature-hero-section__figure .img-wrapper {
    border-radius: 0px;
    box-shadow: none;
  }


  .media-feature-hero-section .media-feature-hero-section__figure .img-wrapper .desktop-img {
    display: none;
  }

  .media-feature-hero-section .media-feature-hero-section__figure .img-wrapper .mobile-img {
    display: block;
  }

  .media-feature-hero-section .media-feature-hero-section__layout {
    flex-direction: column-reverse;
    gap: 0;
  }
  .media-feature-hero-section .media-feature-hero-section__content {
    padding: 40px 20px;
  }

  .media-feature-hero-section .media-feature-hero-section__content h1 {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 20px;
  }

  .media-feature-hero-section .media-feature-hero-section__description p {
    font-size: 16px;
    line-height: 24px;
  }
  
  .media-feature-hero-section .media-feature-hero-section__reviewer-info .media-feature-hero-section__reviewer-label,
  .media-feature-hero-section .media-feature-hero-section__reviewer-info .media-feature-hero-section__reviewer-label .media-feature-hero-section__reviewer-link {
    font-size: 16px;
    line-height: 24px;
  }

  .media-feature-hero-section .media-feature-hero-section__reviewer-info .media-feature-hero-section__reviewer-label .media-feature-hero-section__reviewer-link {
    display: block;
  }

  .media-feature-hero-section .media-feature-hero-section__reviewer-avatar {
    width: 72px;
    height: 72px;
    min-width: 72px; 
  }

  .media-feature-hero-section .media-feature-hero-section__reviewer {
    align-items: flex-start;
  }

  .media-feature-hero-section .media-feature-hero-section__reviewer-meta-label {
    font-size: 13px;
  }

  .media-feature-hero-section .media-feature-hero-section__reviewer-meta-specialties {
    font-size: 10px;
    letter-spacing: 4%;
  }
}