.pager {
  padding-top: 24px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1024px;
}
@media screen and (min-width: 768px) {
  .pager {
    padding-top: 54;
  }
}
.pager__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .pager__list {
    gap: 16px;
  }
}
.pager__content {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: #727272;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #D9D9D9;
  transition: 0.4s all cubic-bezier(0.4, 1, 0.5, 1);
}
@media screen and (min-width: 768px) {
  .pager__content {
    font-size: 16px;
    width: 48px;
    height: 48px;
  }
}
@media (hover: hover) {
  .pager__content:hover:not(.pager__content--current) {
    background: #AE3586;
  }
  .pager__content:hover:not(.pager__content--current) a {
    color: #ffffff;
  }
  .pager__content:hover:not(.pager__content--current) a:before, .pager__content:hover:not(.pager__content--current) a:after {
    background: #ffffff;
  }
}
.pager__content a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #727272;
}
.pager__content--current {
  color: #ffffff;
  background: #AE3586;
  border-color: #AE3586;
  cursor: default;
}
.pager__content--next a:before, .pager__content--prev a:before {
  content: "";
  display: inline-block;
  -webkit-mask-image: url(../../images/icon_arrow.svg);
          mask-image: url(../../images/icon_arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  width: 16px;
  height: 16px;
  background: #727272;
}
@media screen and (min-width: 768px) {
  .pager__content--next a:before, .pager__content--prev a:before {
    width: 22px;
    height: 22px;
  }
}
.pager__content--next a:before {
  transform: rotate(-90deg);
}
.pager__content--prev a:before {
  transform: rotate(90deg);
}

.archive {
  padding: 8px 0 40px;
}
@media screen and (min-width: 768px) {
  .archive {
    padding: 16px 0 60px;
  }
}

.error {
  text-align: center;
}
.error__content {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 742px;
}
.error__title {
  color: #AE3586;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .error__title {
    margin-bottom: 20px;
  }
}
.error__text {
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .error__text {
    text-align: center;
  }
}
.error__text:nth-last-child(2) {
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .error__text:nth-last-child(2) {
    margin-bottom: 56px;
  }
}
.error__button {
  font-size: clamp(16px, 1.8vw, 20px);
  color: #ffffff;
  background: #AE3586;
  border: 1px solid #AE3586;
  border-radius: 32px;
  max-width: 260px;
  width: 100%;
  padding: 15px 12px;
  transition: 0.4s all cubic-bezier(0.4, 1, 0.5, 1);
}
@media screen and (min-width: 768px) {
  .error__button {
    max-width: 280px;
  }
}
@media (hover: hover) {
  .error__button:hover {
    color: #AE3586;
    background: #ffffff;
  }
}