.blogs{
  display: flex;
  flex-direction: row;
  padding: 10px;
  border-radius: 10px;
  margin-top: 40px;
  gap: 30px;
}
.featured-image img{    
  min-width: 400px;
  max-width: 400px;
  max-height: 350px;
  min-height: 350px;
  /* height: 280px; */
  /* border-bottom-left-radius: 20px;
  border-top-left-radius: 20px; */
}
.blog-post{
  box-shadow: 0 8px 20px rgba(40, 28, 89, 0.12);
  /* padding: 10px; */
  background-color: white;
  border: 1px solid rgba(78, 141, 156, 0.18);
  /* border-radius: 20px; */
  margin-bottom: 20px;
}
.entry-meta{
  padding: 20px 0;
  font-size: 20px;
  color: #281C59;
}
.post-image{
  position: absolute;
  right: 0;
  max-width: 250px;
  max-height:250px;
  min-width: 250px;
  min-height:250px;
  margin-bottom: 20px;
  border-radius: 8px;
}
.site-author{
  color: #281C59;
  margin-bottom: 10px;
}
.blog-flex{
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.blog-post-content{
  min-height: 190px;
}
.blog-post-content a{
  color: #281C59;

}
.blog-post-header{
  color: #281C59;
  font-weight: 400;
  font-size: 20px;
  margin: 0 10px;
}
.blog-post-header >h2{
  font-size: 1rem;
  font-weight: bold;
  color: #281C59;
}
.read-more{
  color: #281C59;
  font-weight: 600;
}
.pagination{
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.page-numbers{
  padding: 5px 10px;
  background-color: #EDF7BD;
  margin: 3px;
  color: #281C59;
  border: 1px solid rgba(78, 141, 156, 0.25);
}
.current{
  background-color: #281C59;
  color: white;
}
hr{
  margin: 10px 0;
}
.blog-container {
  max-width: 900px;
  margin: 0 auto;
  /* padding: 40px 20px; */
  background-color: white;
  margin-top: 30px;
}

h1 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #281C59;
}

h2 {
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 15px;
  color: #281C59;
  border-bottom: 2px solid #bb37ff;
}

p {
  margin-bottom: 15px;
  font-size: 14px;
  color: #3f4a52;
}

ul {
  margin-left: 20px;
}

li {
  font-size: 14px;
  color: #3f4a52;
}

.image-section {
  text-align: center;
  margin: 40px 0;
}

.image-section img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.highlight {
  background-color: #EDF7BD;
  padding: 2px 6px;
  border-radius: 3px;
}
@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: 850px) {
  .post-image{    
    position: relative;
    max-width: 450px;
    max-height:350px;
    min-width: 450px;
    min-height:350px;
  }
}
@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;
  }
}