/* Grp Travel Gallery — Figma node 371:7980 */



.gtg {
  background: #fff;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1rem, 4vw, 2rem) clamp(2.5rem, 6vw, 2rem);
}

.gtg__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin: 0 auto;
}

.gtg__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.gtg__title {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: clamp(1.25rem, 0.5vw + 1.1rem, 1.5rem);
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.07px;
  color: #002066;
}

.gtg__nav {
  display: none;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
}

@media (min-width: 768px) {
  .gtg__nav {
    display: flex;
  }
}

.gtg__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: #eef1f6;
  color: #00133d;
  transition: opacity 0.15s ease, background 0.15s ease;
}

.gtg__arrow:hover:not(:disabled) {
  background: #e4e9f2;
}

.gtg__arrow:disabled {
  background: #f5f6fa;
  color: #afbdd5;
  opacity: 0.7;
  cursor: default;
}

.gtg__arrow svg {
  display: block;
  width: 14px;
  height: 14px;
}

.gtg__carousel-wrap {
  width: 100%;
  min-width: 0;
}

.gtg__track {
  display: flex;
  gap: 24px;
  align-items: stretch;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gtg__track::-webkit-scrollbar {
  display: none;
}

.gtg__track:focus-visible {
  outline: 2px solid #5d6f98;
  outline-offset: 4px;
  border-radius: 4px;
}

.gtg__item {
  flex: 1 0 min(305px, 100%);
  min-width: min(305px, 100%);
  height: 200px;
  padding: 0;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  background: rgba(0, 0, 0, 0.1);
  position: relative;
}

.gtg__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  pointer-events: none;
  transition: background 0.15s ease;
}

.gtg__item:hover::after,
.gtg__item:focus-visible::after {
  background: rgba(0, 0, 0, 0.05);
}

.gtg__item:focus-visible {
  outline: 2px solid #5d6f98;
  outline-offset: 2px;
}

.gtg__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gtg__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 8px 12px;
  border: 0;
  border-radius: 1000px;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.31px;
  color: #00133d;
  background: #eef1f6;
  transition: background 0.15s ease;
}

.gtg__cta:hover {
  background: #e4e9f2;
}

.gtg__cta:focus-visible {
  outline: 2px solid #5d6f98;
  outline-offset: 2px;
}

/* Lightbox */

.gtg-lightbox[hidden] {
  display: none !important;
}

.gtg-lightbox:not([hidden]) {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.gtg-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 19, 61, 0.88);
}

.gtg-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: min(56rem, 100%);
  max-height: min(90vh, 100%);
  padding-top: 48px;
}

.gtg-lightbox__close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.75rem;
  line-height: 1;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  transition: background 0.15s ease;
}

.gtg-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.gtg-lightbox__main {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 0;
}

.gtg-lightbox__stage {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  /*background: rgba(0, 0, 0, 0.35);*/
  padding: 1rem;
}

.gtg-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: min(60vh, 32rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

.gtg-lightbox__nav {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  transition: background 0.15s ease;
}

.gtg-lightbox__nav:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.22);
}

.gtg-lightbox__nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.gtg-lightbox__nav svg {
  display: block;
  width: 20px;
  height: 20px;
}

.gtg-lightbox__thumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  padding: 4px 0;
  scrollbar-width: thin;
}

.gtg-lightbox__thumb {
  flex-shrink: 0;
  width: 72px;
  height: 48px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0.65;
  transition: opacity 0.15s ease, border-color 0.15s ease;
}

.gtg-lightbox__thumb:hover {
  opacity: 0.9;
}

.gtg-lightbox__thumb--active {
  border-color: #fff;
  opacity: 1;
}

.gtg-lightbox__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gtg__arrow--prev svg {
  transform: scaleX(-1);
}

@media (max-width: 639px) {
  .gtg-lightbox__nav {
    display: none;
  }

  .gtg-lightbox__image {
    max-height: min(50vh, 24rem);
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .gtg__inner {
    max-width: 100% !important;
    padding: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  
  .gtg__item{
    flex: 1 0 min(340px, 100%);
    min-width: min(340px, 100%);
  }
}