
#hero-10 {
  padding: 120px 20px;
  background-color: #fff;
  text-align: center;
}
#hero-10 .hero-title {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}
#hero-10 .hero-subtitle {
  font-size: 22px;
  color: #777;
  margin-bottom: 30px;
}
.btn.btn-primary {
  padding: 14px 40px;
  font-size: 18px;
}



/* Section wrapper */
#category-posts-26 {
  background: #E0DED9;
  padding: 80px 20px;
  text-align: center;
}

/* Header */
#category-posts-26 .intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: #222;
}
#category-posts-26 .intro p {
  font-size: 1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto 60px;
}

/* Dark band behind cards */
#category-posts-26 .cards-band {
  position: relative;
  background: #4A4438;
  padding: 60px 0;
}
#category-posts-26 .cards-band::before {
  content: '';
  position: absolute;
  top: -40px; left: 0; right: 0;
  height: 40px;
  background: #E0DED9;
}

/* Cards container */
#category-posts-26 .cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* Individual card */
#category-posts-26 .card-item {
  background: #fff;
  border-radius: .75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  max-width: 300px;
  transition: transform .3s ease, box-shadow .3s ease;
}
#category-posts-26 .card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Card image */
#category-posts-26 .card-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Card content */
#category-posts-26 .card-content {
  padding: 1.5rem;
  text-align: left;
}
#category-posts-26 .card-content h3 {
  font-size: 1.25rem;
  margin: 0 0 .75rem;
  color: #222;
}
#category-posts-26 .card-content p {
  font-size: .95rem;
  color: #555;
  margin-bottom: 1.25rem;
}

/* Read More link */
#category-posts-26 .readmore {
  font-size: .875rem;
  font-weight: 600;
  color: #4A4438;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color .3s ease;
}
#category-posts-26 .readmore i {
  margin-left: .25rem;
  transition: transform .3s ease;
}
#category-posts-26 .readmore:hover {
  color: #222;
}
#category-posts-26 .readmore:hover i {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
  #category-posts-26 .cards {
    flex-direction: column;
    align-items: center;
  }
  #category-posts-26 .cards-band::before {
    display: none;
  }
}



