.image-album{
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  height: 400px;
  position: relative;
  .image{
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    img{
      width: 100%;
      display: unset;
      z-index: 100;
      position: relative;
      height: 100%;
      object-fit: cover;
    }
  }
  .show-album-icon{
    position: absolute;
    right: 12px;
    bottom: 12px;
    background: #0009;
    border-radius: 5px;
    z-index: 100;
    color: white;
    padding: 2px 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    cursor: pointer;
  }
}

.image-album.only{
  .gaussian-blur{
    width: 100%;
    height: 100%;
    background: radial-gradient(900px 420px at 20% 10%, rgba(255, 255, 255, 0.14) 0%, rgba(0, 0, 0, 0.26) 55%, rgba(0, 0, 0, 0.36) 100%), linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.28) 45%, rgba(0, 0, 0, 0.16) 100%);
    transform: scale(1.25);
    filter: blur(26px) saturate(1.75) contrast(1.45) brightness(0.85);
    opacity: 0.95;
    position: absolute;
    top: 0;
    z-index: 0;
  }
  display: flex;
  align-items: center;
  justify-content: center;
  .image{
    height: 95%;
    max-width: 60%;
    border-radius: 30px;
    overflow: hidden;
  }
}

.image-album{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.image-album > .image {
  background: #f4f6f8;
  margin: 4px;
}
.image-album > .image:first-child{
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  margin: 4px;
}
@supports (gap: 8px) {
  .image-album{
    gap: 8px;
  }
  .image-album > .image {
    margin: 0;
  }
  .image-album > .image:first-child{
    margin: 0;
  }
}
.image-album.four-mode {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  height: 100%;

  .image {
    margin: 0;
    background: #f4f6f8;
  }

  .image:first-child {
    grid-column: unset;
    grid-row: unset;
  }
}

.three-mode.image-album{
  grid-template-columns: 3fr 1fr;
  grid-template-rows: 1fr 1fr;
  .image:first-child{
    grid-row: 1 / 3;
  }
}

@media (max-width: 768px) {
  .image-album, .three-mode.image-album, .four-mode.image-album {
    height: 240px !important;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .image-album > .image,
  .three-mode.image-album > .image,
  .four-mode.image-album > .image {
    margin: 2px;
  }
  .image-album .image:first-child,
  .three-mode.image-album .image:first-child,
  .four-mode.image-album .image:first-child {
    grid-column: unset;
    grid-row: unset;
  }
  @supports (gap: 4px) {
    .image-album, .three-mode.image-album, .four-mode.image-album {
      gap: 4px;
    }
    .image-album > .image,
    .three-mode.image-album > .image,
    .four-mode.image-album > .image {
      margin: 0;
    }
  }
  .image:nth-child(n+5) {
    display: none;
  }
  .show-album-icon {
    font-size: 12px;
    padding: 2px 6px;
    right: 8px;
    bottom: 8px;
  }
}

.image-album.two-mode{
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: none;
  }

  .image-album.only {
    height: 240px !important;
    .image {
      max-width: 100%;
      height: 100%;
      border-radius: 12px;
    }
    .gaussian-blur {
      display: none;
    }
  }

.gta-images-layout {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 9999;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;


  .image-main img {
    max-width: 80vw;
    max-height: 70vh;
    object-fit: contain;
  }
  .close-btn {
    position: absolute;
    top: 40px;
    right: 50px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    z-index: 10000;
  }

  .close-btn:hover{
    color: #bebebe;
  }

  .zoom-indicator {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10000;
    pointer-events: none;
  }

  .image-main {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    cursor: grab;
    width: 100%;
    height: 100%;
    touch-action: none;
  }

  .image-main:active {
    cursor: grabbing;
  }

  .image-main img {
    transition: transform 0.05s linear;
    user-select: none;
    -webkit-user-drag: none;
    max-width: none;
    max-height: none;
    pointer-events: none;
    will-change: transform;
  }
  .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    user-select: none;
    z-index: 10001;
    pointer-events: auto;
  }
  .nav:hover{
    color: #bebebe;
  }

  .nav.left {
    left: 40px;
  }

  .nav.right {
    right: 40px;
  }

  .image-list {
    position: absolute;
    bottom: 20px;
    margin-top: 20px;
    display: flex;
    overflow-x: auto;
  }
  .image-list > * {
    margin-left: 10px;
  }
  .image-list > *:first-child {
    margin-left: 0;
  }
  @supports (gap: 10px) {
    .image-list {
      gap: 10px;
    }
    .image-list > * {
      margin-left: 0;
    }
  }

  .image-list img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    pointer-events: auto;
  }

  .image-list .image.active {
    opacity: 1;
    border-color: #fff;
  }

  .image-list .image{
    border-radius: 10px;
    overflow: hidden;
    opacity: 0.6;
    border: 2px solid transparent;
  }

  .fade-img {
    animation-duration: 0.35s;
    animation-fill-mode: both;
    transition: transform 0.05s linear;
  }

  .fade-img.right {
    animation-name: slideInFromRight;
  }

  .fade-img.left {
    animation-name: slideInFromLeft;
  }

}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(100%) scale(1);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-100%) scale(1);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}


/*# sourceMappingURL=website-component-image-album-core.0c19f791.chunk.css.map*/