/* Similar Readers Section */
.similar-readers-section {
  max-width: 1000px;
  margin: 2rem auto 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-family: Georgia, 'Times New Roman', serif;
}

.readers-grid {
  display: grid;
  gap: 1rem;
}

/* Reader Card */
.reader-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.reader-card-link:hover {
  text-decoration: none;
}

.reader-card-link:hover .reader-card {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.reader-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s;
}

.reader-card.has-matches {
  border-left: 4px solid var(--warm-primary);
}

.reader-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.reader-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.reader-info {
  flex: 1;
}

.reader-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.match-badge {
  display: inline-block;
  background: var(--warm-light);
  color: var(--warm-primary);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.reader-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.stars-display {
  display: flex;
  gap: 0.15rem;
}

.stars-display .star {
  color: var(--warm-secondary);
  font-size: 1.1rem;
}

.stars-display .star.empty {
  color: #e8e8e8;
}

.rating-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-medium);
}

/* Shared Books */
.shared-books {
  padding-top: 1rem;
  border-top: 1px solid #f0f0f0;
}

.shared-books-label {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.books-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.book-tag {
  display: inline-block;
  background: #f8f9fa;
  color: var(--text-dark);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid #e8e8e8;
}

.book-tag.more {
  background: var(--warm-light);
  color: var(--warm-primary);
  font-weight: 600;
  cursor: default;
}

/* Responsive */
@media (max-width: 768px) {
  .reader-header {
    flex-direction: column;
    gap: 1rem;
  }
  
  .reader-rating {
    align-items: flex-start;
  }
}
