@charset "UTF-8";
.galleria-thumbnails {
  height: 375px;
  overflow: hidden;
  display: inline-block;
  background: none;
}
.galleria-thumbnails section {
  background: none;
  flex-direction: column;
  display: flex;
  padding: 16px 4px;
}
.galleria-thumbnails-viewport {
  height: 280px;
  overflow: hidden;
  width: 100%;
}

.galleria {
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: var(--main-grey-lighter-50);
  border-radius: 6px;
}
.galleria-thumbnail {
  outline-color: transparent;
}
.galleria-content {
  display: block;
  height: 100%;
  width: 100%;
}
.galleria-items-container {
  width: calc(100% - 170px);
  height: 375px;
  overflow: hidden;
  display: inline-block;
}
.galleria-items {
  position: relative;
  display: flex;
  height: 100%;
}
.galleria-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
.galleria-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  cursor: zoom-in;
}
.galleria .portfolio-item {
  max-width: 100%;
  max-height: 100%;
  opacity: 1;
  background: none;
  border: none;
  transform: none;
  transition: none;
  display: block;
  border-radius: unset;
  cursor: inherit;
  padding: 0;
  width: unset;
}
.galleria .portfolio-item .thumbnail {
  height: 100px;
  object-fit: contain;
}

.splide__slide {
  flex: 1 0 33.3333333333%;
  height: 120px;
  width: 150px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline-color: transparent;
  opacity: 0.5;
}
.splide__slide.is-active {
  opacity: 1;
}
.splide img {
  height: 100px;
  object-fit: cover;
  max-height: 100%;
  max-width: 100%;
}
.splide__arrows {
  display: flex;
  justify-content: center;
}
.splide__arrow {
  align-self: center;
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  margin: 0 8px;
  padding: 0;
  border: none;
  user-select: none;
  cursor: pointer;
  background: transparent;
  color: #475569;
  width: 32px;
  height: 32px;
  transition: background 0.2s, color 0.2s, outline-color 0.2s;
  outline-color: transparent;
  border-radius: 6px;
}
.splide__arrow--prev svg {
  font-size: 1rem;
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: baseline;
}
.splide__arrow--next svg {
  font-size: 1rem;
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: baseline;
}
.splide__track {
  overflow: hidden;
  width: 100%;
}
.splide__list {
  flex-direction: column;
  height: 100%;
  display: flex;
}

/* < 600px: stack — full-width main image, horizontal thumbnail strip below.
   galleria.js remounts Splide in ltr mode at the same breakpoint. */
@media (max-width: 600px) {
  .galleria-content {
    display: flex;
    flex-direction: column;
  }
  .galleria-items-container {
    display: block;
    width: 100%;
    height: 300px;
  }
  .galleria-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
  }
  .galleria-thumbnails {
    display: block;
    width: 100%;
    height: auto;
    border-top: 1px solid var(--main-grey-lighter-50);
  }
  .galleria-thumbnails section {
    flex-direction: row;
    align-items: center;
    width: 100%;
    padding: 8px 4px;
  }
  .splide__track {
    flex: 1;
    min-width: 0;
  }
  .splide__list {
    flex-direction: row;
    height: auto;
  }
  .splide__slide {
    flex: 0 0 auto;
    width: 72px;
    height: 56px;
  }
  .splide img {
    height: 100%;
    width: 100%;
    object-fit: contain;
  }
  .galleria .portfolio-item .thumbnail {
    height: 56px;
    object-fit: contain;
  }
  /* The chevron SVGs point up/down for the vertical rail — turn them sideways. */
  .splide__arrow svg {
    transform: rotate(-90deg);
  }
}
.galleria-lightbox {
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  overflow: hidden;
  opacity: 0;
  transition-property: opacity, display, overlay;
  transition-duration: 0.2s;
  transition-timing-function: ease-out;
  transition-behavior: allow-discrete;
}
.galleria-lightbox[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}
@starting-style {
  .galleria-lightbox[open] {
    opacity: 0;
  }
}
.galleria-lightbox[open] {
  opacity: 1;
}
.galleria-lightbox::backdrop {
  background-color: rgba(0, 0, 0, 0);
  backdrop-filter: blur(2px);
  transition: display 0.2s allow-discrete, overlay 0.2s allow-discrete, background-color 0.2s ease-out;
}
.galleria-lightbox[open]::backdrop {
  background-color: rgba(0, 0, 0, 0.8);
}
@starting-style {
  .galleria-lightbox[open]::backdrop {
    background-color: rgba(0, 0, 0, 0);
  }
}
.galleria-lightbox__image {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 6px;
  cursor: default;
}
.galleria-lightbox__close {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.galleria-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.25);
}

@media (prefers-reduced-motion: reduce) {
  .galleria-lightbox {
    transition-duration: 0.01s;
  }
  .galleria-lightbox::backdrop {
    transition-duration: 0.01s;
  }
}

/*# sourceMappingURL=galleria.output.css.map */
