.content-text h2{
    font-size: 3vw;
    padding-top: 0
}
.policy-section {
    background-color: unset;
    padding-top:0
}
.news-container {
    padding: 4rem ;
    padding-top:0
}
.news-board {
    background: var(--primary-red);
    border-radius: 3.9vw;
    padding: 6vw;
    display: grid;
    align-items: start; /* makes rows align at the top, not stretch */
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 2vw;
}
.news-card {
  background: #fff;
  border: 1px solid #ddd;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.news-image {
  width: 100%;
  height: auto; /* natural image height */
  object-fit: cover;
}

.news-content {
  padding: 3vw;
}

.news-content h3 {
    font-size: max(1.5em,2.3vw);
    line-height: 1.3;
    font-weight: 400;
    color: var(--primary-red);
    margin-bottom: 0.5em;
}
.news-content:hover, .news-content:hover h3{
    color: var(--primary-yellow);
}
@media screen and (max-width:768px) {
    .news-board {
        grid-template-columns: unset;
        gap:4vw
    }
}
@media screen and (max-width:430px) {
    .news-container {
        padding: 2rem
    }
}