
#hero-14 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68vh;
  padding: 6rem 0;
  text-align: center;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  --hero-overlay-color: transparent;
}
#hero-14::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--hero-overlay-color);
  z-index: 1;
  pointer-events: none;
}
#hero-14 .container {
  position: relative;
  z-index: 2;
}
#hero-14 .hero-content-wrapper-14 {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
#hero-14 .hero-title-14 {
  font-size: 2.9rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}
#hero-14 .hero-subtitle-14 {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}
#hero-14 .hero-form-wrapper-14 {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
#hero-14 .input-group .form-control {
  padding: 0.8rem 1.2rem;
  font-size: 1rem;
  border-radius: 0.3rem 0 0 0.3rem;
  border: none;
}
#hero-14 .input-group .btn-form-submit-14 {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border-radius: 0 0.3rem 0.3rem 0;
  border: none;
  background-color: #0d6efd;
  color: #ffffff;
  transition: filter 0.2s ease;
}
#hero-14 .input-group .btn-form-submit-14:hover {
  filter: brightness(110%);
}
@media (max-width: 767.98px) {
  #hero-14 {
    min-height: 60vh;
    padding: 4rem 0;
  }
  #hero-14 .hero-title-14 {
    font-size: 2.2rem;
  }
  #hero-14 .hero-subtitle-14 {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  #hero-14 .input-group {
    flex-direction: column;
    gap: 0.5rem;
  }
  #hero-14 .input-group .form-control,
  #hero-14 .input-group .btn-form-submit-14 {
    border-radius: 0.3rem;
    width: 100%;
  }
}



/* Section gradient & spacing */
#category-posts-9 {
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 0 120px;
  color: #fff;
  overflow: hidden;
}

/* Header */
#category-posts-9 .section-header {
  text-align: center;
  margin-bottom: 50px;
}
#category-posts-9 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
#category-posts-9 .section-subtitle {
  font-size: 1.1rem;
  opacity: .85;
}

/* Grid cards */
#category-posts-9 .post-card {
  background: rgba(255,255,255,0.1);
  border-radius: .5rem;
  overflow: hidden;
  transition: transform .3s ease;
}
#category-posts-9 .post-card:hover {
  transform: translateY(-5px);
}
#category-posts-9 .post-card img {
  width: 100%;
  display: block;
}

/* Card body */
#category-posts-9 .card-body {
  padding: 1rem;
}
#category-posts-9 .card-body h5 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
}
#category-posts-9 .card-body .btn {
  font-size: .9rem;
}

/* Wave SVG separator */
#category-posts-9 .wave-separator {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}
#category-posts-9 .wave-separator svg {
  display: block;
  width: 100%;
  height: auto;
}



