/** Shopify CDN: Minification failed

Line 136:1 Expected "}" to go with "{"

**/


/* CSS from section stylesheet tags */
.pyk-community-gallery {
  padding: 2rem 0;
  background: #fafbfc;
  text-align: center;
}
.pyk-community-gallery__header {
  margin-bottom: 2rem;
}
.pyk-community-gallery__title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.pyk-community-gallery__subtitle {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 0;
}
.pyk-community-gallery__slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 100vw;
  overflow: hidden;
}
.pyk-community-gallery__slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1.5rem;
  width: 100%;
  max-width: 1200px;
}
.pyk-community-gallery__slide {
  min-width: 220px;
  max-width: 260px;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: relative;
  transition: box-shadow 0.2s;
}
.pyk-community-gallery__slide:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.pyk-community-gallery__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
  .pyk-community-gallery__slider {
  scrollbar-width: none; /* Firefox */
}

.pyk-community-gallery__slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.pyk-community-gallery__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pyk-community-gallery__icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border-radius: 50%;
  padding: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pyk-community-gallery__nav {
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.pyk-community-gallery__nav:hover {
  background: #f0f0f0;
}
@media (max-width: 700px) {
  .pyk-community-gallery__slider {
    gap: 1rem;
  }
  .pyk-community-gallery__slide {
    min-width: 150px;
    max-width: 100%;
  }
  .pyk-community-gallery__title {
    font-size: 1.3rem;
  }

@media (max-width: 700px) {
  .pyk-community-gallery__slider {
    gap: 1rem;
  }
  .pyk-community-gallery__slide {
    min-width: 150px;
    max-width: 100%;
  }
  .pyk-community-gallery__title {
    font-size: 1.3rem;
  }
  .pyk-community-gallery__nav--prev {
    margin-left: 0.5rem;
  }
  .pyk-community-gallery__nav--next {
    margin-right: 0.5rem;
  }
}