/* ── Reset & Base ──────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:        #f5f2ed;
  --surface:   #ffffff;
  --ink:       #1a1a1a;
  --ink-muted: #7a7570;
  --border:    #d8d4ce;
  --accent:    #1a1a1a;
}

html, body {
  height: 100%;
}

body {
  background-color: var(--bg);
  color: var(--ink);
  font-family: 'IBM Plex Mono', monospace;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
}

/* ── Layout ────────────────────────────────────── */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 640px;
}

/* ── Image ─────────────────────────────────────── */
.image-wrapper {
  width: 100%;
  border: 1px solid var(--border);
  overflow: hidden;
}

.image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ── Text Box ──────────────────────────────────── */
.text-box {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  text-transform: lowercase;
}

.body-text {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink);
}

.meta {
  font-size: 0.72rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ink-muted);
  margin-top: 0.25rem;
}
