.authors-cards > .card {
  width: 109%;
  margin-bottom: 100px;
  padding-bottom: 10px;
  background-color: #fff;
  overflow: hidden;
  padding-left: 8px;
  white-space: normal;
}

.authors-cards > .card > .inner {
  margin-right: 35px;
  padding-top: 10px;
  display: inline-block;
  width: 270px;
  vertical-align: top;
}

.authors-cards > .card > .inner .picture {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  margin-bottom: 20px;
  margin: auto;
}

.authors-cards > .card > .inner .picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: url("data:image/svg+xml;utf8,&lt;svg xmlns='http://www.w3.org/2000/svg'&gt;&lt;filter id='grayscale'&gt;&lt;feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale");
  filter: gray;
  -webkit-filter: grayscale(100%);
}

.authors-cards > .card > .inner .desc {
  text-align: center;
  margin: 30px 0;
}

.authors-cards > .card > .inner .desc .name {
  display: block;
  margin-bottom: 15px;
  font-size: 20px;
}

.authors-cards > .card > .inner .desc .city {
  font-size: 14px;
}

.authors-cards .card_inline {
  display: inline-block;
  width: auto;
}

.authors-cards .card_inline .inner {
  margin-right: 25px;
  width: 250px;
}

.author-cards_inline {
  text-align: center;
}

.auth-btn-more,
.auth-btn {
  padding: 10px 30px;
  text-align: center;
  font-family: "Gilroy-SemiBold", "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #FFFFFF;
  border: 1px solid #000000;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.auth-btn-more:hover,
.auth-btn:hover {
  opacity: 0.7;
  color: #000000;
}

.auth-btn-more a,
.auth-btn a {
  display: inline-block;
  height: 100%;
  width: 100%;
  text-align: center;
}

.auth-btn-more i,
.auth-btn i {
  font-size: 0.8em;
  margin-left: 3px;
}

.auth-btn-more {
  display: block;
  margin: auto;
}

/* ---------------------------------------------------------------- */
.author_block {
  display: flex;
  align-items: end;
}

.author_info {
  width: 20%;
}

.author_photo {
  width: 175px;
  height: 175px;
  border: none;
  border-radius: 50%;
  object-fit: cover;
}

.author_name {
  padding-bottom: 30px;
  font-family: 'Gilroy-Bold', "Open Sans", sans-serif;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0.1em;
  color: #000000;
  text-transform: uppercase;
}

.author_name a,
.auth-btn {
  color: #000000;
}

.author_description {
  padding-top: 15px;
  padding-bottom: 45px;
  font-family: "Gilroy-SemiBold", "Open Sans", sans-serif;
  font-size: 20px;
  line-height: 30px;
  color: #000000;
}

.author_picture_slider {
  max-width: 895px;
  width: 77%;
}

.author_picture_mobile {
  display: none;
}

.image_block {
  position: relative;
  max-width: 270px;
}

.like_icon {
  position: absolute;
  bottom: 1rem;
  right: 0.75rem;
  display: none;
}

.image_block:hover .like_icon,
.like_icon:has(img[src*="heart_fill"]) {
  display: block;
}

.picture_description {
  padding-top: 1rem;
  text-align: left;
  font-size: 1rem;
}

.picture_description-author {
  font-family: "Gilroy-SemiBold", "Open Sans", sans-serif;
}

.picture_description-name {
  font-family: "TTDrugs-Regular", "Open Sans", sans-serif;
}

/* ---------------------------------------------------------------- */
/* TABLETS */
@media (max-width: 1024px) {
  .author_picture_slider {
    width: 72%;
  }
}
@media (max-width: 960px) {
  .auth-btn-more,
.auth-btn {
    padding: 5px 15px;
  }

  .author_info {
    width: fit-content;
    margin-right: 15px;
  }

  .author_picture_slider {
    width: 70%;
  }

  .image_block {
    max-width: 230px;
  }
}
/* Phones */
@media (max-width: 900px) {
  .author_block {
    flex-direction: column;
  }

  .authors-cards > .card {
    padding-left: 0;
    width: 100%;
  }

  .author_name {
    text-align: center;
  }

  .author_info {
    width: 100%;
    margin-right: 0;
    text-align: center;
  }

  .author_picture_slider {
    display: none;
  }

  .author_picture_mobile {
    display: block;
    width: 100%;
  }

  .author_picture_mobile .pictures-cards {
    padding: 0;
  }

  .author_picture_mobile .pictures-cards .card .inner .desc {
    padding-top: 0.5rem;
    padding-bottom: 0rem;
  }

  .image_block {
    max-width: 100%;
  }
}

