.page-header {
  text-align: center;
  padding: 80px 40px 60px;
}
.page-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.page-title {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 40px;
}
.page-divider {
  width: 60px;
  height: 2px;
  background: var(--teal);
  margin: 0 auto;
}
.blog-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 80px;
  align-items: start;
}
.post-list { display: flex; flex-direction: column; gap: 80px; }
.post-image-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 28px;
}
.post-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.post-item:hover .post-image-wrap img { transform: scale(1.02); }
.post-category {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.post-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 10px;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}
.post-headline:hover { color: var(--teal); }
.post-date {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 18px;
  font-weight: 400;
}
.post-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: #444;
  margin-bottom: 22px;
  max-width: 640px;
}
.post-read-more {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--teal);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.post-read-more:hover { color: #1d7a6e; }

/* Sidebar */
.sidebar { position: sticky; top: 88px; }
.sidebar-card { text-align: center; margin-bottom: 40px; }
.sidebar-portrait {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 16px;
  border: 3px solid var(--border);
}
.sidebar-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 4px;
}
.sidebar-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.sidebar-bio {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: #555;
  margin-bottom: 20px;
}
.sidebar-patreon-btn {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.2s;
}
.sidebar-patreon-btn:hover { background: #b8952e; transform: translateY(-1px); }
.sidebar-divider { border: none; border-top: 1px solid var(--border); margin: 30px 0; }
.sidebar-section-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.sidebar-categories { list-style: none; }
.sidebar-categories li { padding: 7px 0; border-bottom: 1px solid var(--border); }
.sidebar-categories li:last-child { border-bottom: none; }
.sidebar-categories a {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}
.sidebar-categories a:hover { color: var(--teal); }
.popular-posts { display: flex; flex-direction: column; gap: 16px; }
.popular-post { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.popular-post-thumb { width: 60px; height: 60px; border-radius: 4px; object-fit: cover; flex-shrink: 0; }
.popular-post-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.45;
  transition: color 0.2s;
}
.popular-post:hover .popular-post-title { color: var(--teal); }

@media (max-width: 900px) {
  .blog-layout { grid-template-columns: 1fr; gap: 60px; padding: 40px 24px 60px; }
  .sidebar { position: static; }
  .page-header { padding: 60px 24px 40px; }
}
@media (max-width: 600px) {
  .post-list { gap: 60px; }
  .post-headline { font-size: 1.5rem; }
}

