/* ══════════════════════════════════════════════════
   apes_about.css — About / static page styles
   Requires: apes_base.css
══════════════════════════════════════════════════ */

/* ── Page wrapper ── */
.author-wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 4rem;
}

/* ── Page heading ── */
.author-page-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin-bottom: 0.5rem;
}

.author-page-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 2.5rem;
}

/* ── Photo + intro block ── */
.author-hero {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.author-photo-col {
  flex-shrink: 0;
  width: 190px;
}

.author-photo {
  width: 100%;
  display: block;
  border-radius: 2px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.13);
}

.author-photo-caption {
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  font-weight: 300;
  color: var(--muted);
  text-align: center;
  margin-top: 0.6rem;
  letter-spacing: 0.06em;
}

/* ── Bio text ── */
.author-bio {
  flex: 1;
}

.author-bio p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 1.1rem;
}

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

/* ── Award / callout block ── */
.author-award {
  border-left: 3px solid var(--accent);
  margin: 2.5rem 0;
  padding: 1rem 1.5rem;
  background: var(--header-bg);
}

.author-award-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.author-award p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

/* ── Divider ── */
.author-divider {
  border: none;
  border-top: 0.6px solid var(--accent);
  margin: 2.5rem 0;
}

/* ── Earlier works ── */
.author-works-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.author-works p {
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}

.author-works a { color: var(--ink-soft); }
.author-works a:hover { color: var(--accent); }

/* ── Contact nudge ── */
.author-contact {
  margin-top: 2rem;
  text-align: center;
}

.author-contact p {
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.author-contact-link {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.author-contact-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ── Responsive ── */
@media (max-width: 520px) {
  .author-hero {
    flex-direction: column;
    align-items: center;
  }

  .author-photo-col { width: 160px; }
  .author-bio       { text-align: left; }
}
