.elementor-2017 .elementor-element.elementor-element-d898c27{--display:flex;}/* Start custom CSS for html, class: .elementor-element-3267068 */.blog-section {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.blog-section h2 {
  font-size: 32px;
  color: #222;
  font-weight: 800;
  margin-bottom: 10px;
}

.blog-section .subtitle {
  color: #555;
  font-size: 16px;
  margin-bottom: 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-card h3 {
  font-size: 20px;
  color: #222;
  padding: 15px;
  font-weight: 700;
}

.blog-card p {
  font-size: 15px;
  color: #555;
  padding: 0 15px 15px;
  line-height: 1.6;
}

.blog-card .btn {
  display: inline-block;
  margin-bottom: 20px;
  background: #0078d7;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.blog-card .btn:hover {
  background: #005fa3;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-section {
    padding: 60px 15px;
  }
  .blog-card img {
    height: 150px;
  }
}/* End custom CSS */