/* ============================================
   ニュースページ専用のスタイル
   ============================================ */

/* ============================================
   ニュースページタイトル背景
   ============================================ */
.news-title-bg {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
}

.news-title-bg__image {
  position: absolute;
  top: -60px;
  width: 100%;
  height: auto;
}

.page-title--news {
  position: relative;
  margin-top: -135px;
  z-index: 2;
  box-shadow: 4px 4px 0px var(--boat-yellow);
}

.page-title--news .page-title__bg::before {
  filter: drop-shadow(4px 4px 0px var(--boat-yellow));
}

/* ============================================
   ニュースリスト
   ============================================ */
.news-list {
  padding: 0 20px;
  margin-top: 27px;
  margin-bottom: 40px;
}

.news-list__item {
  border-bottom: 0.5px solid var(--gray-border);
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.news-list__link {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  text-decoration: none;
  color: var(--boat-text);
}

.news-list__date {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--boat-blue);
  white-space: nowrap;
  padding-top: 2px;
}

.news-list__title {
  font-family: 'Noto Sans CJK JP', 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  flex: 1;
}

.news-list__arrow {
  display: none; /* SP版では非表示 */
}

/* ============================================
   ページネーション
   ============================================ */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 0 20px;
  margin-bottom: 40px;
}

.pagination__arrow {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--boat-text);
  padding: 0;
  width: 16px;
  height: 16px;
}

.pagination__arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.pagination__arrow img {
  width: 16px;
  height: 16px;
}

.pagination__numbers {
  display: flex;
  align-items: center;
  gap: 14.4px;
  height: 36px;
}

.pagination__num {
  font-family: "din-2014", sans-serif;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--boat-text);
}

.pagination__num--active {
  font-weight: 600;
  color: var(--boat-blue);
}

.pagination__ellipsis {
  font-family: "din-2014", sans-serif;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: var(--boat-text);
}
