
#hero-11 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 65vh;
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
  text-align: left;
  color: #ffffff;
  --hero-overlay-color: rgba(0, 0, 0, 0.5);
}
#hero-11::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--hero-overlay-color);
  z-index: 1;
}
#hero-11 .container {
  position: relative;
  z-index: 2;
}
#hero-11 .hero-content-wrapper-11 {
  max-width: 650px;
  margin-left: 0;
  margin-right: auto;
}
#hero-11 .hero-title-11 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}
#hero-11 .hero-subtitle-11 {
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
}
#hero-11 .hero-cta-button-11 {
  display: inline-block;
  padding: 0.8rem 2.1rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background-color: #0d6efd;
  color: #ffffff;
}
#hero-11 .hero-cta-button-11:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767.98px) {
  #hero-11 {
    min-height: 60vh;
    padding: 4rem 0;
    text-align: center;
    justify-content: center;
  }
  #hero-11 .hero-content-wrapper-11 {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  #hero-11 .hero-title-11 {
    font-size: 2.4rem;
  }
  #hero-11 .hero-subtitle-11 {
    font-size: 1.1rem;
  }
}



/* Section background & spacing */
#category-posts-18 {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  overflow: hidden;
}

/* Subtle dotted texture overlay */
#category-posts-18::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: radial-gradient(rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 1;
}

/* Container above overlay */
#category-posts-18 .container {
  position: relative;
  z-index: 2;
}

/* Header */
#category-posts-18 .section-header {
  text-align: center;
  margin-bottom: 40px;
}
#category-posts-18 .section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
}
#category-posts-18 .section-subtitle {
  font-size: 1rem;
  color: #555;
}

/* Grid cards */
#category-posts-18 .post-card {
  background: #fff;
  border-radius: .75rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding-top: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
#category-posts-18 .post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Circular image */
#category-posts-18 .post-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid #fff;
}

/* Card body */
#category-posts-18 .card-body {
  padding: 1rem;
  margin-top: 60px;
}
#category-posts-18 .card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: .75rem;
  color: #212529;
}
#category-posts-18 .card-excerpt {
  font-size: .95rem;
  color: #666;
  margin-bottom: 1rem;
}

/* Read More button */
#category-posts-18 .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-18 .btn-readmore i {
  margin-left: .25rem;
  transition: transform .3s ease;
}
#category-posts-18 .btn-readmore:hover {
  color: #4338ca;
}
#category-posts-18 .btn-readmore:hover i {
  transform: translateX(3px);
}

/* Pagination & Load More */
#category-posts-18 .pagination-wrapper,
#category-posts-18 .load-more-wrapper {
  text-align: center;
  margin-top: 2.5rem;
}




/* style.css for post-section-1 */
#post-section-1 {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #f9f9f9; /* A slightly different light background */
}

#post-section-1 .section-header {
    margin-bottom: 45px;
}

#post-section-1 .section-header .section-title {
    font-size: 2.2rem; /* Adjusted font size */
    font-weight: 700;
    color: #2c3e50; /* A deep blue/grey color */
    margin-bottom: 8px;
}

#post-section-1 .section-header .section-subtitle {
    font-size: 1rem;
    color: #7f8c8d; /* A softer grey for subtitle */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

#post-section-1 .article-card {
    background-color: #ffffff;
    border: none; /* Removed border, relying on shadow */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* To ensure child elements like image respect border-radius */
}

#post-section-1 .article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

#post-section-1 .article-card-image-wrapper {
    width: 100%;
    height: 220px; /* Fixed height for consistency */
    overflow: hidden;
}

#post-section-1 .article-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

#post-section-1 .article-card:hover .article-card-image {
    transform: scale(1.07);
}

#post-section-1 .article-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

#post-section-1 .article-categories {
    margin-bottom: 12px;
}

#post-section-1 .article-category-link {
    font-size: 0.78rem;
    font-weight: 500;
    padding: 4px 10px;
    margin-right: 6px;
    margin-bottom: 6px; /* For wrapping badges */
    display: inline-block;
    background-color: #e74c3c; /* A distinct primary color */
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

#post-section-1 .article-category-link:hover {
    background-color: #c0392b; /* Darker shade on hover */
}

#post-section-1 .article-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #34495e; /* Darker text color */
    margin-bottom: 10px;
    line-height: 1.4;
}

#post-section-1 .article-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

#post-section-1 .article-title a:hover {
    color: #e74c3c; /* Primary color on hover */
}

#post-section-1 .article-meta {
    font-size: 0.85rem;
    color: #95a5a6; /* Lighter grey for meta */
    margin-bottom: 15px;
}

#post-section-1 .article-meta .meta-icon {
    margin-right: 6px;
    color: #bdc3c7; /* Icon color */
}

#post-section-1 .article-excerpt {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.65;
    margin-bottom: 20px;
    flex-grow: 1; /* Pushes button to the bottom */
}

#post-section-1 .article-readmore-btn {
    background-color: #3498db; /* A different accent color for button */
    border-color: #3498db;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    margin-top: auto; /* Stick to bottom */
    align-self: flex-start; /* Align button to the left */
}

#post-section-1 .article-readmore-btn .btn-icon {
    margin-left: 8px;
    transition: transform 0.2s ease;
}

#post-section-1 .article-readmore-btn:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

#post-section-1 .article-readmore-btn:hover .btn-icon {
    transform: translateX(3px);
}

#post-section-1 .pagination-container {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    #post-section-1 .article-card-image-wrapper {
        height: 200px;
    }
    #post-section-1 .article-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 767.98px) {
    #post-section-1 {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    #post-section-1 .section-header .section-title {
        font-size: 1.9rem;
    }
    #post-section-1 .article-card {
        margin-bottom: 30px; /* Add margin for stacked cards */
    }
    #post-section-1 .article-card-image-wrapper {
        height: 180px;
    }
}



