/* ============================================================
   HALL OF FAME — category sections, nominee cards, vote modal
   ============================================================ */

#hof-categories-wrap { background: var(--white); }

.hof-category {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px;
  border-bottom: 1px solid var(--card-border);
}
.hof-category:nth-child(even) { background: var(--beige); }
.hof-category-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.hof-category-desc {
  font-size: 0.92rem;
  color: var(--gray);
  max-width: 700px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.hof-nominee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.hof-empty-note {
  font-size: 0.9rem;
  color: var(--gray);
  font-style: italic;
}

.hof-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.hof-category:nth-child(even) .hof-card { background: var(--white); }
.hof-card:hover { box-shadow: 0 12px 32px rgba(128,0,32,0.1); transform: translateY(-3px); }

.hof-card-photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--card-border);
}
.hof-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hof-card-photo svg { width: 48px; height: 48px; }

.hof-card-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.hof-card-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--black); }
.hof-card-bio { font-size: 0.82rem; color: var(--gray); line-height: 1.5; flex: 1; }

.hof-card-votebar-track { height: 6px; border-radius: 3px; background: var(--card-border); overflow: hidden; margin-top: 4px; }
.hof-card-votebar-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--red), var(--gold)); border-radius: 3px; transition: width 0.8s cubic-bezier(0.22,1,0.36,1); }
.hof-card-stats { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--gray); font-weight: 600; }
.hof-card-stats .leading { color: var(--red); }

.hof-vote-btn {
  margin-top: 8px;
  width: 100%;
  padding: 11px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.hof-vote-btn:hover { background: var(--red-hover); }
.hof-vote-btn:disabled { background: #6b7280; cursor: default; }

.hof-vote-box .field-group { margin-bottom: 16px; }
.hof-vote-box .field-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--black); margin-bottom: 6px; }
.hof-vote-box .field-group input {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--card-border); border-radius: 8px;
  font-size: 0.9rem; font-family: 'Inter', sans-serif; background: var(--white); color: var(--black);
}
.hof-vote-box .field-group input:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(128,0,32,0.1); }

@media (max-width: 600px) {
  .hof-category { padding: 48px 16px; }
  .hof-nominee-grid { grid-template-columns: 1fr; }
}
