.post-card {
  background: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
  transition: all 150ms;
  color: black;
  width: 100%;
  height: auto;
}
.post-card:hover {
  transform: scale(1.05);
  text-decoration: none;
}
.post-card img {
  width: 100%;
  object-fit: cover;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  height: 200px;
}
.post-card .card-content {
  padding: 0 15px;
}
.post-card .card-content .title {
  font-size: 1.2rem;
  line-height: 1.7rem;
  margin-bottom: 0.3rem !important;
  font-weight: 700;
  margin-top: 1rem;
  hyphens: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.post-card .card-content .date {
  margin-bottom: 0.5em;
  font-size: 0.9rem;
  line-height: 180%;
}
.post-card .card-content p {
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media (max-width: 993px) {
  .post-card {
    height: auto;
  }
  .post-card img {
    width: 100%;
    height: auto;
  }
}

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