
#hero-11 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 65vh;
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
  text-align: left;
  color: #ffffff;
  --hero-overlay-color: rgba(0, 0, 0, 0.5);
}
#hero-11::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--hero-overlay-color);
  z-index: 1;
}
#hero-11 .container {
  position: relative;
  z-index: 2;
}
#hero-11 .hero-content-wrapper-11 {
  max-width: 650px;
  margin-left: 0;
  margin-right: auto;
}
#hero-11 .hero-title-11 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}
#hero-11 .hero-subtitle-11 {
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
}
#hero-11 .hero-cta-button-11 {
  display: inline-block;
  padding: 0.8rem 2.1rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background-color: #0d6efd;
  color: #ffffff;
}
#hero-11 .hero-cta-button-11:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767.98px) {
  #hero-11 {
    min-height: 60vh;
    padding: 4rem 0;
    text-align: center;
    justify-content: center;
  }
  #hero-11 .hero-content-wrapper-11 {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  #hero-11 .hero-title-11 {
    font-size: 2.4rem;
  }
  #hero-11 .hero-subtitle-11 {
    font-size: 1.1rem;
  }
}



/* 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;
}




/* === Section Base === */
#post-section-10 .post-section {
  padding: 60px 0;
  background: #f5f5f5;
}
#post-section-10 .post-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}
#post-section-10 .post-section .section-header h2 {
  font-size: 2rem;
  font-weight: 700;
}
#post-section-10 .post-section .section-header p {
  font-size: 1rem;
  color: #666;
  margin-top: 8px;
}

/* === Card Grid === */
#post-section-10 .post-grid {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}
#post-section-10 .post-card {
  position: relative;
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  margin: 15px;
  flex: 1 1 calc(50% - 30px);
  max-width: calc(50% - 30px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}
@media (min-width: 992px) {
  #post-section-10 .post-card {
    flex: 1 1 calc(25% - 30px);
    max-width: calc(25% - 30px);
  }
}
#post-section-10 .post-card:hover {
  transform: translateY(-8px);
}

/* Thumbnail */
#post-section-10 .post-card img {
  width: 100%;
  display: block;
}

/* Tag Badge */
#post-section-10 .post-card .tag-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 123, 255, 0.85);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  text-transform: uppercase;
}

/* Overlay */
#post-section-10 .post-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
#post-section-10 .post-card:hover .overlay {
  transform: translateY(0);
}
#post-section-10 .post-card .overlay h5 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
#post-section-10 .post-card .overlay .meta {
  font-size: 0.8rem;
  color: #ccc;
  margin-bottom: 1rem;
}
#post-section-10 .post-card .overlay .btn-readmore {
  font-size: 0.85rem;
  color: #fff;
  border: 1px solid #fff;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: background 0.3s;
}
#post-section-10 .post-card .overlay .btn-readmore:hover {
  background: #fff;
  color: #000;
}

/* === Pagination === */
.pagination-wrapper {
  text-align: center;
  margin: 40px 0;
}


