.author-card {
  display: block;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  transition: transform .2s, box-shadow .2s;
}


.author-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}


.author-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}


.author-section {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255,255,255,0.75);
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  padding: 20px;
  height: 50vh;
  display: flex;
  flex-direction: column;
}


.author-scroll {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-right: 8px;
}


.author-detail-container {
  max-width: 800px;
  margin: 10px auto;
  padding: 1px 20px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  text-align: center;
}


.author-name {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 8px;
}


.author-about {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(0,0,0,0.7);
  margin-bottom: 5px;
}


.all-poems-header {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}
