.card {
  width: 275px;
  height: 120px;
  border: 1px solid #000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  background-color: #111;
  overflow: hidden;
}
.card-body {
  padding: 6px 8px;
  flex-grow: 1;
  overflow: hidden;
}

.card-body {
  padding: 6px 8px;
  flex-grow: 1;
}

.card-title {
  background-color: #DCDCDC;
  font-size: 14px;
  padding: 4px 6px;
  margin: -6px -8px 4px -8px;
  font-weight: bold;
  color: #000;
}

.card-text {
  font-size: 13px;
  color: #ccc;
  line-height: 1.2em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;        /* 👈 limit to 2 lines */
  -webkit-box-orient: vertical;
}

.card-footer {
  background-color: #2a2a2a;
  font-size: 13px;
  color: white;
  padding: 4px 8px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #444;
}


.card-title a,
.card-footer a,
.card-title-link,
.card-footer-link {
  cursor: pointer;
}

