/* ==========================================================================
   hours.css -- opening hours
   --------------------------------------------------------------------------
   Marked up as a list because that is what it is. The original used five
   sibling <h1>s, which rendered correctly but told screen readers the page had
   five top-level headings. The visual result here is identical.

   To change the hours, edit the <li>s in index.html and docs/content.md.
   ========================================================================== */

.hours {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hours__row {
  margin: var(--stack-gap) 0 .3em;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .02em;
  text-align: center;
  text-transform: uppercase;
  color: var(--ydb-ink);
}

/* The last row's bottom margin would otherwise collapse out to the list and
   fight with the Instagram icon's own offset. */
.hours__row:last-child { margin-bottom: 0; }
