#homeNewsSection[hidden] {
  display: none;
}

.home-news-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, .85fr));
  gap: 20px;
}

.home-news-card {
  overflow: hidden;
  border: 1px solid #ded9cc;
  border-radius: 20px;
  background: #fff;
}

.home-news-card--featured {
  grid-row: span 1;
}

.home-news-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #f5f2eb;
}

.home-news-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .25s ease;
}

.home-news-card--featured .home-news-media img {
  aspect-ratio: 16 / 9;
}

.home-news-media:hover img {
  transform: scale(1.02);
}

.home-news-play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding-left: 4px;
  color: #fff;
  border-radius: 50%;
  background: rgba(44,45,37,.86);
  font-size: 1.25rem;
}

.home-news-content {
  padding: 20px;
}

.home-news-type {
  margin: 0 0 8px;
  color: #4e7019;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.home-news-content h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.04;
}

.home-news-content p {
  color: #5d5e58;
  line-height: 1.55;
}

.home-news-link {
  color: #4e7019;
  font-weight: 800;
}

.home-news-message {
  margin-top: 15px;
  color: #666760;
}

@media (max-width: 950px) {
  .home-news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-news-card--featured {
    grid-column: 1 / -1;
  }
}

@media (max-width: 650px) {
  .home-news-grid {
    grid-template-columns: 1fr;
  }

  .home-news-card--featured {
    grid-column: auto;
  }
}
