.section-blog {
  text-align: center;
  padding: 60px 20px;
}

.section-blog h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0e4a87;
  margin-bottom: 40px;
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  justify-items: center;
  max-width: 1140px;
  margin: 0 auto;
}

.blog-card {
  position: relative;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: all 0.3s ease;
}

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

.blog-content {
  padding: 15px 20px;
  text-align: left;
}

.blog-content h3 {
  font-size: 18px;
  color: #0e4a87;
  font-weight: 600;
  margin: 0 0 10px;
  transition: color 0.3s ease;
}

.blog-content h3:hover {
  color: #E9AF00;
}

.blog-content p {
  color: #555;
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

.category-tag {
  display: inline-block;
  background: #E9AF00;
  color: #000;
  font-size: 12px;
  font-weight: 500;
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  color: #0e4a87;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #E9AF00;
}


