.section-blog-post-cards {
	position: relative;
}
.section-blog-post-cards article {
  background: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.section-blog-post-cards .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}
.section-blog-post-cards .post-img img{
  transition: 0.3s;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-blog-post-cards .post-img:hover img{
  transform: scale(1.1);
  cursor: pointer;
}
.section-blog-post-cards .post-category {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 10px;
}
.section-blog-post-cards .post-category a{
  color: var(--gray);
}
.section-blog-post-cards .post-category a:hover{
  text-decoration: underline;
}
.section-blog-post-cards .post-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.section-blog-post-cards .post-title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.section-blog-post-cards .post-title a:hover {
  color: var(--accent-color);
}
.section-blog-post-cards .post-excerpt p{
	margin: 0;
}