.news-grid {
  display: flex;
  flex-direction: column;
  gap: 16px; /* Spacing between articles */
}

.news-card {
  display: flex;
  align-items: flex-start; /* Align date and content vertically */
  padding: 16px 0; /* Vertical spacing */
  border-bottom: 1px solid #efefef; /* Bottom border */
  margin: 20px 0px 60px;
}

.news-card:last-child {
  border-bottom: none; /* Remove border for the last item */
}

.news-card__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 10%;
    margin-right: 16px;
    text-align: center;
    border-right: 1px solid #efefef;
    border-radius: 4px;
    padding: 4px;
    text-transform: uppercase;
  }
}

.news-card__month {
    font-size: 19px !important;
    text-transform: uppercase;
    font-weight: 400;
    color: inherit;
  }

  .news-card__day {
    font-size: 30px;
    font-weight: 600;
    line-height: .75em;
    color: inherit;
  }

.news-card__content {
  flex: 1; /* Allow content to take remaining space */
}

.news-card__link {
  text-decoration: none;
  color: #000; /* Black text color for title */
}

.news-card__title {
  font-size: 24px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0 0 8px; /* Space below the title */
}

.news-card__teaser {
  color: #777; /* Gray text color for teaser */
  line-height: 1.75em; /* Improve readability */
  padding-bottom: 55px;
}