.news-wrapper {
  text-align: center;
  background: #f5f5f7;
  padding: 50px 60px;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  border-radius: 20px;
}

.news-wrapper h1 {
  color: rgba(0, 0, 0, 0.9);
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

/* リスト */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 14px; /* 少し広め */
}

/* 各ニュースアイテム（左寄せ） */
.news-item {
  background: rgba(255, 255, 255, 0.78);
  border-radius: 14px;
  padding: 18px 32px;
  text-align: left;
}

.news-item:hover {
  box-shadow: none;
  transform: none;
}

/* 日付 */
.news-date {
  font-size: 14px;
  opacity: 0.5;
  margin-bottom: 6px;
}

/* 見出し */
.news-headline {
  color: rgba(0, 0, 0, 0.8);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* 本文 */
.news-body {
  font-size: 15px;
  line-height: 1.4;
  opacity: 0.7;
}

@media (max-width: 700px) {
  .news-wrapper {
    padding: 40px 30px;
  }

  .news-item {
    padding: 14px 18px;
  }
}
