/* ── Default Template ── */

:root {
  --brand-primary: #0d6efd;
  --brand-dark:    #1a1a2e;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #212529;
}

/* Navigation */
.navbar-brand { font-size: 1.25rem; letter-spacing: -.5px; }
.navbar { box-shadow: 0 1px 3px rgba(0,0,0,.08); }

/* Beitrags-Inhalt */
.post-content h2,
.post-content h3,
.post-content h4 { margin-top: 1.75rem; margin-bottom: .75rem; font-weight: 700; }
.post-content p   { margin-bottom: 1.25rem; }
.post-content img { max-width: 100%; height: auto; border-radius: .375rem; margin: 1rem 0; }
.post-content blockquote {
  border-left: 4px solid var(--brand-primary);
  padding: .5rem 1rem;
  margin: 1.5rem 0;
  background: #f8f9fa;
  border-radius: 0 .375rem .375rem 0;
}
.post-content pre {
  background: #212529;
  color: #f8f9fa;
  padding: 1rem;
  border-radius: .375rem;
  overflow-x: auto;
  font-size: .875rem;
}
.post-content code {
  background: #f0f0f0;
  padding: .1em .3em;
  border-radius: .25rem;
  font-size: .9em;
}

/* Karten */
.card { transition: box-shadow .2s; }
.card:hover { box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.12) !important; }
.card-img-top { object-fit: cover; }

/* Pagination */
.pagination .page-link {
  border-radius: .375rem !important;
  margin: 0 2px;
}

/* Footer */
footer { font-size: .875rem; }

/* Utility */
.object-fit-cover { object-fit: cover; }

@media (max-width: 768px) {
  .post-content img { width: 100%; }
}
