:root {
  --bg: #12110f;
  --ink: #ebe6dc;
  --muted: #9a9286;
  --rule: #2a2722;
}

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

html,
body {
  min-height: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2.5rem 1.25rem;
}

.frame {
  width: min(52rem, 100%);
}

figure {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--rule);
}

figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.4rem 1.5rem;
  padding: 0 0.15rem;
}

h1 {
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

p {
  color: var(--muted);
  font-size: 0.95rem;
  font-style: italic;
}
