.author {
  margin: 40px 0;
}
.author__wrapper {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
  border-radius: 10px;
  background: var(--author-bg-color, #ffffff);
  color: var(--author-text-color, #000000);
}
.author__image {
  width: 150px;
  max-height: 200px;
  height: auto;
  overflow: hidden;
  flex-shrink: 0;
}
.author__image-img {
  width: 100%;
  height: auto;
}
.author__content {
  flex: 1;
}
.author__title {
  margin-bottom: 5px;
  color: var(--author-text-color, #000000);
}
.author__job {
  display: flex;
  gap: 6px;
  margin-bottom: 5px;
}
.author__job-item {
  font-weight: 600;
  font-size: 14px;
}
.author__text {
  margin-bottom: 16px;
  font-size: 16px;
  text-align: left;
  line-height: 1.6;
  color: var(--author-text-color, #000000);
}
.author__activity {
  font-size: 14px;
  font-weight: 400;
  color: var(--author-activity-color, #999999);
}

@media screen and (max-width: 768px) {
  .author__wrapper {
    position: relative;
    flex-direction: column;
    text-align: center;
  }
  .author__image {
    margin: 0;
    width: 100px;
  }
  .author__title {
    position: absolute;
    top: 75px;
    left: 135px;
    font-size: 20px;
  }
  .author__job {
    position: absolute;
    top: 100px;
    left: 135px;
  }
}/*# sourceMappingURL=author.css.map */