:root {
  --container: 1080px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  line-height: 1.6;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}

.site-header,
.site-footer {
  border-bottom: 1px solid #eee;
}
.site-footer {
  border-top: 1px solid #eee;
  border-bottom: none;
  margin-top: 40px;
  padding: 24px 0;
}
.site-header {
  padding: 16px 0;
}

.site-title {
  font-weight: 700;
  text-decoration: none;
  color: inherit;
  font-size: 1.25rem;
}
.nav-primary ul,
.nav-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 16px;
}
.nav-primary a,
.nav-footer a {
  text-decoration: none;
}

.site-main {
  padding: 24px 0;
}
.entry {
  margin-bottom: 32px;
}
.entry-title {
  margin: 0 0 8px;
  font-size: 1.75rem;
}
.meta {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
