/* ===== Page Background ===== */
* { box-sizing: border-box; }
:root {
  --bg1: #8bd0b4;
  --bg2: #cbe5c6;
  --ink: #1b1b1b;
  --paper: #f0f0f0;
}
html, body { height: 100%; }
body {
  margin: 0;
  background: linear-gradient(180deg, var(--bg1), var(--bg2));
  color: var(--ink);
  font-family: "Libre Baskerville", Georgia, serif;
}

/* ===== Paper Sheet ===== */
.page { padding: 18px; display: grid; place-items: start center; }
.sheet {
  width: min(1200px, 96vw);
  background: var(--paper);
  border: 4px solid #000;
  box-shadow: 10px 10px 0 rgba(0,0,0,.6);
  padding: 16px;
}

/* ===== Title ===== */
.title-wrap {
  padding: 8px 10px 0;
  text-align: center;
}
.title {
  margin: 8px auto;
  padding: 14px 16px;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(28px, 3.3vw + 8px, 56px);
  line-height: 1.2;
  background: #fff;
  border: 4px solid #000;
  display: inline-block;
}

/* ===== Home Button Below Title ===== */
.under-title {
  margin-top: 10px;
}
.home-btn {
  display: inline-block;
  margin: 0 auto;
  padding: 6px 14px;
  font-family: "Libre Baskerville", serif;
  font-size: 15px;
  background: #fff;
  border: 3px solid #000;
  color: #000;
  text-decoration: none;
  box-shadow: 4px 4px 0 rgba(0,0,0,.5);
  transition: all 0.15s ease-in-out;
}
.home-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(0,0,0,.6);
}

/* ===== Date ===== */
.date {
  text-align: center;
  margin: 8px 0 0 0;
  font-size: 14px;
  font-style: italic;
  color: #333;
}

/* ===== Hero Image ===== */
.hero {
  margin: 18px auto;
  display: flex;
  justify-content: center;
}
.hero-img {
  width: 100%;
  max-width: 900px;
  border: 6px solid #000;
  box-shadow: 8px 8px 0 rgba(0,0,0,0.6);
}

/* ===== Single Column Layout ===== */
.single-col {
  margin: 6px 8px 12px 8px;
  padding: 14px 18px;
  border: 4px solid #000;
  background: #fff;
}
.single-col p {
  margin: 0 0 14px 0;
  padding-inline: 8px;
  text-align: justify;
  line-height: 1.6;
  font-size: 15px;
  hyphens: auto;
  text-indent: 2em;
}

/* ===== Caption ===== */
figcaption {
  text-align: center;
  margin-top: 12px;
  font-style: italic;
  font-weight: bold;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .single-col {
    padding: 12px 14px;
  }
  .single-col p {
    font-size: 14px;
  }
  .hero-img {
    width: 100%;
  }
}


