/* ── BLOG PAGE ── */

.nav-active { color: var(--red) !important; }

/* Header */
.bp-header {
  text-align: center;
  padding: 8rem 6rem 3rem;
  background: var(--white);
}
.bp-header .section-sub { max-width: 560px; margin: 0 auto; }

/* Grid override for blog page */
.bp-grid {
  padding: 0 6rem 5rem;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}

.bp-grid .blog-card { cursor: pointer; }

/* Article view */
.bp-article-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 7rem 2rem 5rem;
}

.bp-back {
  display: inline-flex;
  align-items: center;
  font-size: .88rem;
  font-weight: 800;
  color: var(--white);
  background: var(--red);
  text-decoration: none;
  padding: .6rem 1.4rem;
  border-radius: 2rem;
  margin-bottom: 2rem;
  transition: background .2s, transform .2s;
}
.bp-back:hover { background: var(--red-dk); transform: translateY(-2px); }

.bp-article .blog-cat { margin-bottom: .75rem; }

.bp-article h1 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: var(--dark);
}

.bp-meta {
  display: flex;
  gap: 1.25rem;
  font-size: .82rem;
  color: var(--gray);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.bp-cover {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  margin-bottom: 2.5rem;
}

.bp-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--dark);
}
.bp-content p  { margin: 0; }
.bp-content h2 { font-size: 1.35rem; font-weight: 900; margin: 0; }
.bp-content h3 { font-size: 1.15rem; font-weight: 800; margin: 0; }
.bp-content ul,
.bp-content ol { margin: 0; padding-left: 1.5rem; }
.bp-content li { margin: 0; }

/* Responsive */
@media (max-width: 1100px) {
  .bp-header { padding: 7rem 3rem 2.5rem; }
  .bp-grid { padding: 0 3rem 4rem; }
}

@media (max-width: 768px) {
  .bp-header { padding: 6rem 1.5rem 2rem; }
  .bp-grid { grid-template-columns: 1fr; padding: 0 1.5rem 3rem; }
  .bp-article-wrap { padding: 6rem 1.25rem 3rem; }
  .bp-article h1 { font-size: 1.5rem; }
  .bp-cover { height: 220px; }
  .bp-content { font-size: .97rem; }
}
