/*
 * Accessibility at the Wheeler — /accessibility/.
 *
 * Loaded only on this route, by the page-{slug}.css convention in
 * functions.php (wheeler_assets()). Two small additions beyond the shared
 * vocabulary:
 *
 * 1. A plain informational bullet list. Nothing else in the theme needed
 *    one yet — every other list in theme.css is a card grid (.bill, .also,
 *    .venue-strip) — so there is no existing pattern to match. Styled as a
 *    small square mark in the rule colour rather than the browser default
 *    disc, in the same family as the dentil course.
 *
 * 2. The box office phone number under "Tell Us What You Need" is set a
 *    size and weight up from body text. It is the one piece of information
 *    on this page that turns into an actual seat, so it gets to be the
 *    thing the eye lands on first in that section.
 */

.prose ul {
  list-style: none;
  margin: 0 0 1.1em;
  padding-left: 0;
}

.prose li {
  position: relative;
  margin-bottom: 0.6em;
  padding-left: 1.4em;
}

.prose li:last-child { margin-bottom: 0; }

.prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  background: var(--stone-600);
}

.a11y-contact {
  margin-bottom: 1.1em;
  font-size: var(--step-1);
  font-weight: 650;
}
