.news > div > h2 {
  font-size: clamp(32px, 3.5vw, 50px);
}

.home-news-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.home-news-link article,
.home-news-link article:hover {
  position: relative;
  padding: 22px 44px 22px 0;
  transition: background-color .18s ease;
}

.home-news-link article::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 16px;
  color: var(--orange);
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity .18s ease;
}

.home-news-link:hover article,
.home-news-link:focus-visible article {
  background: #fff;
}

.home-news-link:hover article::after,
.home-news-link:focus-visible article::after {
  opacity: 1;
}

.home-news-link:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

@media (max-width: 650px) {
  .news.section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .news > div > h2 {
    margin-bottom: 16px;
    font-size: 25px;
  }

  .home-news-link article,
  .home-news-link article:hover {
    padding: 12px 28px 12px 0;
  }

  .news .home-news-link h3 {
    margin-top: 6px;
    font-size: 15px;
    line-height: 1.5;
  }

  .news .home-news-link time,
  .news .home-news-link span {
    font-size: 9px;
  }

  .news .news-more {
    margin-top: 26px;
    padding: 12px 18px;
    font-size: 13px;
  }

  .home-news-link article::after {
    right: 8px;
  }
}
