/*
.newsList {
  width: min(100%, 980px);
  margin: 0 auto;
}
*/
/* =========================
   リスト
========================= */
.newsCards {
  list-style: none;
  margin: 0;
  padding: 0;
}

.newsCards__item {
  background: #fff;
  border-radius: 8px;
  padding: 28px 36px 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.newsCards__item + .newsCards__item {
  margin-top: 16px;
}

/* リンクがある項目だけhover */
.newsCards__item:has(a):hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  background: #fcfcfc;
}

.newsCard {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* =========================
   中身
========================= */
.newsCard__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.newsCard__date {
  font-size: 14px;
  font-weight: 700;
  color: #4a4a4a;
  letter-spacing: 0.02em;
}

.newsCard__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 2px 12px;
  border-radius: 999px;
  background: #555250;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.newsCard__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #2f2f2f;
}

@media (max-width: 768px) {
  .newsCards__item {
    padding: 22px 20px;
    border-radius: 6px;
  }

  .newsCard__meta {
    gap: 8px;
    margin-bottom: 10px;
  }

  .newsCard__date {
    font-size: 13px;
  }

  .newsCard__tag {
    min-height: 24px;
    font-size: 11px;
    padding: 2px 10px;
  }

  .newsCard__title {
    font-size: 16px;
    line-height: 1.5;
  }
}