/* Apply background color to the entire body */
body {
  background-color: #1a1b1e;
}

/* Styles for featured post */
.blog-index__featured-post {
  margin-bottom: 64px;
  width: 100%;
  box-shadow: -4px 9px 25px -6px rgba(0, 0, 0, 0.1);
  background-color: #1a1b1e; /* Background color for featured post */
}

.blog-index__featured-post .blog-index__post-content-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.blog-index__featured-post-content {
  padding: 40px;
  background-color: #1a1b1e; /* Background color for post content */
}

.blog-index__post-tags {
  margin-bottom: 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
}

a.blog-post__tag-link {
  margin-right: 8px;
  margin-bottom: 8px;
  font-weight: 300;
}

.blog-index__post-title>h3 {
  font-size: 34px;
}

.blog-index__post-title>h3>a {
  font-weight: 500;
}

.blog-index__post-content-summary {
  margin-bottom: 0.5em;
}

/* Styles for blog index wrapper */
.blog-index__wrapper {
  margin: 0 auto;
  margin-bottom: 85px;
  display: grid;
  justify-content: center;
  grid-auto-rows: minmax(30px, auto);
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 20px;
  background-color: #1a1b1e; /* Background color for the wrapper */
}

@media (max-width: 992px) {
  .blog-index__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.blog-index__post {
  margin-bottom: 0;
  max-width: 820px;
  width: 100%;
  box-shadow: -4px 9px 25px -6px rgba(0, 0, 0, 0.1);
  background-color: #1a1b1e; /* Background color for each post */
}

.blog-index__wrapper .blog-index__post-content-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.blog-index__post-container {
  padding: 27px 24px 32px;
  background-color: #1a1b1e; /* Background color for post container */
}

/* Additional styles for posts, images, and other elements */
.blog-author-heading,
.blog-tag-heading {
 
