/* Base reset */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "EB Garamond", Georgia, serif;
  background: #f9f8f6;
  color: #1a1a1a;
  line-height: 1.7;
}

/* Layout */
header,
main,
footer {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

header h1 {
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
}

header p {
  margin-top: 0;
  color: #555;
}

nav {
  margin-top: 1rem;
  font-size: 0.9rem;
}

nav a {
  color: #333;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

/* Exhibits */
.exhibit {
  margin: 3rem 0;
  padding-top: 2rem;
  border-top: 1px solid #ddd;
}

.exhibit h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.metadata {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.metadata span + span::before {
  content: " · ";
}

/* Content */
.content p {
  margin-bottom: 1.25rem;
}

/* Footer */
footer {
  font-size: 0.8rem;
  color: #777;
  border-top: 1px solid #ddd;
}

