/* Reset */
* {
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: #f9f9f9;
  color: #222;
}

/* Layout */
.site-header,
main,
.site-footer {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.5rem;
}

.site-header {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  border-bottom: 1px solid #ddd;
}

.avatar {
  width: 90px;
  border-radius: 50%;
}

.identity nav a {
  margin-right: 1rem;
  text-decoration: none;
  color: #0055aa;
}

.identity nav a:hover {
  text-decoration: underline;
}

.feed-title {
  margin-top: 2rem;
}

.post-meta {
  font-size: 0.8rem;
  color: #666;
  margin-top: 0.5rem;
}

.post-meta a {
  text-decoration: none;
  color: #0055aa;
}

.post-meta a:hover {
  text-decoration: underline;
}

time {
  font-size: 0.85rem;
  color: #666;
}

.site-footer {
  font-size: 0.85rem;
  color: #777;
  border-top: 1px solid #ddd;
  margin-top: 2rem;
}

/* Navigation */
.site-nav {
  max-width: 720px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #ddd;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: #0055aa;
  font-size: 0.95rem;
}

.site-nav a:hover {
  text-decoration: underline;
}

/* Landing Feed */

.landing-feed {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.5rem;
}

.feed-item {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.feed-item h3 {
  margin-bottom: 0.3rem;
}

.entry-meta {
  font-size: 0.85rem;
  color: #666;
}

/* About me */

.about-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.5rem;
}

.about-page section {
  margin-bottom: 2rem;
}

.about-page h2 {
  margin-bottom: 0.5rem;
}

/* Weblog */

.blog-feed {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.5rem;
}

.blog-post {
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.blog-post h3 {
  margin-bottom: 0.4rem;
}

.blog-post p {
  margin-bottom: 0.8rem;
}

/* Scrapbook */

.scrapbook-feed {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.5rem;
}

.scrapbook-item {
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.scrapbook-image {
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
  border-radius: 6px;
}

.scrapbook-item blockquote {
  font-style: italic;
  margin: 1rem 0;
  padding-left: 1rem;
  border-left: 3px solid #ccc;
}

/* Mutual Aid */

.mutual-aid-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.5rem;
}

.mutual-aid-page section {
  margin-bottom: 2.5rem;
}

.mutual-aid-page h2 {
  margin-bottom: 0.5rem;
}

/* Resource Collection */

.resource-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.5rem;
}

.resource-page section {
  margin-bottom: 2.5rem;
}

.resource-page h2 {
  margin-bottom: 0.5rem;
}