@media screen and (min-width: 641px) {
  .visible-sp {
    display: none !important;
  }
}

@media screen and (max-width: 640px) {
  .hidden-sp {
    display: none !important;
  }
}

.p-news {
  min-height: 100vh;
}
.p-news__list {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 24px 96px;
}
@media screen and (min-width: 641px) {
  .p-news__list {
    padding: 0 40px 96px;
  }
}
.p-news__item {
  display: block;
  padding: 32px 16px;
  border-bottom: 1px solid rgba(var(--color-gray-800-rgb), 0.6);
  margin: 0 -16px;
  border-radius: 2px;
  transition: background 0.3s;
}
.p-news__item:last-child {
  border-bottom: none;
}
.p-news__item:hover {
  background: rgba(255, 255, 255, 0.015);
}
.p-news__item-meta {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 8px;
}
.p-news__item-date {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--color-gray-500);
  font-family: var(--font-sans);
  font-variant-numeric: tabular-nums;
}
.p-news__item-title {
  font-size: 14px;
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--color-gray-200);
  transition: color 0.3s;
  line-height: 1.6;
}
@media screen and (min-width: 641px) {
  .p-news__item-title {
    font-size: 16px;
  }
}
.p-news__item:hover .p-news__item-title {
  color: white;
}
.p-news__item-excerpt {
  margin-top: 8px;
  font-size: 12px;
  color: var(--color-gray-500);
  font-family: var(--font-sans);
  font-weight: 300;
}
.p-news__pagination {
  margin-top: 64px;
}
.p-news__pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.p-news__pagination .page-numbers {
  width: 32px;
  height: 32px;
  font-size: 12px;
  font-family: var(--font-sans);
  transition: all 0.3s;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-500);
}
.p-news__pagination .page-numbers:hover {
  color: white;
  background: rgba(255, 255, 255, 0.05);
}
.p-news__pagination .page-numbers.current {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}
.p-news__pagination .page-numbers.dots {
  cursor: default;
}
.p-news__pagination .page-numbers.dots:hover {
  color: var(--color-gray-500);
  background: none;
}/*# sourceMappingURL=p-news.css.map */
