/* --- the decans -----------------------------------------------------------------
   Three rings inside the signs: the decans with their rulers' glyphs, the
   terms tinted by their planet, and the bodies. Planet colours stay inside
   the drawing; gold outlines the decan being read, through both inner rings.
   ------------------------------------------------------------------------- */

.dec__sector {
  fill: var(--ink-deep);
  stroke: var(--line);
  stroke-width: 1.2;
  cursor: pointer;
  transition: fill 140ms linear;
}
.dec__sector:hover { fill: var(--ink-mid); }

.dec__term { fill-opacity: 0.24; stroke: var(--line); stroke-width: 1; }
.dec__signline { fill: none; stroke: var(--line-field); stroke-width: 2; }
.dec__lit { fill: none; stroke: var(--sol); stroke-width: 3; stroke-linejoin: round; }

.dec__bodytick { stroke: var(--paper-mute); stroke-width: 1.2; }
.dec__asc {
  fill: var(--paper);
  font-family: var(--font-body);
  font-size: 22px;
}

.dec__name {
  fill: var(--paper);
  font-family: var(--font-display);
  font-size: 54px;
}
.dec__line {
  fill: var(--paper-dim);
  font-family: var(--font-body);
  font-size: 26px;
  font-variant-numeric: tabular-nums;
}
.dec__ruler { fill: var(--sol-lift); }
/* a decan can hold four terms, so this line is kept small enough to stay
   clear of a planet stepped inward */
.dec__small {
  fill: var(--paper-mute);
  font-family: var(--font-body);
  font-size: 19px;
}

.dec__probe {
  margin: 0 auto;
  max-width: 46ch;
  text-align: center;
  font-size: var(--step-0);
  color: var(--paper);
  min-height: 1.6em;
}

.dec__note:empty { display: none; }

@media (prefers-reduced-motion: reduce) {
  .dec__sector { transition: none; }
}
