
/* Root variables */
:root {
  --card-bg: #ffffff;
  --card-radius: .75rem;
  --card-shadow: 0 4px 15px rgba(0,0,0,0.1);
  --accent-color: #4f46e5; /* indigo-600 */
}

/* Section container */
#category-posts-10 {
  padding: 80px 0;
  background: #f8f9fa;
}
#category-posts-10 .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
#category-posts-10 .section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #212529;
}
#category-posts-10 .section-subtitle {
  font-size: 1rem;
  color: #6c757d;
}

/* Grid */
#category-posts-10 .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 2rem;
}

/* Card */
#category-posts-10 .post-card {
  background: var(--card-bg);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transform: translateY(20px) scale(0.98);
  opacity: 0;
  transition: transform .6s ease, opacity .6s ease;
  perspective: 1000px;
}
#category-posts-10 .post-card.visible {
  transform: translateY(0) scale(1);
  opacity: 1;
}
#category-posts-10 .post-card:hover {
  transform: rotateX(2deg) rotateY(-2deg);
}

/* Image */
#category-posts-10 .post-card img {
  width: 100%;
  display: block;
}

/* Card body */
#category-posts-10 .card-body {
  padding: 1rem;
}
#category-posts-10 .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .75rem;
  color: #212529;
}
#category-posts-10 .btn-readmore {
  font-size: .875rem;
  color: var(--accent-color);
  font-weight: 500;
  text-decoration: none;
}
#category-posts-10 .btn-readmore i {
  margin-left: .25rem;
  transition: transform .3s ease;
}
#category-posts-10 .btn-readmore:hover i {
  transform: translateX(3px);
}

/* Pagination & Load More */
#category-posts-10 .pagination-wrapper,
#category-posts-10 .load-more-wrapper {
  text-align: center;
  margin-top: 2.5rem;
}




#cta-banner-4 {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
  border-radius: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
#cta-banner-4 .split-background-container {
  position: absolute;
  inset: 0;
  display: flex;
  z-index: 1;
  flex-direction: row;
}
#cta-banner-4.split-horizontal .split-background-container {
  flex-direction: column;
}
#cta-banner-4 .split-part {
  flex: 1 1 50%;
  position: relative;
  background-size: cover;
  background-position: center center;
}
#cta-banner-4 .split-part.has-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
#cta-banner-4 .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 3rem 1.5rem;
}
#cta-banner-4 .cta-content {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
#cta-banner-4 .cta-content.align-left {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}
#cta-banner-4 .cta-content.align-right {
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}
#cta-banner-4.content-center-overlay .cta-content {
  max-width: 700px;
}
#cta-banner-4 .cta-title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}
#cta-banner-4 .cta-subtitle {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
#cta-banner-4 .cta-button .btn {
  padding: 0.9rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  #cta-banner-4 {
    min-height: unset;
  }
  #cta-banner-4 .split-background-container {
    flex-direction: column;
  }
  #cta-banner-4 .split-part {
    min-height: 200px;
  }
  #cta-banner-4 .container {
    padding: 3rem 1rem;
  }
  #cta-banner-4 .cta-content {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    max-width: 90%;
  }
  #cta-banner-4.content-part1 .container {
    padding-bottom: 1rem;
  }
  #cta-banner-4.content-part2 .container {
    padding-top: 1rem;
  }
  #cta-banner-4 .cta-title {
    font-size: 2rem;
  }
  #cta-banner-4 .cta-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  #cta-banner-4 .cta-button .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}


