/* Article table of contents */
.article-toc {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.article-toc-link {
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.article-toc-link:hover {
  opacity: 0.7;
}

button.article-toc-link {
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  text-align: left;
  width: 100%;
  cursor: pointer;
  padding: 0;
}

.article-toc-link.is-active {
  opacity: 1;
}

/* 5rem scroll offset for anchored h2s */
.richtext--project h2 {
  scroll-margin-top: 5rem;
}

/* Side-by-side figures when two appear in a row */
.richtext--figure-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 991px) {
  .richtext--figure-grid {
    grid-template-columns: 1fr;
  }
}
