/* =================================================================
   MT. PELLIER DOMINO CLUB — Site-Specific Overrides
   Inherits everything from encyclopedia.css.
   Only site-specific adjustments go here.
   ================================================================= */

/* Site-specific image placeholder gradients (until real photos sourced) */
.hero-placeholder {
  width: 100%;
  height: 200px;
  border-radius: 6px;
  margin-bottom: 24px;
  background: linear-gradient(135deg,
    #2C2416 0%,
    #3D5A3A 40%,
    #5A7A4A 70%,
    #B8860B 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-placeholder-text {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
}

/* Source citation style */
.source-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.source-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}
.source-list li:last-child {
  border-bottom: none;
}
.source-pub {
  font-weight: 600;
  color: var(--text-primary);
}
.source-date {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: 8px;
}
