
#hero-20 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 75vh;
  padding: 6rem 0 5rem 0;
  text-align: center;
  background-size: cover;
  background-position: center;
}
#hero-20 .hero-overlay-20 {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
#hero-20 .container {
  position: relative;
  z-index: 2;
}
#hero-20 .hero-content-wrapper-20 {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}
#hero-20 .hero-title-20 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}
#hero-20 .hero-subtitle-20 {
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
}
#hero-20 .hero-cta-button-20 {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 5px;
  text-decoration: none;
  border: none;
  transition: transform 0.2s ease;
}
#hero-20 .hero-cta-button-20:hover {
  transform: translateY(-2px);
}
#hero-20 .hero-logos-wrapper-20 {
  margin-top: 3.5rem;
}
#hero-20 .logos-title-20 {
  font-size: 0.9rem;
  font-weight: 500;
  color: inherit;
  opacity: 0.7;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
#hero-20 .logos-list-20 {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
#hero-20 .hero-logo-item img {
  max-height: 40px;
  max-width: 120px;
  width: auto;
  transition: filter 0.3s ease;
}
#hero-20 .hero-logo-item a:hover img,
#hero-20 .hero-logo-item img:hover {
  filter: none;
}
@media (max-width: 767.98px) {
  #hero-20 {
    min-height: 70vh;
    padding: 4rem 0 3rem 0;
  }
  #hero-20 .hero-content-wrapper-20 {
    margin-bottom: 2.5rem;
  }
  #hero-20 .hero-title-20 {
    font-size: 2.3rem;
  }
  #hero-20 .hero-subtitle-20 {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
  }
  #hero-20 .hero-logos-wrapper-20 {
    margin-top: 3rem;
  }
  #hero-20 .logos-list-20 {
    gap: 1.5rem;
  }
  #hero-20 .hero-logo-item img {
    max-height: 30px;
  }
}



/* Section spacing & background */
#category-posts-12 {
  padding: 80px 0;
  background: #ffffff;
}

/* Header */
#category-posts-12 .section-header {
  text-align: center;
  margin-bottom: 40px;
}
#category-posts-12 .section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #212529;
}
#category-posts-12 .section-subtitle {
  font-size: 1rem;
  color: #6c757d;
}

/* Make entire card clickable */
.card-wrapper {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Card style */
#category-posts-12 .post-card {
  border: none;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform .3s ease, box-shadow .3s ease;
  background: #fff;
}
#category-posts-12 .post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* Image */
#category-posts-12 .post-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Card body */
#category-posts-12 .card-body {
  padding: 1rem;
}
#category-posts-12 .card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
#category-posts-12 .card-excerpt {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

/* Read more badge */
#category-posts-12 .btn-readmore {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4f46e5;
  border: 1px solid #4f46e5;
  border-radius: 0.5rem;
  padding: 0.375rem 0.75rem;
  display: inline-flex;
  align-items: center;
  transition: background .3s ease, color .3s ease;
}
#category-posts-12 .btn-readmore i {
  margin-left: 0.5rem;
  transition: transform .3s ease;
}
#category-posts-12 .btn-readmore:hover {
  background: #4f46e5;
  color: #fff;
}
#category-posts-12 .btn-readmore:hover i {
  transform: translateX(4px);
}

/* Pagination & Load More */
#category-posts-12 .pagination-wrapper,
#category-posts-12 .load-more-wrapper {
  text-align: center;
  margin-top: 2.5rem;
}



