/* =========================
   会報カテゴリー（bulletin）専用CSS
   ========================= */

/* セクション全体 */
.section-newsletters {
  margin-bottom: 60px;
}

/* 上部のグレー帯 */
.section-newsletters__header {
  background-color: #f2f2f2;
  padding: 18px 24px;
}

.section-newsletters__title {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
}

/* 一覧本体 */
.newsletter-list {
  list-style: none;
  margin: 0;
  padding: 0 24px 32px;
  background-color: #ffffff;
}

.newsletter-item {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
}

.newsletter-item:last-child {
  border-bottom: none;
}

/* 左側：No.xxx */
.newsletter-item__left {
  width: 120px;
  min-width: 120px;
  padding-right: 16px;
  font-weight: 700;
}

.newsletter-item__no {
  color: #1b3fa7;
  font-size: 1.1rem;
}

/* 右側：日付＋タイトル */
.newsletter-item__right {
  flex: 1;
}

.newsletter-item__date {
  display: inline-block;
  margin-bottom: 6px;
  text-decoration: none;
  color: #1b3fa7;
  font-size: 0.95rem;
}

.newsletter-item__date:hover {
  text-decoration: underline;
}

.newsletter-item__title a {
  color: #333333;
  text-decoration: none;
  line-height: 1.6;
}

.newsletter-item__title a:hover {
  text-decoration: underline;
}

/* ページネーション */
.archive-pagination {
  max-width: 960px;
  margin: 24px auto 40px;
  padding: 0 24px;
  text-align: center;
}

.archive-pagination .page-numbers {
  display: inline-block;
  margin: 0 4px;
  padding: 4px 10px;
  border: 1px solid #e0e0e0;
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
}

.archive-pagination .page-numbers.current {
  background-color: #1b3fa7;
  border-color: #1b3fa7;
  color: #fff;
}

.archive-pagination .page-numbers:hover {
  background-color: #f2f2f2;
}