.c-gallery-001 {
  padding: var(--wp--preset--spacing--lg);
  background: var(--wp--preset--color--primary-lightest);
}
.c-gallery-001__slider {
  max-width: 80rem;
  margin: 0 auto;
  border-radius: var(--wp--custom--border-radius--xl);
  overflow: hidden;
  .swiper {
    overflow: hidden;
    @media (max-width: 781px) {
    }
  }
  .swiper-wrapper {
    height: 100% !important;
  }
  .swiper-button-next,
  .swiper-button-prev {
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 9999px;
    backdrop-filter: blur(10px);

    user-select: none;
    @media (max-width: 781px) {
      width: 3.2rem;
      height: 3.2rem;
    }
  }
  .swiper-button-next:after,
  .swiper-button-prev:after {
    color: #333;
    user-select: none;
    height: 1.6rem;
    font-size: 1.6rem;
    @media (max-width: 781px) {
      height: 1.2rem;
      font-size: 1.2rem;
    }
  }
  .swiper-slide {
    margin: 0 !important;
    display: grid;
    place-items: center;
    overflow: hidden;
    figure,
    img {
      width: 100%;
      height: 100%;
      width: 100%;
      object-fit: cover;
      object-position: center;
    }
  }
  .swiper-pagination-bullet {
    margin: 0 0.4rem !important;
    &.swiper-pagination-bullet-active {
      background: var(--wp--preset--color--secondary);
    }
  }

  .swiper-slide-active img,
  .swiper-slide-duplicate-active img,
  .swiper-slide-prev img {
    animation: zoomUp 7s linear 0s normal both;
  }
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.04);
  }
}
