/* Generated by vite-plugin-svg-spritemap */
.tourgallery {
  background-color: #ffffff;
}
.tourgallery__title {
  text-align: center;
}
.tourgallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.tourgallery__item {
  position: relative;
  display: block;
  aspect-ratio: 1.5/1;
  overflow: hidden;
  background-color: #d9ddc8;
}
.tourgallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(33, 60, 26, 0.28);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.tourgallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.tourgallery__item:hover::after, .tourgallery__item:focus-visible::after {
  opacity: 1;
}
.tourgallery__item:hover img, .tourgallery__item:focus-visible img {
  transform: scale(1.035);
}

.lg-backdrop {
  background-color: rgba(0, 0, 0, 0.72);
}

@media (max-width: 61.99875em) {
  .tourgallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 29.99875em) {
  .tourgallery__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 20em) {
  .tourgallery__title {
    margin-bottom: 1.75rem;
  }
  .tourgallery__grid {
    gap: 0.875rem;
  }
}

@media (min-width: 20em) and (max-width: 76.25em) {
  .tourgallery__title {
    margin-bottom: clamp( 1.75rem , 1.35rem  +  2vw , 2.875rem );
  }
  .tourgallery__grid {
    gap: clamp( 0.875rem , 0.652777777775rem  +  1.1111111111vw , 1.5rem );
  }
}

@media (min-width: 76.25em) {
  .tourgallery__title {
    margin-bottom: 2.875rem;
  }
  .tourgallery__grid {
    gap: 1.5rem;
  }
}