.post_author_inside {
  display: none;
}

.wp-block .post_author_inside {
  display: block;
}

.post_author_inside .author {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0;
}

.post_author_inside .author__photo {
  width: 80px;
  height: 80px;
  border-radius: 0;
  background-size: cover;
  background-position: center;
  margin-right: 20px;
  min-width: 80px;
  filter: saturate(0.5);
  background-color: #ccc;
  background-blend-mode: luminosity;
  mix-blend-mode: luminosity;
}

.post_author_inside .author-label {
  border-radius: 0;
  background: #f4f4f4;
  display: flex;
  padding: 4px 12px 4px 12px;
  justify-content: center;
  align-items: center;
  color: #414141;
  font-feature-settings: "clig" off, "liga" off;
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 10px;
  width: fit-content;
  transition: 0.3s;
  text-decoration: none;
}

.post_author_inside .author-label:hover {
  background: #e1e1e1;
  text-decoration: none;
}

.post_author_inside .author__name {
  color: #414141;
  font-feature-settings: "clig" off, "liga" off;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  margin-bottom: 8px;
  display: inline-block;
  text-decoration: none;
}

.post_author_inside .author__name:hover {
  text-decoration: none;
}

.post_author_inside .author__job {
  color: #414141;
  font-feature-settings: "clig" off, "liga" off;
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-decoration: none;
}

.post_author_inside .author__job:hover {
  text-decoration: none;
}
.post_author_inside .author__data {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1200px) {
  .post_author_inside {
    display: block;
  }
  .post_author_inside .author__name {
    letter-spacing: 0;
  }
}
@media screen and (max-width: 767px) {
  .post_author_inside .author__photo {
    margin-right: 16px;
  }

  .post_author_inside .author-label {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .post_author_inside .author__name {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .post_author_inside .author__job {
    font-size: 14px;
  }
}
