
/* Section & gradient background */
#category-posts-22 {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
  color: #fff;
  overflow: hidden;
}

/* Floating accent circles */
#category-posts-22::before,
#category-posts-22::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  animation: float 15s infinite ease-in-out;
}
#category-posts-22::before {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #ff6a88, #ff99ac);
  top: -100px; left: -100px;
}
#category-posts-22::after {
  width: 200px; height: 200px;
  background: radial-gradient(circle, #24c6dc, #514a9d);
  bottom: -80px; right: -80px;
  animation-duration: 20s;
}

@keyframes float {
  0%,100% { transform: translateY(0) translateX(0); }
  50%      { transform: translateY(20px) translateX(20px); }
}

/* Container */
#category-posts-22 .container {
  position: relative;
  z-index: 1;
}

/* Header */
#category-posts-22 .section-header {
  text-align: center;
  margin-bottom: 50px;
}
#category-posts-22 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
}
#category-posts-22 .section-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
}

/* Grid layout */
#category-posts-22 .post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* Clickable wrapper */
.post-card-wrapper {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Glass card */
#category-posts-22 .post-card {
  position: relative;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: .75rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  overflow: hidden;
  transform: translateY(20px) scale(0.98);
  opacity: 0;
  transition: transform .5s ease, opacity .5s ease, box-shadow .3s ease;
}
#category-posts-22 .post-card.visible {
  transform: translateY(0) scale(1);
  opacity: 1;
}
#category-posts-22 .post-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  border-color: rgba(255,255,255,0.4);
}

/* Thumbnail */
#category-posts-22 .post-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}

/* Card body */
#category-posts-22 .card-body {
  padding: 60px 1rem 1rem;
  text-align: center;
}
#category-posts-22 .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: .5rem;
}
#category-posts-22 .card-meta {
  font-size: .875rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: .75rem;
}
#category-posts-22 .card-meta i {
  margin-right: .25rem;
}

/* Excerpt */
#category-posts-22 .card-excerpt {
  font-size: .95rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}

/* Read More */
#category-posts-22 .btn-readmore {
  font-size: .875rem;
  font-weight: 500;
  color: #fff;
  background: rgba(255,255,255,0.2);
  padding: .5rem 1rem;
  border-radius: .5rem;
  display: inline-flex;
  align-items: center;
  transition: background .3s ease, transform .3s ease;
}
#category-posts-22 .btn-readmore i {
  margin-left: .5rem;
  transition: transform .3s ease;
}
#category-posts-22 .btn-readmore:hover {
  background: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}
#category-posts-22 .btn-readmore:hover i {
  transform: translateX(4px);
}

/* Pagination & Load More */
#category-posts-22 .pagination-wrapper,
#category-posts-22 .load-more-wrapper {
  text-align: center;
  margin-top: 3rem;
}




#cta-banner-10 {
  padding: 7rem 1rem;
  position: relative;
  background-size: cover;
  background-position: center center;
  text-align: center;
  overflow: hidden;
  border-radius: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  background-color: #212529;
}
#cta-banner-10::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background-color: rgba(0, 0, 0, 0.55);
}
#cta-banner-10 .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
#cta-banner-10 .cta-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}
#cta-banner-10 .cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}
#cta-banner-10 .cta-button .btn {
  padding: 1rem 2.8rem;
  font-size: 1.15rem;
  font-weight: 500;
  transition: transform 0.2s ease;
}
#cta-banner-10 .cta-button .btn:hover {
  transform: scale(1.05);
}
#cta-banner-10 .cta-button .btn i {
  margin-left: 0.6rem;
}
@media (max-width: 991.98px) {
  #cta-banner-10 {
    padding: 6rem 1rem;
  }
  #cta-banner-10 .cta-title {
    font-size: 2.5rem;
  }
  #cta-banner-10 .cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 767.98px) {
  #cta-banner-10 {
    padding: 5rem 1rem;
  }
  #cta-banner-10 .cta-title {
    font-size: 2.1rem;
  }
  #cta-banner-10 .cta-subtitle {
    font-size: 1rem;
  }
  #cta-banner-10 .cta-button .btn {
    padding: 0.8rem 2.2rem;
    font-size: 1rem;
  }
}


