/* Blog Hero */
.blog-hero {
  height: 55vh;
  background: url("https://images.unsplash.com/photo-1554224154-22dec7ec8818") center/cover no-repeat;
  position: relative;
}

.blog-overlay {
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  display: flex;
  align-items: center;
}

.blog-hero-content {
  color: #fff;
  padding: 0 60px;
  max-width: 900px;
}

.blog-hero-content h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.blog-hero-content p {
  font-size: 18px;
}

/* Blog Content */
.blog-content {
  padding: 80px 60px;
  background: #ffffff;
}

.blog-container {
  max-width: 900px;
  margin: auto;
}

.blog-article h2 {
  font-size: 30px;
  margin: 35px 0 15px;
  color: #1f2937;
}

.blog-article p {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 15px;
}

/* Points */
.blog-points {
  list-style: none;
  margin: 20px 0 30px;
}

.blog-points li {
  padding-left: 28px;
  margin-bottom: 12px;
  position: relative;
}

.blog-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}

/* Highlight Box */
.blog-highlight {
  background: #f1f5f9;
  padding: 25px;
  border-left: 5px solid #2563eb;
  margin: 35px 0;
  border-radius: 6px;
}

.blog-highlight h3 {
  margin-bottom: 10px;
}

/* CTA */
.blog-cta {
  margin-top: 60px;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
  padding: 45px;
  border-radius: 16px;
  text-align: center;
}

.blog-cta-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 14px 30px;
  background: #ffffff;
  color: #1e40af;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-hero-content h1 {
    font-size: 32px;
  }

  .blog-content {
    padding: 50px 25px;
  }
}
