.news-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.news-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.news-title {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    padding: 24px;
}

.news-title h3 {
    font-size: 20px;
}

@media only screen and (max-width: 1024px) {
  .news-card {
    margin-bottom: 10px;
    margin-top: 10px;
  }

  .row:last-child .col:last-child .news-card:last-child {
    margin-bottom: 0;
  }

  .row:first-child .col:first-child .news-card:first-child {
    margin-top: 0;
  }
}