.elementor-4572 .elementor-element.elementor-element-2fde6b0{--display:flex;}/* Start custom CSS for html, class: .elementor-element-6eb3a39 */.blog {
  max-width: 1150px;
  margin: 70px auto;
  padding: 0 20px;
  text-align: center;
}

.blog h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.blog .lead {
  color: #444;
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.blog-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: all 0.3s ease;
  overflow: hidden;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.blog-card:hover img {
  transform: scale(1.03);
}

.blog-card h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000;
  margin: 18px 20px 10px;
  line-height: 1.4;
}

.blog-card h2 a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s;
}

.blog-card h2 a:hover {
  color: #555;
}

.blog-card p {
  font-size: 1rem;
  color: #444;
  margin: 0 20px 20px;
  line-height: 1.6;
}

.blog-card .read-more {
  display: inline-block;
  background: #000;
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  margin: 0 20px 25px;
  transition: all 0.3s;
}

.blog-card .read-more:hover {
  background: #222;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .blog {
    margin: 50px 0;
  }

  .blog h1 {
    font-size: 1.8rem;
  }

  .blog-card img {
    height: 200px;
  }
}/* End custom CSS */