.news-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  min-height: 280px;
  align-items: center;
}

.news-card-heading {
  font-size: 24px;
  line-height: 32px;
  align-self: flex-start;
}

.news-card-footer {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}

.news-card > img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  max-height: 200px;
}

.news-card-text {
  font-size: 17px;
  line-height: 24px;
}

.news-card-content-wrapper,
.news-card-date-header {
  display: none;
}

.news-card-date-header {
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.news-card-content-wrapper {
  justify-content: space-between;
  align-items: flex-end;

  .news-card-text {
    width: 80%;
  }

  .news-card-content-button {
    align-self: end;
  }
}
