/* Archive: news（お知らせ一覧） */

.l-archive-news {
  background: #fff;
}

.p-news-archive {
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 16px 72px;
}

.p-news-archive__header {
  text-align: center;
  margin-bottom: 24px;
}
.p-news-archive__title {
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  color: var(--text-dark);
}
.p-news-archive__lead {
  margin-top: 8px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.95rem;
}

.p-news-list {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.p-news-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 16px 8px;
}
.p-news-item__link {
  display: flex;
  align-items: baseline;
  gap: 16px;
  color: inherit;
}
.p-news-item__date {
  flex: 0 0 auto;
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.6);
  min-width: 96px;
}
.p-news-item__title {
  font-weight: 700;
  color: var(--text-dark);
}
.p-news-item__excerpt {
  margin: 6px 0 0 112px;
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.6;
}

.c-pagination {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}
.c-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  margin: 0 4px;
  padding: 0 10px;
  border-radius: 6px;
  border: 1px solid rgba(58, 124, 165, 0.2);
  color: var(--text-dark);
  font-weight: 600;
  background: #fff;
  transition: background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
}
.c-pagination .page-numbers:hover {
  background: #eaf4fb;
  border-color: rgba(58, 124, 165, 0.35);
}
.c-pagination .page-numbers.current {
  background: var(--primary-blue);
  color: #fff;
  border-color: var(--primary-blue);
}

@media (max-width: 680px) {
  .p-news-item__link {
    flex-direction: column;
    gap: 6px;
  }
  .p-news-item__excerpt {
    margin: 6px 0 0 0;
  }
}
