/* :root { */
  /* font-size: 100%; */
/* } */

.info-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.main-container {
  padding: 1.5rem;
}

@media(min-width: 1280px) {
  .main-container {
    width: 80%;
  }
  .info-row {
    flex-direction: row;
    gap: 2rem;
  }
}

@media(min-width: 1536px) {
  .main-container {
    width: 60%;
  }
}

/*
 * Source - https://stackoverflow.com/a/21909808
 * Posted by Hashem Qolami, modified by community. See post 'Timeline' for change history
 * Retrieved 2026-08-11, License - CC BY-SA 4.0
 */

ol.toc-list {
  counter-reset: section;
  list-style-type: none;
  margin-bottom: 0;
}

li.toc-item:before {
  counter-increment: section;
  content: counters(section, ".") ". ";
}
