
#hero-25 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 65vh;
  padding: 6rem 0;
  text-align: center;
}
#hero-25 .hero-overlay-25 {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
#hero-25 .container {
  position: relative;
  z-index: 2;
}
#hero-25 .hero-content-wrapper-25 {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
#hero-25 .hero-title-25 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}
#hero-25 .hero-subtitle-25 {
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
}
#hero-25 .event-details-wrapper-25 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
#hero-25 .event-detail-item-25 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  opacity: 0.85;
}
#hero-25 .event-detail-item-25 i {
  font-size: 0.9em;
}
#hero-25 .hero-cta-button-25 {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
  border: none;
  transition: transform 0.2s ease;
  background-color: #0d6efd;
  color: #ffffff;
}
#hero-25 .hero-cta-button-25:hover {
  transform: translateY(-2px);
}
@media (max-width: 767.98px) {
  #hero-25 {
    min-height: 60vh;
    padding: 4rem 0;
  }
  #hero-25 .hero-title-25 {
    font-size: 2.3rem;
  }
  #hero-25 .hero-subtitle-25 {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
  }
  #hero-25 .event-details-wrapper-25 {
    justify-content: center;
    margin-bottom: 2rem;
    gap: 0.5rem 1rem;
  }
  #hero-25 .event-detail-item-25 {
    font-size: 0.9rem;
  }
}



/* Section background & spacing */
#category-posts-18 {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  overflow: hidden;
}

/* Subtle dotted texture overlay */
#category-posts-18::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: radial-gradient(rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 1;
}

/* Container above overlay */
#category-posts-18 .container {
  position: relative;
  z-index: 2;
}

/* Header */
#category-posts-18 .section-header {
  text-align: center;
  margin-bottom: 40px;
}
#category-posts-18 .section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
}
#category-posts-18 .section-subtitle {
  font-size: 1rem;
  color: #555;
}

/* Grid cards */
#category-posts-18 .post-card {
  background: #fff;
  border-radius: .75rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding-top: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
#category-posts-18 .post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Circular image */
#category-posts-18 .post-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid #fff;
}

/* Card body */
#category-posts-18 .card-body {
  padding: 1rem;
  margin-top: 60px;
}
#category-posts-18 .card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: .75rem;
  color: #212529;
}
#category-posts-18 .card-excerpt {
  font-size: .95rem;
  color: #666;
  margin-bottom: 1rem;
}

/* Read More button */
#category-posts-18 .btn-readmore {
  display: inline-flex;
  align-items: center;
  font-size: .875rem;
  font-weight: 500;
  color: #4f46e5;
  text-decoration: none;
  transition: color .3s ease;
}
#category-posts-18 .btn-readmore i {
  margin-left: .25rem;
  transition: transform .3s ease;
}
#category-posts-18 .btn-readmore:hover {
  color: #4338ca;
}
#category-posts-18 .btn-readmore:hover i {
  transform: translateX(3px);
}

/* Pagination & Load More */
#category-posts-18 .pagination-wrapper,
#category-posts-18 .load-more-wrapper {
  text-align: center;
  margin-top: 2.5rem;
}



