/* Our Favorite Fascists page */
.fascists-page {
  padding: 48px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.fascists-page .section-title {
  color: var(--color-red);
  margin-bottom: 8px;
}

.fascists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px;
}

.fascist-card {
  background: var(--color-white);
  border-radius: 6px;
  border-top: 4px solid var(--color-red);
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.fascist-card-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #bbb;
}

.fascist-card-photo.img-placeholder {
  width: 100%;
  height: 200px;
}

.fascist-card-body {
  padding: 18px;
  flex: 1;
}

.fascist-card-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-red);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.fascist-card-era {
  font-size: 0.78rem;
  color: #888;
  font-style: italic;
  margin-bottom: 10px;
}

.fascist-card-bio {
  font-size: 0.875rem;
  color: #444;
  line-height: 1.6;
}

@media (max-width: 1023px) {
  .fascists-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 639px) {
  .fascists-grid { grid-template-columns: 1fr; }
}
