* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #fff;
  color: #222;
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

a {
  color: #555;
}

a:hover {
  color: #000;
}

.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  padding: 40px 0 30px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.site-title {
  font-size: 28px;
  font-weight: normal;
  color: #111;
  letter-spacing: 1px;
}

.site-subtitle {
  color: #999;
  font-size: 13px;
  margin-top: 4px;
}

/* Sections */
.section {
  padding: 30px 0;
  border-bottom: 1px solid #eee;
}

.section:last-of-type {
  border-bottom: none;
}

.section-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #999;
  margin-bottom: 20px;
}

/* Post cards */
.posts-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.post-card {
  display: flex;
  gap: 14px;
  position: relative;
}

.post-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  flex-shrink: 0;
}

.post-content {
  flex: 1;
  min-width: 0;
}

.post-title {
  font-size: 16px;
  font-weight: bold;
  color: #111;
  margin-bottom: 2px;
}

.post-type-badge {
  display: inline-block;
  font-size: 10px;
  padding: 1px 6px;
  border: 1px solid #ddd;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.post-description {
  color: #666;
  font-size: 14px;
  margin-bottom: 6px;
}

.post-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.post-link {
  font-size: 12px;
  color: #555;
  text-decoration: underline;
}

.post-link:hover {
  color: #000;
}

.badge-new {
  font-size: 10px;
  color: #c44;
  font-weight: bold;
  margin-left: 6px;
}

.badge-pinned {
  font-size: 10px;
  color: #999;
  margin-left: 6px;
}

/* Bio */
.bio-text {
  color: #555;
  font-size: 15px;
  white-space: pre-wrap;
}

/* Empty state */
.empty-state {
  color: #ccc;
  font-size: 14px;
}

/* Footer */
.site-footer {
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: #ccc;
}

.site-footer a {
  color: #ccc;
}

.site-footer a:hover {
  color: #888;
}

/* Responsive */
@media (max-width: 500px) {
  .post-card {
    flex-direction: column;
  }

  .post-image {
    width: 100%;
    height: 180px;
  }
}
