
#hero-12 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 6rem 0 8rem 0;
  text-align: center;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}
#hero-12 .container {
  position: relative;
}
#hero-12 .hero-content-wrapper-12 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#hero-12 .hero-title-12 {
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
#hero-12 .hero-subtitle-12 {
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.95;
}
#hero-12 .hero-cta-button-12 {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  transition: transform 0.2s ease;
  background-color: #0d6efd;
  color: #ffffff;
}
#hero-12 .hero-cta-button-12:hover {
  transform: translateY(-3px);
}
@media (max-width: 767.98px) {
  #hero-12 {
    min-height: 60vh;
    padding: 4rem 0 6rem 0;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  }
  #hero-12 .hero-title-12 {
    font-size: 2.4rem;
  }
  #hero-12 .hero-subtitle-12 {
    font-size: 1.1rem;
  }
}



/* Section gradient & spacing */
#category-posts-9 {
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 0 120px;
  color: #fff;
  overflow: hidden;
}

/* Header */
#category-posts-9 .section-header {
  text-align: center;
  margin-bottom: 50px;
}
#category-posts-9 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
#category-posts-9 .section-subtitle {
  font-size: 1.1rem;
  opacity: .85;
}

/* Grid cards */
#category-posts-9 .post-card {
  background: rgba(255,255,255,0.1);
  border-radius: .5rem;
  overflow: hidden;
  transition: transform .3s ease;
}
#category-posts-9 .post-card:hover {
  transform: translateY(-5px);
}
#category-posts-9 .post-card img {
  width: 100%;
  display: block;
}

/* Card body */
#category-posts-9 .card-body {
  padding: 1rem;
}
#category-posts-9 .card-body h5 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
}
#category-posts-9 .card-body .btn {
  font-size: .9rem;
}

/* Wave SVG separator */
#category-posts-9 .wave-separator {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}
#category-posts-9 .wave-separator svg {
  display: block;
  width: 100%;
  height: auto;
}




/* === Section Base === */
.post-section {
  padding: 50px 0;
  background: #fff;
}
.post-section .section-header {
  text-align: center;
  margin-bottom: 30px;
}
.post-section .section-header h2 {
  font-size: 2rem;
  font-weight: 600;
}
.post-section .section-header p {
  color: #777;
  margin-top: 5px;
}

/* === List & Item === */
.post-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.post-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  transition: background 0.3s;
}
.post-item:last-child {
  border-bottom: none;
}
.post-item:hover {
  background: #f5f5f5;
}
.post-thumb {
  flex: 0 0 120px;
  margin-right: 20px;
}
.post-thumb img {
  width: 100%;
  height: auto;
  border-radius: 0.25rem;
}
.post-content {
  flex: 1;
}
.post-content h5 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.post-content .meta {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 10px;
}
.post-content .meta i {
  margin-right: 4px;
}
.post-content p {
  font-size: 0.95rem;
  color: #555;
}
.post-content .btn-readmore {
  font-size: 0.9rem;
}

/* === Responsive === */
@media (max-width: 576px) {
  .post-item {
    flex-direction: column;
  }
  .post-thumb {
    width: 100%;
    margin-bottom: 15px;
  }
}

/* === Pagination === */
.pagination-wrapper {
  text-align: center;
  margin: 30px 0;
}



