
/* 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;
}




#text-block-13 {
  padding: 80px 0;
  background-color: var(--section-bg-color, #ffffff);
  color: var(--text-color, #343a40);
}
#text-block-13 .container {
  max-width: 800px;
}
#text-block-13 .section-title-optional {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  color: #6c757d;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#text-block-13 .text-heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color, #343a40);
  margin-bottom: 20px;
}
#text-block-13 .intro-paragraph {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-color, #555e68);
  opacity: 0.9;
  margin-bottom: 50px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
#text-block-13 .steps-container {
}
#text-block-13 .step-item {
  margin-bottom: 35px;
  align-items: flex-start;
}
#text-block-13 .step-item:last-child {
  margin-bottom: 0;
}
#text-block-13 .step-number {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background-color: var(--number-bg-color, #0d6efd);
  color: var(--number-text-color, #ffffff);
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
#text-block-13 .step-content {
  flex-grow: 1;
}
#text-block-13 .step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-color, #343a40);
  margin-bottom: 8px;
}
#text-block-13 .step-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-color, #555e68);
  opacity: 0.9;
  margin: 0;
}
@media (max-width: 767.98px) {
  #text-block-13 {
    padding: 60px 0;
  }
  #text-block-13 .text-heading {
    font-size: 2rem;
  }
  #text-block-13 .intro-paragraph {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  #text-block-13 .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    margin-right: 15px;
  }
  #text-block-13 .step-title {
    font-size: 1.15rem;
  }
  #text-block-13 .step-description {
    font-size: 0.95rem;
  }
}


