/* =========================================================
   Bōken-teki — Seção "Sobre o Autor" (index.html)
   ========================================================= */

.autor-card {
  display: flex;
  gap: 32px;
  align-items: center;
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.5);
  border-top: 2px solid var(--jade);
}

.autor-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.autor-texto h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.autor-texto p {
  color: var(--texto);
  line-height: 1.6;
  margin-bottom: 14px;
}

.autor-texto a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
}
.autor-texto a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .autor-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
}
