.author {
  padding: 40px 0;
}

.author__wrapper {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
  border-radius: 10px;
  background: var(--author-bg-color, var(--block-bg, #211442));
  color: var(--author-text-color, var(--text-color, #fff));
  max-width: 1025px;
  margin: 0 auto;
}

.author__image {
  width: 150px;
  max-height: 200px;
  height: auto;
  overflow: hidden;
  flex-shrink: 0;
}

.author__image-img {
  display: block;
  width: 100%;
  height: auto;
}

.author__content {
  flex: 1;
  min-width: 0;
}

.author__title {
  margin: 0 0 5px;
  color: var(--author-text-color, var(--text-color, #fff));
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.author__job {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 5px;
}

.author__job-item {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
}

.author__text {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--author-text-color, var(--text-color, #fff));
}

.author__activity {
  font-size: 14px;
  font-weight: 400;
  color: var(--author-activity-color, #999999);
}

@media screen and (max-width: 768px) {
  .author__wrapper {
    flex-wrap: wrap;
    gap: 16px;
  }
  .author__image {
    width: 100px;
  }
  .author__content {
    flex: 1 1 0;
    min-width: 0;
  }
  .author__title {
    font-size: 18px;
  }
  .author__text,
  .author__activity {
    flex: 1 1 100%;
  }
}
/*# sourceMappingURL=author.css.map */
