/* Starter CSS - replace with your template CSS */
:root {
  --container: 1100px;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px;
}
.site-header, .site-footer {
  border-bottom: 1px solid #eee;
}
.site-footer { border-top: 1px solid #eee; border-bottom: none; }
.brand {
  text-decoration: none;
  font-weight: 700;
  color: inherit;
}
.site-nav .menu {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.site-nav a { text-decoration: none; color: inherit; opacity: .85; }
.site-nav a:hover { opacity: 1; }

.hero {
  padding: 40px 0;
  border: 1px dashed #ddd;
  border-radius: 12px;
}
.hero-actions { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #111;
  text-decoration: none;
  color: #fff;
  background: #111;
}
.btn-outline {
  background: transparent;
  color: #111;
}

.post-card { padding: 18px 0; border-bottom: 1px solid #eee; }
.post-title { margin: 0 0 6px; }
.post-title a { color: inherit; text-decoration: none; }
.post-title a:hover { text-decoration: underline; }
.pagination { padding: 24px 0; }
