
#overview-7 {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
#overview-7 .overview-section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
#overview-7 .content-column {
  position: relative;
  z-index: 2;
  padding-left: 1rem;
}
#overview-7 .image-column {
  position: relative;
  z-index: 1;
}
#overview-7 .overview-image-wrapper {
  position: relative;
}
#overview-7 .overview-image {
  max-width: 115%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: block;
}
#overview-7 .section-heading {
  margin-bottom: 1rem;
}
#overview-7 .lead {
  margin-bottom: 1.5rem;
}
#overview-7 .feature-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}
#overview-7 .feature-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  color: #343a40;
}
#overview-7 .feature-list li i {
  color: var(--bs-success);
  margin-right: 0.75rem;
  font-size: 1.1rem;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#overview-7 .animated-fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: var(--animation-delay, 0s);
}
#overview-7 .section-heading {
  --animation-delay: 0.1s;
}
#overview-7 .lead {
  --animation-delay: 0.2s;
}
#overview-7 .feature-list li:nth-child(1) {
  --animation-delay: 0.3s;
}
#overview-7 .feature-list li:nth-child(2) {
  --animation-delay: 0.4s;
}
#overview-7 .feature-list li:nth-child(3) {
  --animation-delay: 0.5s;
}
#overview-7 .feature-list li:nth-child(4) {
  --animation-delay: 0.6s;
}
#overview-7 .btn {
  --animation-delay: 0.7s;
}
#overview-7 .overview-image {
  --animation-delay: 0.2s;
  animation: fadeInUp 0.8s ease-out forwards;
}
@media (max-width: 991.98px) {
  #overview-7 .overview-image {
    max-width: 100%;
    margin-left: 0;
    margin-top: 2rem;
  }
  #overview-7 .image-column {
    order: 2;
  }
  #overview-7 .content-column {
    order: 1;
    padding-left: 0;
  }
  #overview-7 .overview-section-padding {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}



/* 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;
  }
}



