
/* Section background */
#category-posts-11 {
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  color: #fff;
}
#category-posts-11::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

/* Container */
#category-posts-11 .container {
  position: relative;
  z-index: 2;
}

/* Header */
#category-posts-11 .section-header {
  text-align: center;
  margin-bottom: 50px;
}
#category-posts-11 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
}
#category-posts-11 .section-subtitle {
  font-size: 1rem;
  opacity: 0.85;
}

/* Grid cards */
#category-posts-11 .post-card {
  background: #ffffff;
  color: #212529;
  border-radius: .5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
#category-posts-11 .post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
#category-posts-11 .post-card img {
  width: 100%;
  display: block;
}

/* Card body */
#category-posts-11 .card-body {
  padding: 1rem;
}
#category-posts-11 .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .75rem;
}
#category-posts-11 .btn-readmore {
  font-size: .875rem;
  color: #4f46e5;
  font-weight: 500;
  text-decoration: none;
}
#category-posts-11 .btn-readmore i {
  margin-left: .25rem;
  transition: transform .3s ease;
}
#category-posts-11 .btn-readmore:hover i {
  transform: translateX(3px);
}

/* Pagination & Load More */
#category-posts-11 .pagination-wrapper,
#category-posts-11 .load-more-wrapper {
  text-align: center;
  margin-top: 2rem;
}
#category-posts-11 .btn-loadmore {
  color: #fff;
  border-color: #fff;
}



