/* Blog Section */
.blog-section {
  padding: 80px 20px;
  background: #f8f9fc;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 50px;
  color: #222;
}

/* Grid Layout */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Blog Card */
.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.blog-card img {
  width: 98%;
  height: 165px;
  object-fit: cover;
}

.blog-card h3 {
  font-size: 1.1rem;
  margin: 15px;
  line-height: 1.4;
}

.blog-card a {
  text-decoration: none;
  color: #111;
  font-weight: 600;
}

.blog-card a:hover {
  color: #4f46e5;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-card img {
    height: 160px;
  }
}
