
#hero-16 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 75vh;
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
}
#hero-16 .container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
#hero-16 .hero-content-wrapper-16 {
  max-width: 650px;
  padding: 2.5rem 3.5rem;
  border-radius: 15px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
  color: #ffffff;
}
#hero-16 .hero-title-16 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}
#hero-16 .hero-subtitle-16 {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
}
#hero-16 .hero-cta-button-16 {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  transition: background-color 0.2s ease;
  background-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}
#hero-16 .hero-cta-button-16:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 767.98px) {
  #hero-16 {
    min-height: 65vh;
    padding: 3rem 1rem;
  }
  #hero-16 .hero-content-wrapper-16 {
    padding: 2rem;
    max-width: 90%;
  }
  #hero-16 .hero-title-16 {
    font-size: 2.2rem;
  }
  #hero-16 .hero-subtitle-16 {
    font-size: 1rem;
  }
}



/* Root variables */
:root {
  --card-bg: #ffffff;
  --card-radius: .75rem;
  --card-shadow: 0 4px 15px rgba(0,0,0,0.1);
  --accent-color: #4f46e5; /* indigo-600 */
}

/* Section container */
#category-posts-10 {
  padding: 80px 0;
  background: #f8f9fa;
}
#category-posts-10 .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
#category-posts-10 .section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #212529;
}
#category-posts-10 .section-subtitle {
  font-size: 1rem;
  color: #6c757d;
}

/* Grid */
#category-posts-10 .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 2rem;
}

/* Card */
#category-posts-10 .post-card {
  background: var(--card-bg);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transform: translateY(20px) scale(0.98);
  opacity: 0;
  transition: transform .6s ease, opacity .6s ease;
  perspective: 1000px;
}
#category-posts-10 .post-card.visible {
  transform: translateY(0) scale(1);
  opacity: 1;
}
#category-posts-10 .post-card:hover {
  transform: rotateX(2deg) rotateY(-2deg);
}

/* Image */
#category-posts-10 .post-card img {
  width: 100%;
  display: block;
}

/* Card body */
#category-posts-10 .card-body {
  padding: 1rem;
}
#category-posts-10 .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .75rem;
  color: #212529;
}
#category-posts-10 .btn-readmore {
  font-size: .875rem;
  color: var(--accent-color);
  font-weight: 500;
  text-decoration: none;
}
#category-posts-10 .btn-readmore i {
  margin-left: .25rem;
  transition: transform .3s ease;
}
#category-posts-10 .btn-readmore:hover i {
  transform: translateX(3px);
}

/* Pagination & Load More */
#category-posts-10 .pagination-wrapper,
#category-posts-10 .load-more-wrapper {
  text-align: center;
  margin-top: 2.5rem;
}



