  /* ================================
   Farben & Grundlayout
   ================================ */
:root {
  --theme: #fdfbf7;
  --entry: #ffffff;
  --primary: #2f2a2a;
  --secondary: #6d5c5c;
  --tertiary: #f6d1d8;
  --border: #f0e6e6;
}

/* Gesamter Hintergrund & Typografie */
body {
  background-color: white;
  background-image: radial-gradient(#f3eaea 1px, transparent 1px);
  background-size: 40px 40px;
  font-family: "Noto Serif JP", "Georgia", serif;
  color: grey;
  line-height: 1.85;
  font-size: 18px;
  letter-spacing: 0.01em;
  margin: 0;
}

/* ================================
   Haupt-Container begrenzen
   ================================ */
.main, .content, .wrapper, .page {
  max-width: 680px;   /* Textbreite wie in einem Buch */
  margin: 0 auto;     /* zentriert */
  padding: 0 1rem;    /* Abstand an den Seiten für mobile Geräte */
  box-sizing: border-box;
}

/* ================================
   Post-Inhalt
   ================================ */
.post-content {
  max-width: 680px;
  margin: 0 auto;
}

.post-content p {
  text-align: justify;
  text-justify: inter-word;
  margin-bottom: 1.4em;
}

.post-content p + p {
  text-indent: 1.5em;
  margin-top: 0;
}

/* Drop Cap für erste Zeile */
.post-content p:first-of-type::first-letter {
  font-size: 2.8rem;
  float: left;
  line-height: 1;
  margin-right: 10px;
  color: #8a4f5d;
}

/* ================================
   Überschriften
   ================================ */
h1, h2, h3 {
  font-weight: 500;
  line-height: 1.4;
  margin-top: 2.2em;
  margin-bottom: 0.8em;
}

.post-title {
  font-size: 2.2rem;
  letter-spacing: 0.04em;
}

.post-meta {
  color: #7a6f6f;
  font-size: 0.9rem;
}

/* ================================
   Links
   ================================ */
a {
  color: #8a4f5d;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: underline;
}

a:hover::after {
  content: " 🌸";
}

/* ================================
   Post-Einträge (Liste / Übersicht)
   ================================ */
.post-entry {
  border-radius: 12px;
  border: 1px solid;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
}

.post-entry:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Trennlinie zwischen Beiträgen, nach außen gefadet */
.post-entry::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--tertiary), transparent);
}

/* ================================
   Kirschblüten-Akzentlinie oben
   ================================ */
.main::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(to right, var(--tertiary), transparent);
  margin-bottom: 2rem;
}

/* ================================
   Blockquotes / Zitate
   ================================ */
blockquote {
  font-style: italic;
  color: #5a4f4f;
  border-left: 2px solid;
  padding-left: 1.2rem;
  margin: 2rem 0;
}

/* ================================
   Header & Footer
   ================================ */
.header {
  border-bottom: 1px solid;
}

.footer {
  opacity: 0.7;
  font-size: 0.9rem;
}