.blogs{
  display: flex;
  flex-direction: row;
  padding: 10px;
  border-radius: 10px;
  margin-top: 40px;
  gap: 30px;
}
.featured-image img{    
  min-width: 350px;
  max-width: 350px;
  height: 280px;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
}
.blog-post{
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* padding: 10px; */
  background-color: white;
  border-radius: 20px;
  margin-bottom: 20px;
}
.entry-meta{
  padding: 20px 0;
  font-size: 20px;
  color: rgb(107, 107, 107);
}
.site-author{
  color: #fb2056;
  margin-bottom: 10px;
}
.blog-flex{
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.blog-post-content{
  min-height: 190px;
}
.blog-post-content a{
  color: #fb2056;

}
.blog-post-header{
  color: rgb(107, 107, 107);
  font-weight: 400;
  font-size: 20px;
  margin: 0 10px;
}
.blog-post-header >h2{
  font-size: 1.5rem;
  font-weight: bold;
  color: #404040;
}
.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) {
  .blog-flex{
    flex-direction: column;
  }
  .featured-image img {
      min-width: 100%;
      max-width: 100%;
      border-radius: 0;
  }
  .blogs{
    max-width: 700px;
  }
  .blog-post-header{
    margin: 20px;
  }
}
@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;
  }
}
