.blog-post .blog-post-title A {
  font-size: 25px;
  line-height: 1.2;
  color: #254766;
  text-decoration: none;
  height: calc(3 * 1.2 * 25px); /* 3 lines */
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* max 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-post .date_line {
  font-size: 15px;
}
.blog-post .card-body {
  display: flex;
  flex-direction: column;
}
.blog-post .short_desc {
  font-size: 15px;
  margin-bottom: 50px;
}

.blog-post .short_desc,
.blog-post .short_desc p {
  display: -webkit-box;
  -webkit-line-clamp: 7; /* max 7 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-post .more {
  margin-top: auto;
}
.blog-post .img {
  height: 250px;
  overflow: hidden;
}
.blog-post .img img {
  object-fit: cover;
  height: 100%;
}
.gray_line.p-5 {
  padding-top: 20px !important;
}
@media (max-width: 575px) {
  .gray_line.p-5 {
    padding-top: 20px !important;
    padding-right: 10px !important;
    padding-left: 10px !important;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .gray_line.p-5 {
    padding-top: 20px !important;
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .gray_line.p-5 {
    padding-top: 20px !important;
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
}
@media (min-width: 1200px) and (max-width: 1399px) {
}
@media (min-width: 1400px) {
}
