/* Minimal-Styling — bewusst unspektakulär, Platzhalter bis Design/Branding aus M7 steht */

:root {
  --max-width: 760px;
  --fg: #1a1a1a;
  --bg: #ffffff;
  --muted: #6b6b6b;
  --accent: #0a5c36;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.site-header {
  border-bottom: 1px solid #eaeaea;
  padding: 1.25rem 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.brand {
  font-weight: 600;
  color: var(--fg);
}

.site-header nav ul {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
}

.lang-switch {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.lang-switch li::after {
  content: none;
}

.lang-switch li:not(:last-child)::after {
  content: "·";
  margin-left: 0.5rem;
  color: var(--muted);
}

.lang-switch .active a {
  color: var(--fg);
  font-weight: 600;
  text-decoration: none;
}

main.container {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
  min-height: 60vh;
}

.entry-list {
  list-style: none;
  padding: 0;
}

.entry-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.entry-list time {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  border-top: 1px solid #eaeaea;
  padding: 1.5rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}
