/* Blog Banner Styles */
.blog-banner {
  min-height: 340px;
  position: relative;
  overflow: hidden;
}
.blog-banner-bg {
  object-fit: cover;
  width: 100vw;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.blog-banner-overlay {
  background: rgba(24, 49, 63, 0.65);
  z-index: 2;
}
.blog-banner .container {
  z-index: 3;
  position: relative;
}
.blog-label {
  font-size: 1.1rem;
  font-weight: 600;
  background: #fff;
  color: #222;
  border-radius: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  display: inline-block;
}

/* Blog Cards */
.blog-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: 0 8px 32px rgba(255, 112, 67, 0.12);
  transform: translateY(-4px) scale(1.01);
}
.blog-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
}
.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
  transition: transform 0.3s;
}
.blog-card:hover .blog-img {
  transform: scale(1.05);
}
.btn-blog-read {
  background: #ff7043;
  color: #fff;
  border-radius: 8px;
  font-weight: 500;
  padding: 8px 22px;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: none;
}
.btn-blog-read:hover {
  background: #125875;
  color: #fff;
}

/* Pagination */
.blog-pagination .page-link {
  color: #ff7043;
  border-radius: 8px;
  border: none;
  margin: 0 4px;
  font-weight: 600;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: background 0.2s, color 0.2s;
}
.blog-pagination .page-item.active .page-link,
.blog-pagination .page-link:hover {
  background: #ff7043;
  color: #fff;
}
.blog-pagination .page-item {
  margin: 0 2px;
}

@media (max-width: 768px) {
  .blog-banner {
    min-height: 220px;
  }
  .blog-label {
    font-size: 1rem;
    padding: 0.5rem 1.2rem;
  }
  .blog-img-wrap {
    height: 120px;
  }
  .blog-card {
    min-height: 260px;
  }
}
