.postCard {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.postsList.-gray .postCard,
.b1.-gray .postCard,
.b2.-gray .postCard {
  background-color: var(--color-white);
}

.postCard-image {
  display: flex;
  height: 200px;
  flex: 1 0 auto;
  background-color: var(--color-tum-grey-6);
}

.postCard-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.postCard-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  height: 100%;
  border-left: 1px solid var(--color-tum-separator);
  border-bottom: 1px solid var(--color-tum-separator);
  border-right: 1px solid var(--color-tum-separator);
  min-height: 230px;
}

.postsList.-gray .postCard-content,
.b1.-gray .postCard-content,
.b2.-gray .postCard-content {
  border: none;
}

.postCard-date {
  color: var(--color-tum-grey-6);
  display: none;
}

.postCard-categories {
  min-height: 24px;
  margin-bottom: 10px;
}

.postCard-category {
  color: var(--color-tum-brand-blue);
}

.postCard-title {
  color: var(--color-tum-dark-blue);
  margin-bottom: 10px;
}

.postCard-button {
  margin-top: auto;
}

.postCard-excerpt {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
