.blogs{
  display: flex;
  flex-direction: row;
  padding: 10px;
  border-radius: 10px;
  margin-top: 120px;
  gap: 30px;
}
.featured-image{
  padding: 20px 0;
}
.featured-image img{
  width: 100%;
}
.blog-post{
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 10px;
}
.blog-post-content{
  min-height: 190px;
}
.blog-post-content a{
  color: white;
  background-color: #b9b9b9;
  border-radius: 100px;
  padding: 0 10px;

}
.blog-post-header{
  color: rgb(107, 107, 107);
  font-weight: 400;
}
.blog-post-header >h2{
  font-size: 1.5rem;
  font-weight: bold;
  color: #f13724;
}
.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;
}
hr{
  margin: 10px 0;
}
@media (max-width: 1024px) {
  .blogs{
    margin-top: 150px;
  }
}
@media (max-width: 800px) {
  .blogs{
    display: flex;
    flex-direction: column-reverse;
    margin-top: 70px;
  }
  .widget-area{
    max-width: 100%;
  }
}
@media (max-width: 475px) {
  .blog-post{
    box-shadow: none;
    padding: 0;
  }
  .content{
    padding: 10px;
  }
  .blog-posts-grid{
    grid-template-columns: 1fr;
  }
}
