.blog-posts-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
}
.blog-post{
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 10px;
}
.blog-post-content{
  min-height: 190px;
}
.blog-post-header >h2{
  font-size: 1.2rem;
  font-weight: bold;
  color: black;
}
.read-more{
  color: rgb(15, 106, 190);
}
.pagination{
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.page-numbers{
  padding: 5px 10px;
  background-color: rgb(236, 236, 236);
  margin: 3px;
}
.current{
  background-color: rgb(15, 106, 190);
  color: white;
}
@media (max-width: 475px) {
  .blog-post{
    box-shadow: none;
    padding: 0;
  }
  .content{
    padding: 10px;
  }
  .blog-posts-grid{
    grid-template-columns: 1fr;
  }
}
