
#hero-22 {
  overflow: hidden;
  background-color: #e9ecef;
}
#hero-22 .row {
  min-height: 70vh;
}
#hero-22 .hero-image-col-22 {
  background-size: cover;
  background-position: center;
  min-height: 350px;
}
#hero-22 .hero-text-col-22 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 5rem;
}
#hero-22 .hero-title-22 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}
#hero-22 .hero-subtitle-22 {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 2rem;
}
#hero-22 .hero-cta-button-22 {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.25rem;
  text-decoration: none;
  border: none;
  align-self: flex-start;
  transition: opacity 0.2s ease;
}
#hero-22 .hero-cta-button-22:hover {
  opacity: 0.85;
}
@media (min-width: 768px) {
  #hero-22 .hero-image-col-22 {
    min-height: 100%;
  }
}
@media (max-width: 991.98px) {
  #hero-22 .hero-text-col-22 {
    padding: 3rem 4rem;
  }
  #hero-22 .hero-title-22 {
    font-size: 2.4rem;
  }
}
@media (max-width: 767.98px) {
  #hero-22 .hero-text-col-22 {
    padding: 3rem 2rem;
    text-align: center;
  }
  #hero-22 .hero-cta-button-22 {
    align-self: center;
  }
  #hero-22 .hero-title-22 {
    font-size: 2.1rem;
  }
}



/* 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;
}




#call-to-action-21 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
}
.cta-multi-image-content h2 {
  font-weight: 700;
  color: #1e293b;
}
.cta-multi-image-content p {
  color: #475569;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.cta-multi-image-content .btn {
  padding: 0.8rem 2rem;
  font-weight: 600;
}
.cta-multi-image-content .btn i {
  margin-right: 8px;
}
.cta-multi-image-grid {
}
.cta-multi-image-item {
  transition: transform 0.3s ease;
}
.cta-multi-image-item:hover {
  transform: translateY(-5px);
}
.cta-multi-image-img {
  max-width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  border-radius: 0.25rem;
  background-color: #fff;
  padding: 5px;
}
@media (max-width: 991.98px) {
  .cta-multi-image-content {
    text-align: center;
    margin-bottom: 2.5rem;
  }
  .cta-multi-image-grid .row {
    justify-content: center !important;
  }
}
@media (max-width: 575.98px) {
  .cta-multi-image-img {
    max-height: 60px;
  }
}


