.pages {
  margin: 0;
  padding: 0;
  background: #F7F7F7;
  font-family: "Inter", sans-serif;
  color: #0E0E0E;
}

.pages-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.pages-wrap__title {
  margin: 0 0 48px;
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
}

.pages-wrap__title span {
  color: #F0A070;
}

.pages-wrap__list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.pages-wrap .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 64px;
  padding: 12px 16px;
  background: #0F1417;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  -webkit-transition: background 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

.pages-wrap .item:hover,
.pages-wrap .item:focus-visible {
  background: #FFDE16;
  color: #0F1417;
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
}