
/* Section padding & background */
#category-posts-16 {
  padding: 80px 0;
  background: #fdfdfd;
}

/* Two-column layout */
#category-posts-16 .row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

/* Left hero image (30%) */
#category-posts-16 .col-left {
  flex: 0 0 30%;
  max-width: 30%;
}
#category-posts-16 .col-left img {
  width: 100%;
  border-radius: .75rem;
  display: block;
}

/* Right list (70%) */
#category-posts-16 .col-right {
  flex: 0 0 70%;
  max-width: 70%;
}

/* Section header */
#category-posts-16 .section-header {
  margin-bottom: 1.5rem;
}
#category-posts-16 .section-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: .5rem;
}
#category-posts-16 .section-subtitle {
  font-size: 1rem;
  color: #6c757d;
}

/* Post list */
#category-posts-16 .post-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
#category-posts-16 .post-item {
  padding: 1rem 0;
  border-bottom: 1px solid #e9ecef;
  transition: background .3s ease;
}
#category-posts-16 .post-item:last-child {
  border-bottom: none;
}
#category-posts-16 .post-item:hover {
  background: #f8f9fa;
}
#category-posts-16 .post-meta {
  font-size: .875rem;
  color: #6c757d;
  margin-bottom: .5rem;
}
#category-posts-16 .post-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #212529;
  text-decoration: none;
}
#category-posts-16 .post-title:hover {
  color: #4f46e5;
}
#category-posts-16 .post-excerpt {
  font-size: .95rem;
  color: #495057;
  margin: .5rem 0;
}

/* Read More button */
#category-posts-16 .btn-readmore {
  display: inline-flex;
  align-items: center;
  font-size: .875rem;
  font-weight: 500;
  color: #4f46e5;
  text-decoration: none;
  transition: color .3s ease;
}
#category-posts-16 .btn-readmore i {
  margin-left: .25rem;
  transition: transform .3s ease;
}
#category-posts-16 .btn-readmore:hover {
  color: #4338ca;
}
#category-posts-16 .btn-readmore:hover i {
  transform: translateX(3px);
}

/* Pagination & Load More */
#category-posts-16 .pagination-wrapper,
#category-posts-16 .load-more-wrapper {
  text-align: right;
  margin-top: 1.5rem;
}




#content-block-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow: hidden;
}
#content-block-16 .content-image img {
  max-width: 100%;
  height: auto;
  border-radius: 0.375rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
}
#content-block-16 .content-text {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#content-block-16 .content-text h2,
#content-block-16 .content-text h3 {
  font-weight: 600;
  color: #343a40;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}
#content-block-16 .content-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1rem;
}
#content-block-16 .content-text p:last-child {
  margin-bottom: 0;
}
#content-block-16 .content-text h5 {
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: #495057;
}
#content-block-16 .content-text ul {
  list-style: none;
  padding-left: 0;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
#content-block-16 .content-text ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #6c757d;
  font-size: 0.95rem;
}
#content-block-16 .content-text ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  position: absolute;
  left: 0;
  top: 0.15em;
  color: var(--bs-primary, #0d6efd);
  font-size: 0.9em;
}
@media (max-width: 767.98px) {
  #content-block-16 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  #content-block-16 .content-image {
    margin-bottom: 2rem;
    text-align: center;
  }
  #content-block-16 .content-text h2,
  #content-block-16 .content-text h3 {
    font-size: 1.6rem;
    text-align: center;
  }
  #content-block-16 .content-text {
    text-align: center;
  }
  #content-block-16 .content-text ul {
    display: inline-block;
    text-align: left;
  }
}



#call-to-action-4 {
  position: relative;

  background-size: cover;
  background-position: center;
  padding: 80px 15px;
  text-align: center;
  color: #fff;
}
#call-to-action-4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
#call-to-action-4 .content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
#call-to-action-4 h2 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}
#call-to-action-4 p {
  font-size: 1.3rem;
  margin-bottom: 30px;
}
#call-to-action-4 .btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 25px;
  font-size: 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
}
#call-to-action-4 .btn-primary {
  background-color: #ff5722;
  color: #fff;
  border: none;
}
#call-to-action-4 .btn-primary:hover {
  background-color: #e64a19;
}
#call-to-action-4 .btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}
#call-to-action-4 .btn-secondary:hover {
  background-color: #fff;
  color: #ff5722;
}


