.news-page {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 42px;
}

.news-page h1 {
  margin: 0 0 14px;
  font-size: 42px;
  line-height: 1.12;
}

.news-date {
  display: block;
  margin-bottom: 18px;
  color: #6b7280;
  font-size: 14px;
}

.news-list {
  display: grid;
  gap: 18px;
}

.news-list {
  display: grid;
  gap: 20px;
}

.news-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #ffffff;
}

.news-card-main {
  display: flex;
  align-items: flex-start;
  min-width: 0;
}

.news-card-image {
  display: block;
  flex: 0 0 260px;
  width: 260px;
  aspect-ratio: 8 / 5;
  height: auto;
  margin-right: 24px;
  border-radius: 14px;
  object-fit: cover;
  background: #f3f4f6;
}

.news-card-content {
  min-width: 0;
  max-width: 680px;
}

.news-date {
  display: inline-block;
  margin-bottom: 10px;
  color: #6b7280;
}

.news-card h2 {
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.15;
}

.news-card h2 a {
  color: inherit;
  text-decoration: none;
}

.news-card p {
  margin: 0;
  color: #4b5563;
}

.news-card-actions {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.news-card-actions .material-card-link {
  white-space: nowrap;
}

@media (max-width: 860px) {
  .news-card {
    grid-template-columns: 1fr;
  }

  .news-card-main {
    display: grid;
    gap: 16px;
  }

  .news-card-image {
    width: 100%;
    flex-basis: auto;
    margin-right: 0;
  }

  .news-card-actions {
    justify-content: flex-start;
  }
}