.author-profile {
  padding: 24px var(--container-padding);
}

.author-profile__inner {
  width: min(100%, var(--container-max));
  margin: 0 auto;
  display: flex;
  gap: 32px;
  justify-content: center;
}

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

.author-profile__item img {
  width: 160px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.author-profile__item p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text-primary);
  margin: 8px 0 0;
}

@media (max-width: 599px) {
  .author-profile__inner {
    gap: 20px;
  }

  .author-profile__item img {
    width: 120px;
    height: auto;
  }
}
