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

body {
  font-family: Georgia, "Times New Roman", serif;
  color: #1a1a1a;
  background: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  padding: 16px 20px;
}

.site-header a {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: -0.02em;
}

.site-header a:hover { text-decoration: underline; }

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 20px 48px;
}

figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
}

figure img,
figure video {
  max-width: min(640px, 92vw);
  max-height: 68vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  background: #000;
}

figcaption {
  margin-top: 14px;
  font-size: 14px;
  color: #666;
}

.panel-nav {
  margin-top: 28px;
  display: flex;
  gap: 24px;
  font-size: 14px;
}

.panel-nav a {
  color: #666;
  text-decoration: none;
}

.panel-nav a:hover { text-decoration: underline; color: #1a1a1a; }
.panel-nav span { color: #ccc; }
