/* Universitas Scholarium — language circles
   Portable unit. Drop the .lang-circles block onto any page that has a
   translation; link this stylesheet. All circles share identical weight;
   the live one carries a single character and is clickable, the rest are
   empty placeholders awaiting future languages. */
.lang-circles {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 34px 24px 6px;
  flex-wrap: wrap;
}
.lang-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--rule, #d4c4b0);
  background: var(--parchment-light, #fdf8f0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif, 'Cormorant Garamond', Georgia, serif);
  font-size: 1.5rem;
  color: var(--ink-dim, #4d3525);
  text-decoration: none;
  padding: 0;
  cursor: default;
  transition: border-color 0.18s, color 0.18s, transform 0.18s, box-shadow 0.18s;
}
/* live (linked) circles */
a.lang-circle { cursor: pointer; }
a.lang-circle:hover {
  border-color: var(--gold, #b07d3a);
  color: var(--gold, #b07d3a);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(60, 30, 10, 0.10);
}

/* current-language circle: shown but marked active (not a link) */
.lang-circle.active {
  background: var(--gold, #b07d3a);
  border-color: var(--gold, #b07d3a);
  color: #fff;
  cursor: default;
}
.lang-circle.active:hover {
  transform: none;
  box-shadow: none;
}
