*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  background: #fff;
  padding: 2rem;
}

a {
  color: #000;
}

img {
  max-width: 100%;
  display: block;
}

/* Nav */

.site-nav {
  margin-bottom: 2rem;
  display: flex;
  gap: 1.5rem;
}

/* Artist page */

.artist {
  max-width: 700px;
}

.artist-header {
  margin-bottom: 2rem;
}

.artist-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.artist-meta {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  font-size: 0.9rem;
}

.artist-meta dt {
  display: none;
}

.artist-featured-image {
  margin-bottom: 1.5rem;
}

.artist-video {
  margin-bottom: 1.5rem;
  aspect-ratio: 16 / 9;
}

.artist-video iframe {
  width: 100%;
  height: 100%;
}

.artist-body {
  margin-bottom: 1.5rem;
}

.artist-body p {
  margin-bottom: 1rem;
}

.artist-pagination {
  margin-top: 2rem;
}

/* Table of contents */

.toc-header {
  margin-bottom: 1.5rem;
}

.toc-list {
  list-style: none;
}

.toc-entry {
  border-bottom: 1px solid #ccc;
}

.toc-link {
  display: flex;
  gap: 1.5rem;
  padding: 0.75rem 0;
  color: #000;
  text-decoration: none;
}

.toc-link:hover {
  text-decoration: underline;
}

.toc-meta {
  color: #666;
  font-size: 0.875rem;
}

/* Footer */

.site-footer {
  margin-top: 3rem;
  font-size: 0.8rem;
  color: #666;
}
