.uniespiritas-author-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.author-card {
  display: flex;
  align-items: flex-start;
  background: #f8f9fa;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  gap: 20px;
  transition: box-shadow 0.3s ease;
}

.author-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.author-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-card-content {
  flex: 1;
}

.author-card h3 {
  margin: 0 0 0.3em;
  font-size: 1.2em;
}

.author-card p {
  font-size: 0.95em;
  color: #555;
  margin: 0.3em 0 0.5em;
}

.author-card a {
  display: inline-block;
  color: #0073aa;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.author-card a:hover {
  color: #004c75;
}