/* ========== アーカイブページ：お知らせ一覧 ========== */

/* ------------------------------
   セクション全体
------------------------------ */
.archive-news {
  padding: 0px 20px 60px;
  background-color: #f4f7fb;
}

.archive-news h1 {
  font-size: 2.25rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
  color: #1f2937; /* text-gray-800 */
}

/* ------------------------------
   ニュースリスト（グリッド）
------------------------------ */
.news-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .news-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ------------------------------
   ニュースカード
------------------------------ */
.news-item {
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.news-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.news-item a {
  display: block;
  padding: 1.25rem;
  color: inherit;
  text-decoration: none;
}

/* ------------------------------
   メタ情報（日時・カテゴリ）
------------------------------ */
.archive-news .news-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.news-item time {
  color: #6b7280; /* text-gray-500 */
}

.archive-news .news-category {
  background-color: #0077C8; /* ロゴの濃い青 */
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.2em 0.6em;
  border-radius: 999px;
  white-space: nowrap;
}

/* ------------------------------
   タイトル
------------------------------ */
.news-item h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937; /* text-gray-800 */
  line-height: 1.5;
}