/* ===== BLOG STYLES ===== */

.blog-hero {
  padding: 140px 0 60px;
  text-align: center;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
}

.blog-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  margin-bottom: 12px;
}

.blog-hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-style: italic;
}

.blog-main {
  padding: 60px 0 100px;
}

/* ===== BLOG ENTRY LIST ===== */
.blog-entry {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.blog-entry:first-child { padding-top: 0; }
.blog-entry:last-child { border-bottom: none; }

.blog-entry-date {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-dim);
  margin-bottom: 8px;
}

.blog-entry h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-entry h2 a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-entry h2 a:hover { color: var(--accent); }

.blog-entry-excerpt {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.blog-entry-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}

.blog-read-more {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.blog-read-more:hover { color: #d4b45c; }

/* ===== INDIVIDUAL POST ===== */
.post-header {
  padding: 140px 0 40px;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
}

.post-date {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-dim);
  margin-bottom: 12px;
}

.post-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0;
}

.post-body {
  padding: 60px 0 100px;
}

.post-body .letter-text img {
  width: 100%;
  border-radius: 8px;
  margin: 24px 0;
}

.post-body .letter-text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-nav {
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}

.post-nav a {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--accent);
  text-decoration: none;
}

.post-nav a:hover { color: #d4b45c; }

/* Active nav link */
.nav-links a.active { color: var(--accent); }
