
/* 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;
  }
}




#call-to-action-20 {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 6rem;
  padding-bottom: 6rem;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
}
.cta-boxed-content {
  padding: 2.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.cta-boxed-headline {
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 2.2rem;
}
.cta-boxed-subtext {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  opacity: 0.9;
}
.cta-boxed-button .btn {
  padding: 0.8rem 2rem;
  font-weight: 600;
}
.cta-boxed-button .btn i {
  margin-right: 8px;
}
#call-to-action-20 .btn-warning {
}
@media (max-width: 767.98px) {
  #call-to-action-20 {
    padding-top: 4rem;
    padding-bottom: 4rem;
    min-height: 350px;
  }
  .cta-boxed-content {
    padding: 1.5rem;
  }
  .cta-boxed-headline {
    font-size: 1.8rem;
  }
  .cta-boxed-subtext {
    font-size: 1rem;
  }
}


