.blog_section {
  background: #f9fafc;
}

.blog_container {
  margin-top: 30px;
}

.blog_card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.blog_img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog_content {
  padding: 20px;
  flex-grow: 1;
}

.blog_content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog_content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.blog_content a {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid #000;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s;
}

.blog_content a:hover {
  background: #000;
  color: #fff;
}