/* PaxHelios — Author page */

.author-page { padding-bottom: 0; }

.author-hero {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.author-hero-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .author-hero-grid { grid-template-columns: 1fr; } }

.author-photo-frame {
  width: 280px; height: 350px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-cover);
  transform: rotate(-2deg);
}
.author-photo-frame svg { width: 100%; height: 100%; }

.author-stats {
  display: inline-flex;
  align-items: center; gap: 24px;
  margin-top: 32px;
  background: rgba(255,255,255,.4);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--r-pill);
  padding: 14px 28px;
}
.ast-val { font-family: var(--font-display); font-size: 26px; line-height: 1; }
.ast-lbl { font-size: 11px; opacity: .7; margin-top: 2px; }
.ast-divider { width: 1px; height: 32px; background: rgba(0,0,0,.15); }

.author-quote-section { background: var(--bg); }

/* Q&A */
.qa-list { display: flex; flex-direction: column; gap: 8px; }
.qa {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.qa summary {
  display: grid;
  grid-template-columns: 40px 1fr 30px;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  cursor: pointer;
  list-style: none;
}
.qa summary::-webkit-details-marker { display: none; }
.qa-n { font-family: var(--font-display); font-size: 22px; color: var(--accent); }
.qa-q { font-family: var(--font-display); font-size: 22px; color: var(--ink); }
.qa-chev { transition: transform var(--dur) var(--ease); color: var(--ink-3); }
.qa[open] .qa-chev { transform: rotate(180deg); }
.qa-a {
  padding: 0 28px 28px 84px;
  font-family: var(--font-serif);
  font-size: 17px; line-height: 1.65;
  color: var(--ink-2);
  margin: 0;
}

/* Other authors */
.other-authors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .other-authors { grid-template-columns: repeat(2, 1fr); } }

.other-author {
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  transition: transform var(--dur) var(--ease);
}
.other-author:hover { transform: translateY(-4px); }
.oa-portrait {
  width: 96px; height: 96px;
  border-radius: 50%;
  overflow: hidden;
}
.oa-portrait svg { width: 100%; height: 100%; }
