.web-sheet {
  width: min(100%, 1120px);
  margin: 0 auto 48px;
}

.swiper-web-sheet {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 5px 40px rgba(0, 0, 0, 0.2);
}

.swiper-web-sheet .swiper-slide {
  background: #fff;
}

.swiper-web-sheet .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.web-sheet__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 14px;
}

.web-sheet__controls .swiper-button-prev,
.web-sheet__controls .swiper-button-next {
  position: static;
  width: 48px;
  height: 48px;
  margin: 0;
  border: 0;
  border-radius: 50%;
  color: #111;
  background: rgba(255, 255, 0, 0.94);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}

.web-sheet__controls .swiper-button-prev::after,
.web-sheet__controls .swiper-button-next::after {
  font-size: 20px;
  font-weight: 700;
}

.web-sheet__controls .swiper-button-disabled {
  opacity: 0.45;
}

.web-sheet__pagination {
  position: static;
  width: auto;
  margin: 0;
  color: #222;
  font-size: 16px;
  font-weight: 700;
}

.web-sheet__pdf {
  display: table;
  margin: 16px auto 0;
  padding: 12px 28px;
  border: 2px solid #111;
  border-radius: 999px;
  color: #111;
  background: #fff;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.web-sheet__pdf:hover,
.web-sheet__pdf:focus-visible {
  color: #fff;
  background: #111;
}

@media (max-width: 767px) {
  .web-sheet {
    margin-bottom: 32px;
  }

  .web-sheet__controls {
    gap: 14px;
    margin-top: 10px;
  }

  .web-sheet__controls .swiper-button-prev,
  .web-sheet__controls .swiper-button-next {
    width: 36px;
    height: 36px;
  }

  .web-sheet__controls .swiper-button-prev::after,
  .web-sheet__controls .swiper-button-next::after {
    font-size: 15px;
  }

  .web-sheet__pdf {
    margin-top: 12px;
    padding: 10px 22px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .web-sheet__pdf {
    transition: none;
  }
}
