/* =========================================================
   Basis
   ========================================================= */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: #f2f2f2;
  color: #222;
  line-height: 1.6;
}

/* =========================================================
   Seitenlayout
   ========================================================= */

.page-wrapper {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  padding-top: 40px;
}

/* =========================================================
   Seitenleiste
   ========================================================= */

.nav-left {
  width: 260px;
  background: #805030;
  color: #f2e6dc;
}

.nav-inner {
  padding: 28px 20px;
}

/* Seitentitel */
.blog-title {
  margin: 0 0 12px 0;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
}

.blog-title a {
  color: #fff2e6;
  text-decoration: none;
}

.blog-title a:hover {
  text-decoration: underline;
}


.blog-subtitle {
  margin: 2px 0 14px 0;
  font-size: 12px;     /* kleiner als bisher */
  line-height: 1.25;
  color: #f6eadf;
}

.nav-link {
  margin: 10px 0;   /* Abstand oben & unten */
}

.nav-left a {
  color: #f6eadf;
  text-decoration: none;
}

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

.nav-left hr {
  border: none;
  border-top: 1px solid #6a4127;
  margin: 18px 0;
}

.nav-left h3 {
  margin: 0 0 14px 0;
  font-size: 15px;
  font-weight: 600;
  color: #fff2e6;
}

.nav-recent ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-recent li {
  margin-bottom: 10px; /* GE geändert */
  font-size: 14px; /* GE geändert */
}

/* =========================================================
   Contentbereich
   ========================================================= */

.page-main {
  flex: 1;
  background: #ffffff;
}

.content {
  padding: 32px 36px;
}

/* =========================================================
   Post
   ========================================================= */

.post-title {
  margin: 0;
  font-size: 28px;
}

.post-date {
  text-align: left;
  color: #1e6bd6;
  font-size: 14px;
  font-style: italic;
  margin: 6px 0 18px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid #e0e0e0;
}

.post-separator {
  border: none;
  border-bottom: 1px solid #e0e0e0;
  margin: 12px 0 24px 0;
}

.post-content p {
  margin: 14px 0;
}

/* Über mich: gleichmäßige Abstände in Listen */
.post-content ul {
  margin: 12px 0;
  padding-left: 22px;
}

.post-content li {
  margin: 6px 0;
}

.post-content li p {
  margin: 0;
}

.post-content img {
  max-width: 720px;
  width: 100%;
  height: auto;
  display: block;
  margin: 24px auto;
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  background: transparent;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 36px;          /* etwas mehr Luft */
  background: #805030;
  color: #f2e6dc;
  font-size: 14px;
  text-align: center;
}

/* ✅ Mehr Abstand zwischen Text und Impressum-Link */
.footer-inner a {
  display: inline-block;
  margin-left: 18px;           /* Abstand nach dem Copyright */
  color: #f6eadf;
  text-decoration: none;
}

.footer-inner a:hover {
  text-decoration: underline;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 900px) {
  .page-wrapper {
    flex-direction: column;
    padding-top: 24px;
  }

  .nav-left {
    width: 100%;
  }

  .blog-title {
    font-size: 32px;
  }

  .content {
    padding: 24px;
  }

  .footer-inner {
    padding: 20px 24px;
  }

  .footer-inner a {
    margin-left: 14px;
  }
}