.paragraph--type--masonry-gallery {
  max-width: none;
  padding-inline: 0;
  width: 100%;
}
.paragraph--type--masonry-gallery:last-child {
  margin-block-end: 0;
}

@container layout-place (min-width: 0px) {
  .layout--place__container .content.flexible-content-area .paragraph--type--masonry-gallery {
    position: relative;
    left: 50%;
    width: 100cqw;
    max-width: calc((var(--menu-sidebar-max-width) + var(--spacing--450)) * 2 + var(--max-content-width));
    transform: translateX(-50%);
    margin-left: 0;
    margin-right: 0;
  }
  .layout--place__container .content.flexible-content-area .paragraph--type--masonry-gallery .masonry-gallery__container {
    max-width: none;
    padding-inline: 0;
  }
}
@container layout-place (min-width: 1600px) {
  .layout--place__container .content.flexible-content-area .paragraph--type--masonry-gallery {
    position: relative;
    left: 50%;
    width: 100cqw;
    max-width: calc((var(--menu-sidebar-max-width) + var(--spacing--450)) * 2 + var(--max-content-width));
    transform: translateX(-50%);
    margin-left: 0;
    margin-right: 0;
  }
  .layout--place__container .content.flexible-content-area .paragraph--type--masonry-gallery .masonry-gallery__container {
    max-width: none;
    padding-inline: 0;
  }
}
.masonry-gallery {
  container-type: inline-size;
  container-name: masonry-gallery;
  margin-block-start: var(--spacing--600);
}
.masonry-gallery__container {
  max-width: var(--max-large-width);
  margin-inline: auto;
  padding-inline: var(--page-inline-margin);
}
.masonry-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  background-color: var(--solid--gray--light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
  will-change: transform;
  margin-block-end: var(--spacing--400);
}
.masonry-gallery__item:focus {
  outline: 3px solid var(--solid--blue--brand);
  outline-offset: 2px;
}
.masonry-gallery__item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15), 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
}
.masonry-gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.masonry-gallery__item:hover img {
  transform: scale(1.05);
}
.masonry-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.masonry-gallery__item:hover::after {
  opacity: 1;
}
.masonry-gallery__item::before {
  content: "zoom_in";
  font-family: "Material Symbols Outlined";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 48px;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}
.masonry-gallery__item:hover::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.9;
}
.masonry-gallery__item:empty {
  background: linear-gradient(90deg, var(--solid--gray--light) 25%, var(--solid--gray--main) 50%, var(--solid--gray--light) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.pswp {
  --pswp-bg: rgba(0, 0, 0, 0.95);
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: rgba(255, 255, 255, 0.6);
}
.pswp .pswp__caption {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  padding: var(--spacing--500) var(--spacing--400) var(--spacing--400);
  color: white;
  font-size: var(--font-size--body);
  text-align: center;
}

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