.BlogPage {
  padding: 20px 0;
}
.BlogPage .container {
  max-width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}
.BlogPage h1 {
  font-size: 1.7rem;
  margin-bottom: 18px;
  line-height: 1.2;
  color: #222;
}
.BlogPage__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.BlogPage__loader {
  text-align: center;
  padding: 2rem;
  color: #888;
  font-size: 14px;
  transition: opacity 0.3s ease;
}
.BlogPage__pagination {
  margin: 28px 0 0 0;
  display: flex;
  justify-content: center;
}
.BlogPage__pagination .page-numbers {
  display: inline-block;
  margin: 0 6px;
  padding: 6px 12px;
  border-radius: 4px;
  color: #555;
  background: #f5f5f5;
  text-decoration: none;
  font-size: 1rem;
}
.BlogPage__pagination .page-numbers.current {
  background: #222;
  color: #fff;
  font-weight: bold;
}
.BlogPage__pagination .page-numbers:hover:not(.current) {
  background: #ddd;
}
.BlogPage p {
  color: #888;
  font-size: 1.1rem;
  text-align: center;
  margin: 32px 0;
}
