/* ===== BLOG (listing + single + archives) ===== */

.blog-hero {
  padding: 140px 0 60px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  text-align: center;
}
.blog-hero__container { max-width: 780px; margin: 0 auto; padding: 0 24px; }
.blog-hero__title {
  font-family: var(--heading);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  margin: 16px 0 20px;
}
.blog-hero__subtitle { font-size: 18px; color: var(--text-light-strong); }

.blog-grid-section { padding: 80px 0 120px; background: var(--navy); }
.blog-grid-section__container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 960px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; gap: 24px; } }

.blog-card {
  background: var(--navy-surface);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--gold-dim); }

.blog-card__link { display: block; color: inherit; text-decoration: none; }

.blog-card__image { aspect-ratio: 3/2; overflow: hidden; background: var(--navy-mid); }
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.blog-card:hover .blog-card__image img { transform: scale(1.03); }

.blog-card__body { padding: 24px; }
.blog-card__meta { display: flex; gap: 12px; align-items: center; font-size: 13px; color: var(--text-light); margin-bottom: 12px; }
.blog-card__category { padding: 2px 10px; background: var(--gold-dim); color: var(--gold); border-radius: 999px; font-weight: 500; }
.blog-card__title {
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 12px;
}
.blog-card__excerpt { color: var(--text-light-strong); font-size: 15px; line-height: 1.6; margin-bottom: 16px; }
.blog-card__more { color: var(--gold); font-weight: 500; font-size: 14px; }

.blog-pagination { margin-top: 60px; text-align: center; }
.blog-pagination .page-numbers {
  display: inline-block;
  padding: 10px 16px;
  margin: 0 4px;
  color: var(--text-light-strong);
  background: var(--navy-surface);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 6px;
  text-decoration: none;
}
.blog-pagination .page-numbers.current { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.blog-empty { text-align: center; color: var(--text-light); padding: 60px 0; }

/* ===== SINGLE POST ===== */

.blog-post { background: var(--navy); color: var(--white); }

.blog-post__header { padding: 120px 0 60px; }
.blog-post__header-container { max-width: 780px; margin: 0 auto; padding: 0 24px; text-align: center; }
.blog-post__category {
  display: inline-block;
  padding: 4px 14px;
  background: var(--gold-dim);
  color: var(--gold);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 20px;
}
.blog-post__title {
  font-family: var(--heading);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
.blog-post__meta { display: flex; justify-content: center; gap: 10px; color: var(--text-light); font-size: 14px; flex-wrap: wrap; }
.blog-post__dot { color: var(--text-light); opacity: .5; }
.blog-post__featured { max-width: 1200px; margin: 40px auto 0; padding: 0 24px; }
.blog-post__featured img { width: 100%; height: auto; border-radius: 12px; display: block; }

.blog-post__content {
  max-width: 760px;
  margin: 60px auto;
  padding: 0 24px;
  color: var(--text-light-strong);
  font-size: 17px;
  line-height: 1.7;
}
.blog-post__content h2 { font-family: var(--heading); font-size: 32px; font-weight: 700; color: var(--white); margin: 48px 0 20px; }
.blog-post__content h3 { font-family: var(--heading); font-size: 24px; font-weight: 600; color: var(--white); margin: 36px 0 16px; }
.blog-post__content p, .blog-post__content ul, .blog-post__content ol { margin-bottom: 20px; }
.blog-post__content a { color: var(--gold); text-decoration: underline; }
.blog-post__content blockquote {
  border-left: 3px solid var(--gold);
  padding: 12px 24px;
  margin: 32px 0;
  font-style: italic;
  color: var(--white);
}
.blog-post__content img { max-width: 100%; height: auto; border-radius: 8px; margin: 24px 0; }

.blog-post__footer { max-width: 760px; margin: 60px auto; padding: 40px 24px; border-top: 1px solid rgba(255,255,255,.08); }
.blog-post__footer-container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; font-size: 14px; color: var(--text-light); }
.blog-post__share a { color: var(--gold); text-decoration: none; margin-left: 12px; }

.blog-related { padding: 80px 0 120px; background: var(--navy-mid); }
.blog-related__container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.blog-related__title { font-family: var(--heading); font-size: 32px; color: var(--white); margin-bottom: 40px; text-align: center; }
