.blog_card{
    min-height: 596px;
    max-width: 410px;
    position: relative;
}
.blog_card_img{
    height: 450px;
    width: 410px;
}
.blog_card_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.blog_info{
  max-width: 370px;
  max-height: 238px;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  position: absolute;
  text-align: left;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  height: 100%;
  justify-content: space-between;
}


.blog_info_data p{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    color: var(--black);
    line-height: 20px;
}
.blog_info_title h2{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 28px;
    line-height: 132%;
    color: var(--black);
    word-wrap: break-word;
    max-height: 111px;
    overflow: hidden;
}
.see_more{
    display: flex;
    gap: 15px;
}
.see_more p{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 17px;
    color: var(--black);
    line-height: 20px;
}




@media (max-width: 1024px) {

    .blog_card{
        min-height: 547px;
        max-width: 315px;
    }
    .blog_card_img{
        height: 450px;
        width: 315px;
    }
    .blog_info{
        padding: 20px;
        max-width: 275px;
        max-height: 197px;
    }
    .blog_info_title h2{
        font-size: 20px;
        line-height: 150%;
    }
 
}
@media (max-width: 768px) {
    .blog_card{
        min-height: 534px;
        max-width: 354px;
    }
    .blog_card_img{
        width: 354px;
    }
  

}
@media (max-width: 425px) {
    .blog_card_img{
        width: 290px;
    }
}   