h2 {
  font-weight: 400;
}

.blog-post-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
}
@media (max-width: 1199.98px) and (min-width: 768px) {
  .blog-post-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767.98px) {
  .blog-post-wrapper {
    grid-template-columns: 1fr;
  }
}
.blog-post-wrapper .blog-post-item {
  display: block;
  text-decoration: none;
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 80px 0 rgba(0, 0, 0, 0.2);
}
.blog-post-wrapper .blog-post-item img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}
.blog-post-wrapper .blog-post-item .blog-post-item-content {
  height: calc(100% - 250px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
  color: #212121;
}
.blog-post-wrapper .blog-post-item .blog-post-item-content .blog-post-item-title {
  font-weight: 500;
  font-size: 26px;
  padding-bottom: 10px;
}
.blog-post-wrapper .blog-post-item .blog-post-item-content .blog-post-item-teaser {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.blog-post-wrapper .blog-post-item .blog-post-item-content .blog-post-item-date {
  display: block;
  margin: 10px 0;
  font-size: 12px;
  color: #717586;
}
.blog-post-wrapper .blog-post-item .blog-post-item-content .blog-post-item-read-more {
  display: flex;
  justify-content: flex-end;
}
.blog-post-wrapper .blog-post-item .blog-post-item-content .blog-post-item-read-more .btn {
  margin-top: 15px;
  justify-self: flex-end;
  width: 30px;
  height: 30px;
  padding: 0;
}

/*# sourceMappingURL=blog.css.map */
