/* ========= BODY ========= */
body { line-height: 1.7; }

/* ========= NAV (blog nav uses nav-cta without nav-links) ========= */
.nav { position: static; border-bottom: none; }

/* ========= PAGE HEADER ========= */
.page-header {
  background: var(--dark);
  padding: 56px 24px;
  text-align: center;
}
.page-header h1 {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.page-header p {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  max-width: 500px;
  margin: 0 auto;
}

/* ========= BLOG LISTING ========= */
.blog-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover {
  box-shadow: 0 12px 32px rgba(17,24,39,0.08);
  transform: translateY(-2px);
}
.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--teal) 0%, #0d7a58 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  font-size: 56px;
}
.blog-card-body { padding: 24px; }
.blog-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.blog-card-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 10px;
}
.blog-card-excerpt {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}
.blog-read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ========= FOOTER (blog uses simple centered footer) ========= */
footer {
  padding: 40px 24px;
  text-align: center;
}

/* ========= RESPONSIVE ========= */
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
}
