/* Страница автора — Об авторе */

.author-page {
  max-width: var(--content-max-width, 800px);
  margin: 0 auto;
}

.author-page__hero {
  background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-accent) 100%);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius);
  padding: var(--gap-large);
  margin-bottom: var(--section-spacing);
}

.author-page__hero-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--gap-large);
}

.author-page__photo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--card-border);
  flex-shrink: 0;
}

.author-page__hero-text {
  flex: 1;
  min-width: 0;
}

.author-page__title {
  font-family: var(--font-accent);
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 var(--gap-medium);
  border-bottom: 2px solid var(--accent);
  padding-bottom: var(--gap-small);
  color: var(--white);
}

.author-page__lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--white);
  margin: 0;
}

.author-page__body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.author-page__section {
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius);
  padding: var(--gap-large);
  margin-bottom: var(--gap-large);
}

.author-page__section:last-child {
  margin-bottom: 0;
}

.author-page__section-title {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 var(--gap-medium);
  border-left: 4px solid var(--accent);
  padding-left: var(--gap-medium);
  color: var(--white);
}

.author-page__section-intro {
  font-size: 1rem;
  color: var(--muted);
  margin: 0 0 var(--gap-medium);
}

.author-page__section .post-content {
  margin-top: 0;
}

.author-page__section .post-content p:first-child {
  margin-top: 0;
}

.author-page__books,
.author-page__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--gap-medium);
}

.author-page__books li,
.author-page__list li {
  position: relative;
  padding-left: var(--gap-large);
  margin-bottom: var(--gap-medium);
  line-height: 1.7;
  color: var(--white);
}

.author-page__books li::before,
.author-page__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.author-page__list--compact li {
  margin-bottom: var(--gap-small);
}

.author-page__list--compact li:last-child {
  margin-bottom: 0;
}

.author-page__section--highlight {
  background: var(--bg-accent);
  border-color: rgba(196, 93, 62, 0.25);
}

.author-page__section--highlight .author-page__section-title {
  border-left-color: var(--accent);
}

@media (max-width: 600px) {
  .author-page__hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .author-page__photo {
    width: 160px;
    height: 160px;
  }

  .author-page__title {
    font-size: 1.5rem;
  }

  .author-page__lead {
    font-size: 1rem;
  }

  .author-page__section {
    padding: var(--gap-medium);
  }

  .author-page__section-title {
    font-size: 1.25rem;
  }
}
