/* ===== СЕКЦИЯ НАВИГАЦИИ ПО СТРАНИЦЕ ===== */

.nav-section {
  width: 100%;
  margin: 2rem auto 2.5rem auto;
  text-align: center;
  max-width: 820px;
  box-sizing: border-box;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-nav ul {
  list-style: none;
  padding: 0;
  margin: 1rem auto 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem 1rem;
}

.page-nav li {
  margin: 0;
  padding: 0;
}

.page-nav a {
  display: inline-block;
  background: #23243a;
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  border-radius: 10px;
  padding: 0.6em 1.2em;
  transition: background 0.2s ease, transform 0.15s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

.page-nav a:hover {
  background: #44446a;
  transform: translateY(-2px);
}

.page-nav a:active {
  transform: translateY(0);
  background: #35355a;
}

.nav-section .section-title {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .page-nav a {
    font-size: 0.95rem;
    padding: 0.5em 1em;
  }
}