/* ===== News List ===== */
.news-list__items {
  border-top: 1px solid var(--color-border);
}
.news-list-item {
  display: grid;
  grid-template-columns: 160px 1fr 40px;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
}
.news-list-item:hover {
  opacity: 1;
  background: var(--color-gray-100);
}
.news-list-item__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.news-list-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.news-list-item:hover .news-list-item__img img { transform: scale(1.05); }
.news-list-item__meta time {
  font-size: 12px;
  color: var(--color-text-light);
  font-family: var(--font-en-sans);
  margin-bottom: 8px;
  display: block;
}
.news-list-item__title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 8px;
}
.news-list-item__excerpt {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.7;
}
.news-list-item__arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: transform var(--transition);
}
.news-list-item:hover .news-list-item__arrow { transform: translateX(4px); }
@media (max-width: 768px) {
  .news-list-item {
    grid-template-columns: 100px 1fr;
  }
  .news-list-item__arrow { display: none; }
}
@media (max-width: 480px) {
  .news-list-item { grid-template-columns: 1fr; }
  .news-list-item__img { aspect-ratio: 16/9; }
}
