/* ============================
   News Page - Wide Layout
   ============================ */

/* 本文幅を広げる（1080pxは読みやすさの黄金値） */
.news-article .container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 記事タイトル */
.news-article .news-title {
  font-size: 1.9rem;
  line-height: 1.45;
  margin-bottom: 32px;
  font-weight: 600;
}

/* セクション間の余白 */
.news-section {
  margin-top: 56px;
}

/* h2 見出し（企業ニュース感を出す） */
.news-section h2 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  border-left: 4px solid #000;
  padding-left: 12px;
  font-weight: 600;
}

/* h3 小見出し */
.news-subsection {
  margin-top: 32px;
}

.news-subsection h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 600;
}

/* 日付のスタイル調整 */
.news-date {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 12px;
}

/* リストの読みやすさ向上 */
.news-section ul,
.news-section ol {
  margin-left: 1.2rem;
  line-height: 1.7;
}
/* 一覧ページも少し広めに */
.news-list-page .container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 一覧のリストレイアウト */
.news-list {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.news-item a {
  display: block;
  padding: 1.25rem 1.5rem;
  border-radius: 0.9rem;
  background-color: #fff;
  box-shadow: var(--card-shadow);
  text-decoration: none;
  color: var(--text);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.news-item a:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
  transform: translateY(-2px);
}

.news-item-title {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 0.4rem;
}

.news-item-desc {
  font-size: 0.95rem;
  line-height: 1.7;
}
