.board-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  width: 100%;
  padding: 72px clamp(16px, 6.7vw, 96px) 96px;
  background: #fff;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 24px;
  width: 100%;
}

/* reuse news-card visuals from main page */
.news-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e3e7ea;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
}

.news-card--past {
  opacity: 0.62;
}

.news-card__photo {
  width: 100%;
  aspect-ratio: 400 / 220;
  overflow: hidden;
}

.news-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 24px 22px;
}

.news-card__date {
  font-size: 13px;
  font-weight: 500;
  color: #1a6df5;
}

.news-card--past .news-card__date {
  color: #6b7680;
}

.news-card__title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  color: #171b1e;
}

.pagination {
  display: flex;
  gap: 8px;
}

.page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #e3e7ea;
  background: #fff;
  color: #6b7680;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.page-btn--active {
  border: none;
  background: #1a6df5;
  color: #fff;
  font-weight: 600;
}

/* WordPress default pagination markup restyled to match .page-btn look */
.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #e3e7ea;
  background: #fff;
  color: #6b7680;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.pagination .page-numbers.current {
  border: none;
  background: #1a6df5;
  color: #fff;
  font-weight: 600;
}

.pagination .page-numbers.dots {
  border: none;
  background: none;
}

@media (max-width: 900px) {
  .board-list {
    padding: 48px 20px;
  }

  .board-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
