#blog-news .blog-detail {
  display: flex;
  flex-direction: column;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

#blog-news .blog-detail:hover {
  transform: translateY(-5px);
}

#blog-news .blog-img-outer {
  height: 200px;
  overflow: hidden;
  margin: 0;
  max-width: 100%;
}

#blog-news .blog-img-outer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#blog-news .blog-detail-inner {
  padding: 20px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

#blog-news .blog-title h3 a {
  color: #2E4156;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
}

#blog-news .owl-carousel .owl-item {
  padding: 10px;
}