.gallery-field {
  width: 100%;
}

.gallery-slider {
  width: 100%;
  margin: 65px 0 40px;
}
.gallery-slider__track-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f0eeeb;
  aspect-ratio: 773/516;
}
.gallery-slider__track {
  display: flex;
  height: 100%;
  transition: -webkit-transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.gallery-slider__slide {
  flex: 0 0 100%;
  height: 100%;
}
.gallery-slider__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.gallery-slider__slide-btn {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}
.gallery-slider__slide-btn img {
  pointer-events: none;
}
.gallery-slider__arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: #1F1F1F;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}
.gallery-slider__arrow:hover {
  background: #000;
}
.gallery-slider__arrow:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.gallery-slider__arrow--prev {
  left: 24px;
}
.gallery-slider__arrow--prev svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.gallery-slider__arrow--prev[disabled], .gallery-slider__arrow--prev.is-hidden {
  display: none !important;
}
.gallery-slider__arrow--next {
  right: 24px;
}
.gallery-slider__arrow--next[disabled], .gallery-slider__arrow--next.is-hidden {
  display: none !important;
}
.gallery-slider__caption-wrap {
  max-width: 546px;
  margin: 21px auto 0;
}
.gallery-slider__caption {
  font-family: "PPNeueMontreal", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.45;
}
@media (min-width: 768px) {
  .gallery-slider__caption {
    font-size: 0.875rem;
  }
}
.gallery-slider__caption.is-hidden {
  display: none !important;
  visibility: hidden !important;
}
.gallery-slider__copyright {
  display: block;
  font-size: 0.78rem;
  color: #666;
  margin-top: 2px;
}
.gallery-slider__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}
.gallery-slider__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: #DDDDDD;
  cursor: pointer;
  transition: background 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, transform 0.2s ease;
  transition: background 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.gallery-slider__dot.is-active {
  background: #006875;
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}
.gallery-slider__dot:hover:not(.is-active) {
  background: rgb(182.75, 182.75, 182.75);
}
.gallery-slider__dot:focus-visible {
  outline: 2px solid #006875;
  outline-offset: 3px;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.gallery-lightbox[hidden] {
  display: none;
}
.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.gallery-lightbox__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  height: 100vh;
  padding: 56px 16px 16px;
  box-sizing: border-box;
  display: grid;
  grid-template-rows: 1fr auto auto auto;
  align-items: start;
  gap: 10px;
}
.gallery-lightbox__close {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}
.gallery-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.25);
}
.gallery-lightbox__close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.gallery-lightbox__track-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background: transparent;
}
.gallery-lightbox__track {
  display: flex;
  height: 100%;
  transition: -webkit-transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.gallery-lightbox__slide {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox__figure {
  margin: 0;
  width: 100%;
  height: 100%;
}
.gallery-lightbox__figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.gallery-lightbox__caption-area {
  grid-row: 2;
  width: 100%;
  justify-self: center;
  position: relative;
  min-height: 1.6em;
}
.gallery-lightbox__figcaption {
  width: 100%;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  line-height: 1.5;
  padding: 0 8px;
  margin: 0;
}
.gallery-lightbox__figcaption.is-hidden {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
.gallery-lightbox__figcaption small {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 3px;
}
.gallery-lightbox__arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}
.gallery-lightbox__arrow:hover {
  background: rgba(255, 255, 255, 0.28);
}
.gallery-lightbox__arrow:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.gallery-lightbox__arrow--prev {
  left: 24px;
}
.gallery-lightbox__arrow--prev svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.gallery-lightbox__arrow--next {
  right: 24px;
}
.gallery-lightbox__arrow[disabled] {
  display: none;
}
.gallery-lightbox__counter {
  justify-self: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
}
.gallery-lightbox__thumbs {
  justify-self: center;
  display: flex;
  gap: 6px;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}
.gallery-lightbox__thumbs::-webkit-scrollbar {
  display: none;
}
.gallery-lightbox__thumb {
  flex: 0 0 auto;
  height: 56px;
  aspect-ratio: 4/3;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: none;
  opacity: 0.5;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.gallery-lightbox__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  pointer-events: none;
}
.gallery-lightbox__thumb.is-active, .gallery-lightbox__thumb:hover {
  opacity: 1;
  border-color: #fff;
}
.gallery-lightbox__thumb:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

body.gallery-lightbox-open {
  overflow: hidden;
}

.node-type--page .paragraph--type--image-gallery {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-inline: calc(var(--kilden-container-gutter-x) * 0.5);
}
@media (min-width: 992px) {
  .node-type--page .paragraph--type--image-gallery {
    max-width: calc(656px + var(--kilden-container-gutter-x));
  }
}

/*# sourceMappingURL=gallery.css.map*/