/* ─── BLOG PAGE HEADER ────────────────────────────── */

.blog-header {
  background: var(--navy);
  padding: 8rem 2rem 5rem;
  text-align: center;
}

.blog-header h1 {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4vw, 3rem);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.blog-header h1 em { font-style: italic; color: var(--gold-light); }

.blog-header p {
  font-size: 1.0625rem;
  color: rgba(250,250,248,0.65);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.page-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ─── SEARCH ──────────────────────────────────────── */

.blog-controls {
  background: var(--off-white);
  padding: 2rem 2rem 0;
}

.search-wrap {
  position: relative;
  max-width: 520px;
}

.blog-search {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 3rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.blog-search:focus { border-color: var(--gold); }

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--text-muted);
  pointer-events: none;
}

/* ─── BLOG LIST ───────────────────────────────────── */

.blog-list-section {
  background: var(--off-white);
  padding: 2.5rem 2rem 6rem;
}

.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 2.25rem;
  transition: border-color 0.2s, transform 0.2s;
}

.blog-card:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.875rem;
  flex-wrap: wrap;
}

.blog-date {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 300;
}

.blog-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.blog-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: var(--gold-pale);
  color: var(--navy);
  padding: 0.2rem 0.625rem;
  border-radius: 3px;
}

.blog-card-title {
  font-family: var(--serif);
  font-size: 1.375rem;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.blog-card-title a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-card-title a:hover { color: var(--gold); }

.blog-card-desc {
  font-size: 0.9375rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  max-width: 720px;
}

.blog-read-more {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.blog-read-more:hover { color: var(--gold); }

.blog-empty {
  text-align: center;
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  padding: 3rem 0;
}

/* ─── BLOG POST PAGE ──────────────────────────────── */

.post-header {
  background: var(--navy);
  padding: 8rem 2rem 5rem;
}

.post-header-inner {
  max-width: 780px;
  margin: 0 auto;
}

.post-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(250,250,248,0.5);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.2s;
}

.post-back:hover { color: var(--gold); }

.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.post-date {
  font-size: 0.8125rem;
  color: rgba(250,250,248,0.45);
  font-weight: 300;
}

.post-header h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.post-header h1 em { font-style: italic; color: var(--gold-light); }

.post-desc {
  font-size: 1.125rem;
  color: rgba(250,250,248,0.65);
  font-weight: 300;
  line-height: 1.8;
  max-width: 640px;
}

/* ─── BLOG POST BODY ──────────────────────────────── */

.post-body {
  background: var(--white);
  padding: 5rem 2rem 6rem;
}

.post-content {
  max-width: 780px;
  margin: 0 auto;
}

.post-content h2 {
  font-family: var(--serif);
  font-size: 1.75rem;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 2.5rem 0 1rem;
  line-height: 1.3;
}

.post-content h3 {
  font-family: var(--serif);
  font-size: 1.375rem;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
  line-height: 1.3;
}

.post-content p {
  font-size: 1.0625rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.post-content ul,
.post-content ol {
  margin: 0 0 1.5rem 1.5rem;
}

.post-content li {
  font-size: 1.0625rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.post-content strong { color: var(--text-dark); font-weight: 500; }

.post-content a {
  color: var(--navy);
  font-weight: 500;
  text-underline-offset: 3px;
}

.post-content a:hover { color: var(--gold); }

.post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
}

.post-callout {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}

.post-callout p {
  margin-bottom: 0;
  font-size: 1rem;
}

/* ─── POST CTA BOX ────────────────────────────────── */

.post-cta-box {
  background: var(--navy);
  border-radius: 8px;
  padding: 2.5rem;
  margin-top: 3rem;
  text-align: center;
}

.post-cta-box h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.post-cta-box p {
  font-size: 0.9375rem;
  color: rgba(250,250,248,0.65);
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

/* ─── RESPONSIVE ──────────────────────────────────── */

@media (max-width: 900px) {
  .blog-card { padding: 1.5rem; }
  .blog-card:hover { transform: none; }
  .post-header { padding: 7rem 1.25rem 3rem; }
  .post-body { padding: 3rem 1.25rem 4rem; }
}

@media (max-width: 600px) {
  .blog-header { padding: 6rem 1.25rem 3rem; }
  .blog-controls { padding: 1.5rem 1.25rem 0; }
  .blog-list-section { padding: 2rem 1.25rem 4rem; }
  .search-wrap { max-width: 100%; }
}
