.postArticle{
  color: #3d1951;
  margin-top:1em;
  margin-bottom:1em;
  font-size:24px !important;
  font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
  font-weight:bold;
  text-decoration:none;  
  line-height:1.5;
}
.blog-cards {
  display: flex;
  justify-content: space-between;
}

.blogRecentTitle{
  margin-top:10px; 
  padding:0 20px 0 20px;
}
.blogRecentText{
  gap:10px;
  display:flex;
  flex-direction: column;
}

.blog-card {
  width: 30%;
  box-sizing: border-box;
  background-color:#f5f1f1;
  border-radius: 16px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-card img {
 width: 100%;
  height: 200px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  display: flex;
  justify-content: center;
  object-fit: cover;
  
}


.recentBlogLink{
  font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
  font-size: 1.2em;
  margin: 10px 0;
  text-align: left;
  text-decoration:none;
  color:#3d1951 !important;
  font-size:24px;
  font-weight:bold;
}

.blog-card p {
  height: 120px;
  overflow: hidden; 
  text-align: left;
  flex-grow: 1; 
  color:#3d1951;
  font-family: 'Aktiv Grotesk', sans-serif;
  padding: 0 20px 0 20px;
  line-height: 1.4;
    }
}

.read-more {
  display: block;
  margin-top: 5px;
  color: #3d1951;
  text-decoration: none;
  text-align: left;
  align-self: flex-start; 
  font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
  font-weight:bold;
  font-size:18px;
  padding-bottom:20px;
  padding:0 20px 20px 20px;
}

.read-more:hover{
  transform: scale(1.05);
}


@media (max-width: 900px) {
  .blog-cards {
    flex-direction: column; 
  }

  .blog-card {
    width: 100%; 
    margin-bottom: 20px; 
  }
  .blogRecentTitle{
  margin-top:20px; 
  height: auto;
  margin-bottom:10px;
}
  .blog-card p{
    height: 160px;
  }
  
}