body {
    background-color: white;

}


.blog-archive-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 170px 20px 40px 20px
}


.blog-archive-container p {
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-family: 'FND-Questrial';
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 50px;
}


.blog-archive-title {
  font-size: 42px;
  line-height: 54px;
  margin-bottom: 40px;
  text-align: left;
  font-family: 'FND-Questrial';
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding-top: 50px;
  padding-bottom: 50px;
}



/* Full-width post card */
.blog-post-card.layout-full {
  grid-column: 1 / -1;
}

/* Half-width post cards */
.blog-post-card {
  background-color: #f8f8f8;
  
  padding: 30px;
  transition: all 0.3s;
}

.blog-post-card a {
  text-decoration: none;
  font-family: 'FND-Questrial';
  color: rgb(28, 31, 45);
  font-size: 24px;
}
.blog-post-image img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  height: auto;
  margin-bottom: 15px;
}
.blog-post-title {
  
  font-family: 'FND-Questrial';
  font-size: 24px;
  color: rgb(28, 31, 45);
}
.pagination {
  margin-top: 40px;
  text-align: center;
  
}

@media (max-width:760px) {
    .blog-grid {
        gap: 15px;
    }
    .blog-post-title {
        font-size: 18px;
    }
    
    /* Half-width post cards */
    .blog-post-card {
      
      
      padding: 15px;
     
    }
    
}




/* styling for the filter */

.blog-filter {
  margin-bottom: 15px;
  padding: 10px;
  font-family: 'FND-Mono';
  font-size: 18px;
  text-align: left;
}

.blog-filter label {
  
  font-family: 'FND-Mono';
  margin-right: 10px;
  font-size: 18px;
}

#category-select {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 18px;
  border-radius: 4px;
  border: 2px solid #ccc;
  min-width: 200px;
  font-family: 'FND-Mono';
  
}

/* Mobile styles */
@media (max-width: 768px) { 
    
   .blog-filter {
      margin-bottom: 15px;
      padding: 7px;
      font-family: 'FND-Mono';
      font-size: 16px;
      text-align: left;
    }
    
    .blog-filter label {
      
      font-family: 'FND-Mono';
      margin-right: 10px;
      font-size: 16px;
    }
    
    #category-select {
      padding-top: 15px;
      padding-bottom: 15px;
      padding-left: 15px;
      padding-right: 15px;
      font-size: 16px;
      
      min-width: 170px;
      
      
    }
    
}






/*PAGINATION STYLING*/
.pagination {
  margin-top: 40px;
  text-align: center;
  
  font-size: 18px;
  font-family: 'FND-Mono';
}

.pagination .page-numbers {
  display: inline-block;
  margin: 0 3px;
  padding: 8px 14px;
  background-color: rgb(28, 31, 45);
  color: white;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.pagination .page-numbers.current {
  background-color: #2f3a6e;
  color: #white;
  font-weight: bold;
}

.pagination .page-numbers:hover:not(.current) {
  background-color: #005177;
  color: #fff;
}

