/* --- BLOG LISTING --- */
.blog-list {
  max-width: 1060px;
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
}

.blog-list .post-preview {
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.blog-list .post-preview:first-of-type {
  padding-top: 0;
}

.blog-list .post-preview:last-of-type {
  border-bottom: none;
}

.post-preview .post-date {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 600;
}

.post-preview h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  margin-top: 0.25rem;
}

.post-preview h2 a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}

.post-preview h2 a:hover {
  color: var(--accent);
}

.post-preview .post-excerpt {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- BLOG POST --- */
.post-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
}

.post-header {
  margin-bottom: 3rem;
}

.post-header .post-date {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 600;
}

.post-header h1 {
  font-size: 2.4rem;
  color: var(--navy);
  line-height: 1.2;
  margin-top: 0.5rem;
}

.post-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
}

.post-body p {
  margin-bottom: 1.5rem;
}

.post-body h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.post-body h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.post-body a {
  color: var(--navy);
  border-bottom: 2px solid var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

.post-body a:hover {
  color: var(--accent);
}

.post-body ul, .post-body ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.post-body li {
  margin-bottom: 0.5rem;
}

.post-body blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  color: var(--text-muted);
  font-style: italic;
}

.post-body code {
  font-size: 0.9em;
  background: var(--bg-warm);
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  font-family: 'SF Mono', 'Fira Code', monospace;
}

.post-body pre {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  padding: 1.25rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
  border-radius: 4px;
}

.post-body pre code {
  background: none;
  padding: 0;
}

.post-nav {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.post-nav a {
  color: var(--navy);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.post-nav a:hover {
  color: var(--accent);
}

/* --- BLOG MOBILE --- */
@media (max-width: 768px) {
  .blog-list {
    padding: 6rem 1.5rem 4rem;
  }

  .post-content {
    padding: 6rem 1.5rem 4rem;
  }

  .post-header h1 {
    font-size: 1.8rem;
  }
}
