/* Видеотека — постраничная навигация */

.videoteka-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 36px 0 12px;
  padding: 22px 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.videoteka-pager__label {
  width: 100%;
  margin: 0 0 4px;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
}

.videoteka-pager__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.videoteka-pager__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(71, 2, 91, 0.25);
  border-radius: 50%;
  background: #fff;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.videoteka-pager__arrow img {
  display: block;
  width: 18px;
  height: 18px;
}

.videoteka-pager__arrow:hover {
  border-color: #47025b;
  background: #47025b;
  box-shadow: 0 4px 14px rgba(71, 2, 91, 0.22);
}

.videoteka-pager__arrow:hover img {
  filter: brightness(0) invert(1);
}

.videoteka-pager__arrow.is-disabled {
  opacity: 0.35;
  pointer-events: none;
  box-shadow: none;
}

.videoteka-pager__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.videoteka-pager__item {
  margin: 0;
}

.videoteka-pager__link,
.videoteka-pager__current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 6px;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.videoteka-pager__link {
  color: #333;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fafafa;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.videoteka-pager__link:hover {
  color: #47025b;
  border-color: rgba(71, 2, 91, 0.35);
  background: rgba(71, 2, 91, 0.06);
  text-decoration: none;
}

.videoteka-pager__current {
  color: #fff;
  background: #47025b;
  border: 1px solid #47025b;
  box-shadow: 0 4px 12px rgba(71, 2, 91, 0.25);
}

.videoteka-pager__hint {
  width: 100%;
  margin: 0;
  text-align: center;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 480px) {
  .videoteka-pager {
    margin-top: 24px;
    padding: 18px 8px;
  }

  .videoteka-pager__controls {
    gap: 10px;
  }

  .videoteka-pager__arrow {
    width: 38px;
    height: 38px;
  }

  .videoteka-pager__link,
  .videoteka-pager__current {
    min-width: 36px;
    height: 36px;
    font-size: 14px;
  }
}
