.gallery-full-board {
  position: relative;
  width: 1920px;
  height: 5020px;
  margin: 0 auto;
  background-color: #061d34;
  background-image:
    linear-gradient(rgba(6, 29, 52, 0.68), rgba(6, 29, 52, 0.68)),
    url("../assets/images/bg-display.jpg");
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 1920px auto;
  overflow: hidden;
  color: #fff;
}

.gallery-full-board .gallery-kicker {
  position: absolute;
  left: 900px;
  top: 229px;
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 35px;
  line-height: 30px;
  white-space: nowrap;
  z-index: 5;
}

.gallery-full-board .gallery-title {
  position: absolute;
  left: 74px;
  top: 259px;
  width: 118px;
  margin: 0;
  padding-top: 32px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 1;
  color: #8f834c;
  white-space: nowrap;
  z-index: 5;
}

.gallery-full-board .gallery-rule {
  position: absolute;
  left: 193px;
  top: 290px;
  width: 1655px;
  height: 2px;
  background: #8f834c;
  z-index: 5;
}

.gallery-full-grid {
  position: absolute;
  left: 74px;
  top: 343px;
  width: 1772px;
  display: grid;
  grid-template-columns: repeat(3, 560px);
  column-gap: 46px;
  row-gap: 46px;
  z-index: 2;
}

.gallery-full-grid .g-cell {
  width: 560px;
  height: 315px;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #10243c;
  cursor: pointer;
  display: block;
}

.gallery-full-grid .g-cell img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.gallery-full-grid .g-cell:hover img {
  transform: scale(1.04);
}

.gallery-full-board .footer-line {
  top: 4709px;
}

.gallery-full-board .logo-footer {
  top: 4742px;
}

.gallery-full-board .ft-col {
  top: 4781px;
}

.gallery-full-board .ft-pin {
  top: 4742px;
}

.gallery-full-board .ft-contact {
  top: 4878px;
}

.gallery-full-board .ft-powered {
  top: 4957px;
}

.gallery-full-board .ft-legal {
  top: 4979px;
}

.gallery-full-board .ft-badge-a {
  top: 4949px;
}

.gallery-full-board .ft-badge-b {
  top: 4949px;
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(6, 29, 52, 0.92);
  padding: 40px;
  box-sizing: border-box;
}

.gallery-lightbox.is-open {
  display: flex;
}

.gallery-lightbox-inner {
  position: relative;
  max-width: min(1600px, 92vw);
  max-height: 88vh;
}

.gallery-lightbox-inner img {
  display: block;
  max-width: 100%;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border: 0;
  background: transparent;
  color: #8f834c;
  font-size: 48px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  z-index: 2001;
}

.gallery-lightbox-prev {
  left: 24px;
}

.gallery-lightbox-next {
  right: 24px;
}

.gallery-lightbox-close {
  position: fixed;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #8f834c;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  z-index: 2001;
}

body.lightbox-open {
  overflow: hidden;
}
