/* Seite /autor/ (views/autor.tsx): Foto, Kurzvorstellung und Eckdaten oben,
   Fließtext darunter. Farben wie die übrigen Boxen der Seite (platform-cta.css,
   theme.css: .EndBox) — Akzent #FFB424, Dunkelblau #19333f. */

.autor-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  margin: 0.4em 0 2.2em;
  padding: 28px;
  border: 1px solid #e3e9f0;
  border-radius: 16px;
  background: linear-gradient(155deg, #ffffff, #edf5ff);
  box-shadow: 0 2px 6px rgba(25, 51, 63, 0.08), 0 18px 40px -28px rgba(25, 51, 63, 0.5);
}

.autor-photo {
  flex: none;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 4px #ffffff, 0 6px 20px -8px rgba(25, 51, 63, 0.45);
}

.autor-hero-body {
  flex: 1 1 280px;
  min-width: 240px;
}

.autor-tagline {
  margin: 0 0 14px;
  color: #19333f;
  font-size: 1.1rem;
  line-height: 1.5;
}

.autor-facts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.autor-facts li {
  display: flex;
  gap: 8px;
  font-size: 0.96rem;
  line-height: 1.4;
  color: #333f4d;
}

.autor-facts li::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  margin-top: 0.4em;
  border-radius: 50%;
  background: #ffb424;
}

@media (max-width: 600px) {
  .autor-hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 20px;
  }
  .autor-photo {
    width: 128px;
    height: 128px;
  }
}
