.article-more-news {
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 70px 0;
  border-top: 1px solid var(--line);
}

.article-day-group {
  margin-top: 48px;
}

.article-day-group:first-of-type {
  margin-top: 0;
}

.article-day-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
  letter-spacing: -0.025em;
}

.article-day-title::after {
  content: '';
  height: 1px;
  flex: 1;
  background: var(--line);
}

.article-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.article-news-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 34px rgba(7, 17, 31, 0.06);
}

.article-news-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #dde4eb;
}

.article-news-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-news-copy {
  padding: 22px;
}

.article-news-copy p {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.article-news-copy h4 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.16;
}

.article-news-copy h4 a:hover {
  color: var(--blue);
}

.article-news-link {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  .article-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .article-more-news {
    padding: 52px 0;
  }
}
