
/* category-posts-7 Styles - Simplified List with Accent Color */
#category-posts-7 {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #f4f7f6; /* Light, clean background */
}

#category-posts-7 .section-header {
    margin-bottom: 3rem;
    text-align: center;
}

#category-posts-7 .section-header .section-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #2c3e50; /* Dark blue-gray */
    margin-bottom: 0.5rem;
}

#category-posts-7 .section-header .section-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d; /* Muted gray */
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

#category-posts-7 .elegant-post-list {
    list-style: none;
    padding-left: 0;
}

#category-posts-7 .elegant-post-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem 1rem;
    margin-bottom: 1rem;
    background-color: #ffffff;
    border-radius: 0.375rem; /* Bootstrap's default border-radius */
    border: 1px solid #e3e6ea; /* Light border */
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

#category-posts-7 .elegant-post-item:hover {
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

#category-posts-7 .item-icon-wrapper {
    margin-right: 1rem;
    flex-shrink: 0;
    color: #007bff; /* Accent color - Bootstrap primary */
    font-size: 1.25rem; /* Size of the icon */
    margin-top: 0.25rem; /* Align with first line of title */
}

#category-posts-7 .item-content {
    flex-grow: 1;
}

#category-posts-7 .post-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #34495e; /* Darker text color */
}

#category-posts-7 .post-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

#category-posts-7 .post-title a:hover {
    color: #007bff; /* Accent color on hover */
}

#category-posts-7 .post-meta {
    font-size: 0.85rem;
    color: #7f8c8d; /* Muted gray for meta */
    margin-bottom: 0.75rem;
}
#category-posts-7 .post-meta .meta-divider {
    margin: 0 0.5rem;
}


#category-posts-7 .post-excerpt {
    font-size: 0.95rem;
    color: #566573; /* Slightly lighter than title */
    line-height: 1.6;
    margin-bottom: 1rem;
}

#category-posts-7 .readmore-btn {
    font-weight: 500;
    font-size: 0.9rem;
    color: #007bff; /* Accent color */
    text-decoration: none;
    display: inline-flex; /* For icon alignment */
    align-items: center;
    transition: color 0.2s ease;
}

#category-posts-7 .readmore-btn:hover {
    color: #0056b3; /* Darker accent on hover */
    text-decoration: underline;
}
#category-posts-7 .readmore-btn i {
    margin-left: 0.35rem;
    font-size: 0.8em; /* Make arrow slightly smaller */
}

/* Pagination Wrapper */
#category-posts-7 .pagination-wrapper {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}
/* Basic styling for pagination, can be expanded */
#category-posts-7 .pagination-wrapper .page-link {
    color: #007bff;
}
#category-posts-7 .pagination-wrapper .page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
}




#text-block-8 {
  padding: 90px 0;
  background-color: var(--section-bg-color, #ffffff);
  color: var(--text-color, #343a40);
  position: relative;
  overflow: hidden;
}
#text-block-8::before {
  content: var(--quote-char, "“");
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  font-size: 25rem;
  font-family: Georgia, serif;
  color: var(--quote-mark-color, rgba(0, 123, 253, 0.06));
  z-index: 1;
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
  font-weight: bold;
}
#text-block-8 .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
#text-block-8 .section-title-optional {
  font-size: 1.1rem;
  font-weight: 600;
  color: #6c757d;
  margin-bottom: 10px;
}
#text-block-8 .text-heading {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text-color, #343a40);
  margin-bottom: 30px;
}
#text-block-8 .text-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color, #495057);
  opacity: 0.95;
  margin-bottom: 1.5rem;
}
#text-block-8 .text-paragraph:last-child {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  #text-block-8::before {
    font-size: 20rem;
    left: 2%;
  }
  #text-block-8 .text-heading {
    font-size: 2.2rem;
  }
  #text-block-8 .text-paragraph {
    font-size: 1.05rem;
  }
}
@media (max-width: 767.98px) {
  #text-block-8 {
    padding: 60px 0;
  }
  #text-block-8::before {
    font-size: 15rem;
    left: -5px;
    opacity: 0.8;
    top: 60%;
  }
  #text-block-8 .text-heading {
    font-size: 1.9rem;
  }
  #text-block-8 .text-paragraph {
    font-size: 1rem;
  }
}
@media (max-width: 575.98px) {
  #text-block-8::before {
    font-size: 12rem;
    top: 65%;
  }
}


