/* Systems page — cards + single-system detail view.
   Complements library/styles.css (dark Neo-Platonic theme). */

.systems-back a {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: rgba(232, 230, 227, 0.45);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.systems-back a:hover { color: rgba(212, 175, 55, 0.8); }

.systems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.system-card {
  display: block;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(232, 230, 227, 0.12);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s ease, background 0.25s ease;
  background: rgba(255, 255, 255, 0.01);
}

.system-card:hover {
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.03);
}

.system-card.empty {
  opacity: 0.45;
  pointer-events: none;
}

.system-card .system-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #e8e6e3;
  margin: 0 0 0.5rem 0;
}

.system-card .system-count {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(232, 230, 227, 0.45);
}

.system-card .system-blurb {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(232, 230, 227, 0.55);
  margin: 0.75rem 0 0 0;
  line-height: 1.5;
}

.system-empty-note {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  color: rgba(232, 230, 227, 0.4);
  margin: 2rem 0;
}
