
#overview-20 {
  background-color: var(--section-bg-color, #f8f9fa);
  overflow: hidden;
}
#overview-20 .overview-section-padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
#overview-20 .section-intro {
  margin-bottom: 3rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
#overview-20 .section-intro .section-heading {
  margin-bottom: 0.5rem;
}
#overview-20 .section-intro .lead {
  color: #6c757d;
  margin-bottom: 0;
}
#overview-20 .content-detail-section {
  margin-bottom: 2rem;
}
#overview-20 .content-detail-section h4.sub-heading {
  font-weight: 600;
  font-size: 1.3rem;
  color: #343a40;
  margin-bottom: 0.75rem;
}
#overview-20 .content-detail-section p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 0;
}
#overview-20 .integrated-quote {
  margin: 2.5rem 0;
  padding: 2rem;
  background-color: #ffffff;
  border-left: 5px solid var(--bs-primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  border-radius: 0 0.375rem 0.375rem 0;
  position: relative;
}
#overview-20 .integrated-quote::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--bs-primary);
  opacity: 0.2;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  line-height: 1;
}
#overview-20 .blockquote-text {
  font-size: 1.15rem;
  font-style: italic;
  color: #495057;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
#overview-20 .blockquote-footer {
  font-size: 0.95rem;
  color: #6c757d;
  text-align: right;
  position: relative;
  z-index: 1;
}
#overview-20 .blockquote-footer cite {
  font-weight: 600;
  color: #343a40;
  font-style: normal;
}
#overview-20 .blockquote-footer .author-title {
  display: block;
  font-size: 0.85rem;
}
@media (max-width: 767px) {
  #overview-20 .integrated-quote {
    margin: 2rem 0;
    padding: 1.5rem;
  }
  #overview-20 .blockquote-text {
    font-size: 1.05rem;
  }
  #overview-20 .content-detail-section h4.sub-heading {
    font-size: 1.2rem;
  }
}



/* Section wrapper */
#category-posts-30 {
  position: relative;
  padding: 80px 20px;
  background: #f5f5f5;
  overflow: hidden;
}

/* Header */
#category-posts-30 .section-header {
  text-align: center;
  margin-bottom: 60px;
}
#category-posts-30 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
#category-posts-30 .section-subtitle {
  font-size: 1rem;
  color: #666;
}

/* Timeline line */
#category-posts-30 .timeline {
  position: relative;
  margin: 0 auto;
  padding: 2rem 0;
  max-width: 800px;
}
#category-posts-30 .timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #ccc;
  transform: translateX(-50%);
}

/* Timeline item */
#category-posts-30 .timeline-item {
  position: relative;
  width: calc(50% - 30px);
  padding: 1rem 2rem;
  margin-bottom: 40px;
  background: #fff;
  border-radius: .5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform .3s ease, box-shadow .3s ease;
  opacity: 0;
  transform: translateY(20px);
}
#category-posts-30 .timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}
#category-posts-30 .timeline-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Left/right positioning */
#category-posts-30 .timeline-item:nth-child(odd) {
  left: 0;
}
#category-posts-30 .timeline-item:nth-child(even) {
  left: 50%;
}

/* Connector dot */
#category-posts-30 .timeline-item::before {
  content: '';
  position: absolute;
  top: 20px;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 4px solid #ff6f61;
  border-radius: 50%;
}
#category-posts-30 .timeline-item:nth-child(odd)::before {
  right: -36px;
}
#category-posts-30 .timeline-item:nth-child(even)::before {
  left: -36px;
}

/* Content inside item */
#category-posts-30 .item-date {
  font-size: .875rem;
  color: #999;
  margin-bottom: .5rem;
}
#category-posts-30 .item-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: .75rem;
  color: #333;
}
#category-posts-30 .item-excerpt {
  font-size: .95rem;
  color: #555;
  margin-bottom: 1rem;
}

/* Read More button */
#category-posts-30 .btn-readmore {
  font-size: .875rem;
  font-weight: 500;
  color: #ff6f61;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color .3s ease;
}
#category-posts-30 .btn-readmore i {
  margin-left: .25rem;
  transition: transform .3s ease;
}
#category-posts-30 .btn-readmore:hover {
  color: #e6554b;
}
#category-posts-30 .btn-readmore:hover i {
  transform: translateX(4px);
}

/* Mobile: full width */
@media (max-width: 768px) {
  #category-posts-30 .timeline::before {
    left: 8px;
  }
  #category-posts-30 .timeline-item {
    width: 100%;
    padding-left: 2.5rem;
    margin-bottom: 30px;
  }
  #category-posts-30 .timeline-item:nth-child(even) {
    left: 0;
  }
  #category-posts-30 .timeline-item::before {
    left: 0;
    right: auto;
  }
}

/* Pagination & Load More */
#category-posts-30 .pagination-wrapper,
#category-posts-30 .load-more-wrapper {
  text-align: center;
  margin-top: 2rem;
}



