
#hero-24 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  padding: 8rem 0;
  text-align: center;
}
#hero-24 .container {
  width: 100%;
}
#hero-24 .hero-content-wrapper-24 {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
#hero-24 .hero-title-24 {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}
#hero-24 .hero-subtitle-24 {
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 0;
  opacity: 0.85;
}
@media (max-width: 991.98px) {
  #hero-24 {
    padding: 7rem 0;
  }
  #hero-24 .hero-title-24 {
    font-size: 3.2rem;
  }
  #hero-24 .hero-subtitle-24 {
    font-size: 1.2rem;
  }
}
@media (max-width: 767.98px) {
  #hero-24 {
    padding: 5rem 0;
    min-height: 40vh;
  }
  #hero-24 .hero-title-24 {
    font-size: 2.6rem;
  }
  #hero-24 .hero-subtitle-24 {
    font-size: 1.1rem;
  }
}



/* Container */
#category-posts-25 {
  padding: 80px 20px;
  background: #f9fafb;
}
#category-posts-25 .section-header {
  text-align: center;
  margin-bottom: 40px;
}
#category-posts-25 .section-title {
  font-size: 2rem;
  font-weight: 600;
}
#category-posts-25 .section-subtitle {
  font-size: 1rem;
  color: #555;
  margin-top: .5rem;
}

/* Mosaic grid */
#category-posts-25 .mosaic-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  grid-template-areas:
    "large small1 small2"
    "large small3 small4";
  gap: 1rem;
}
@media (max-width: 992px) {
  #category-posts-25 .mosaic-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
    grid-template-areas:
      "large large"
      "small1 small2"
      "small3 small4";
  }
}
@media (max-width: 576px) {
  #category-posts-25 .mosaic-grid {
    display: block;
  }
}

/* Card base */
#category-posts-25 .mosaic-card {
  position: relative;
  overflow: hidden;
  border-radius: .75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform .3s ease;
}
#category-posts-25 .mosaic-card:hover {
  transform: translateY(-5px);
}

/* Positioning */
#category-posts-25 .mosaic-card-1 { grid-area: large; }
#category-posts-25 .mosaic-card-2 { grid-area: small1; }
#category-posts-25 .mosaic-card-3 { grid-area: small2; }
#category-posts-25 .mosaic-card-4 { grid-area: small3; }
#category-posts-25 .mosaic-card-5 { grid-area: small4; }

/* Image fill */
#category-posts-25 .mosaic-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
#category-posts-25 .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity .3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  color: #fff;
  text-align: left;
}
#category-posts-25 .mosaic-card:hover .overlay {
  opacity: 1;
}

/* Overlay content */
#category-posts-25 .overlay h3 {
  font-size: 1.125rem;
  margin: 0 0 .5rem;
}
#category-posts-25 .overlay .meta {
  font-size: .875rem;
  margin-bottom: .75rem;
}
#category-posts-25 .overlay .meta i {
  margin-right: .25rem;
}

/* Read More button */
#category-posts-25 .btn-readmore {
  display: inline-flex;
  align-items: center;
  font-size: .875rem;
  font-weight: 500;
  color: #fff;
  border: 1px solid #fff;
  border-radius: .5rem;
  padding: .4rem .75rem;
  transition: background .3s ease, color .3s ease;
}
#category-posts-25 .btn-readmore:hover {
  background: #fff;
  color: #333;
}
#category-posts-25 .btn-readmore i {
  margin-left: .25rem;
  transition: transform .3s ease;
}
#category-posts-25 .btn-readmore:hover i {
  transform: translateX(3px);
}

/* Pagination & Load More */
#category-posts-25 .pagination-wrapper,
#category-posts-25 .load-more-wrapper {
  text-align: center;
  margin-top: 2rem;
}




#content-block-27 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
#content-block-27 .section-header {
  margin-bottom: 3rem;
  text-align: center;
}
#content-block-27 .section-header h2 {
  font-weight: 700;
  color: #343a40;
  margin-bottom: 0.5rem;
}
#content-block-27 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
}
#content-block-27 .info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 0 0.5rem;
}
#content-block-27 .info-item-icon {
  font-size: 1.75rem;
  color: var(--bs-primary, #0d6efd);
  margin-right: 1rem;
  min-width: 1.5em;
  text-align: center;
  margin-top: 0.1em;
}
#content-block-27 .info-item-content {
  flex-grow: 1;
}
#content-block-27 .info-item-content h5 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #495057;
}
#content-block-27 .info-item-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  #content-block-27 .info-item {
    margin-bottom: 0;
  }
}


