.blog-hero {
  position: relative;
  background: linear-gradient(145deg, #0c2d4a 0%, #0d4a7a 40%, #1565a0 75%, #1a7fc0 100%);
  padding: 140px 24px 90px;
  overflow: hidden;
  text-align: center;
}

.blog-hero::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.15) 0%, transparent 70%);
  top: -80px;
  right: -80px;
  pointer-events: none;
}

.blog-hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.blog-hero-content h1 {
  font-size: clamp(40px, 7vw, 68px);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -2px;
  margin: 18px 0 16px;
}

.blog-hero-content p {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
}

.blog-main {
  background: var(--cream);
  padding: 70px 24px 90px;
  max-width: 1100px;
  margin: 0 auto;
}

.post {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 28px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

.post:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.post-featured {
  margin-bottom: 32px;
  border-left: 5px solid var(--orange);
  background: linear-gradient(135deg, #fff 0%, #fff8f4 100%);
}

.post-featured .post-title {
  font-size: clamp(22px, 3vw, 30px);
}

.post-featured .post-excerpt {
  font-size: 16px;
  max-width: 680px;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}

.post-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.badge-promo    { background: #fff3e0; color: #e65100; }
.badge-new-item { background: #e8f5e9; color: #2e7d32; }
.badge-info     { background: #e3f2fd; color: #1565a0; }

.post-meta {
  margin-bottom: 8px;
}

.post-date {
  font-size: 12px;
  color: var(--text-soft);
  font-weight: 600;
}

.post-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue-dark);
  letter-spacing: -0.4px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.post-excerpt {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 0;
}

.post-btn {
  margin-top: 20px;
  font-size: 14px;
  padding: 11px 24px;
}

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

@media (max-width: 768px) {
  .blog-hero { padding: 110px 20px 70px; }
  .posts-grid { grid-template-columns: 1fr; }
  .post-featured { padding: 24px 20px; }
}
