html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(135deg,
    var(--verlauf-start, #0f2027),
    var(--verlauf-mitte, #203a43),
    var(--verlauf-ende, #2c5364)) fixed;
  font-family: Georgia, 'Times New Roman', serif;
  color: #eef2f5;
  line-height: 1.7;
}

.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 2rem;
  max-width: 46rem;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 0;
}

.site-title {
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: #eef2f5;
  text-decoration: none;
}

.site-header nav a {
  margin-left: 1.2rem;
  color: var(--akzent, #9fc1d4);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-header nav a:first-child { margin-left: 0; }
.site-header nav a:hover, .site-header nav a.active { color: #eef2f5; }

main {
  max-width: 46rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

.hero { text-align: center; padding: 3rem 0 1rem; }
.hero h1 {
  font-size: clamp(2.2rem, 7vw, 4rem);
  font-weight: normal;
  letter-spacing: 0.04em;
  margin: 0;
}

.line {
  width: 70px;
  height: 1px;
  background: #7fa8bd;
  margin: 1.5rem auto;
}

h1, h2, h3 { font-weight: normal; letter-spacing: 0.03em; }
.prose h1 { font-size: 2rem; margin-top: 0; }

a { color: var(--akzent, #9fc1d4); }
a:hover { color: #eef2f5; }

.post-list { list-style: none; padding: 0; }
.post-list li { margin: 0.7rem 0; }
.post-list a { text-decoration: none; font-size: 1.1rem; }
.post-list a:hover { text-decoration: underline; }

.post-date {
  display: inline-block;
  min-width: 6.5rem;
  color: #7fa8bd;
  font-size: 0.9rem;
}

.recent h2 { margin-top: 3rem; font-size: 1.3rem; }

blockquote {
  margin: 1.5rem 0;
  padding-left: 1rem;
  border-left: 2px solid #7fa8bd;
  color: #c9d8e2;
}

img { max-width: 100%; height: auto; border-radius: 4px; }

code, pre {
  font-family: Consolas, Menlo, monospace;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}
code { padding: 0.1em 0.35em; font-size: 0.9em; }
pre { padding: 1rem; overflow-x: auto; }
pre code { padding: 0; background: none; }

.pagination {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  color: #7fa8bd;
  font-size: 0.95rem;
}

.site-footer {
  text-align: center;
  padding: 2rem 1.5rem 2.5rem;
  color: #7fa8bd;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.site-footer p { margin: 0; }
.site-footer .footer-links { margin-top: 0.6rem; }
.site-footer a { color: #7fa8bd; text-decoration: none; }
.site-footer a:hover { color: #eef2f5; text-decoration: underline; }
