.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-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);
  }
}
