/**
 * @file public/gallery.css
 * @description Styles for the standalone Screenshot Gallery page
 *   (screenshot-gallery.html).  Reuses the help.css base layout and
 *   adds image-specific styling for large, clickable figures.
 */

body {
  background: var(--bg);
  color: var(--fg);
  font-family: Urbanist, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  padding: 2rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

h1 {
  font-family: "Space Mono", monospace;
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

h2 {
  font-family: "Space Mono", monospace;
  font-size: 26px;
  color: #e0e8ef;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

p {
  font-size: 20px;
  line-height: 1.7;
  color: #b0c4d0;
  margin-bottom: 1rem;
}

a {
  color: var(--accent);
}

a:hover {
  text-decoration: underline;
}

.gallery-intro {
  font-size: 18px;
  color: #b0c4d0;
  margin-bottom: 1.5rem;
}

.gallery-toc {
  margin: 1.5rem 0 2rem;
  padding: 1rem 1.5rem;
  background: var(--card);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 8px;
}

.gallery-toc-title {
  font-family: "Space Mono", monospace;
  font-size: 20px;
  font-weight: 700;
  color: #b0c4d0;
  margin-bottom: 0.5rem;
}

.gallery-toc ol {
  margin: 0;
  padding: 0 0 0 2.5rem;
  font-family: Urbanist, sans-serif;
  font-size: 18px;
  line-height: 1.9;
  color: #b0c4d0;
}

.gallery-toc a {
  color: var(--accent);
  text-decoration: none;
}

.gallery-toc a:hover {
  text-decoration: underline;
}

.gallery-figure {
  margin: 1rem 0 2rem;
}

.gallery-figure img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 6px;
}

.gallery-back {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgb(255 255 255 / 10%);
  font-size: 18px;
}
