.gallery-page-section {
  background-color: var(--bg-color);
}
.gallery-page-section .gallery-page-inner {
  padding: calc(var(--header-height) + 36px) 80px 70px;
}
.gallery-page-section .gallery-page-title {
  font-size: clamp(2.2rem, 4vw, 4.6rem);
  line-height: 0.95;
  color: var(--text-color);
  margin-bottom: 24px;
  font-weight: 400;
}
.gallery-page-section .gallery-page-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.gallery-page-section .gallery-page-tab {
  border: 1px solid rgba(36, 88, 42, 0.18);
  background: rgba(255, 255, 255, 0.35);
  color: var(--text-color);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.gallery-page-section .gallery-page-tab:hover {
  background: rgba(255, 255, 255, 0.55);
}
.gallery-page-section .gallery-page-tab.is-active {
  background-color: #24582A;
  border-color: #24582A;
  color: #ffffff;
}
.gallery-page-section .gallery-page-tab.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(0, 0, 0, 0.05);
  filter: grayscale(1);
}
.gallery-page-section .gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-page-section .gallery-page-item {
  display: block;
  border: none;
  background: transparent;
  padding: 0;
  cursor: zoom-in;
}
.gallery-page-section .gallery-page-image {
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.gallery-page-section .gallery-page-actions {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}
.gallery-page-section .gallery-page-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 128px;
  padding: 10px 20px;
  background-color: #24582A;
  color: #ffffff;
  border: 1px solid #24582A;
  text-decoration: none;
  border-radius: 999px;
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.gallery-page-section .gallery-page-button:hover {
  background-color: transparent;
  color: #24582A;
  border-color: #24582A;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1600;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox-image {
  max-width: min(100%, 1200px);
  max-height: min(100%, 88vh);
  -o-object-fit: contain;
     object-fit: contain;
}

.gallery-lightbox-close {
  position: absolute;
  top: 16px;
  right: 22px;
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 998px) {
  .gallery-page-section .gallery-page-inner {
    padding: calc(var(--header-height) + 24px) 24px 54px;
  }
  .gallery-page-section .gallery-page-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .gallery-page-section .gallery-page-inner {
    padding: calc(var(--header-height) + 20px) 16px 40px;
  }
  .gallery-page-section .gallery-page-title {
    margin-bottom: 18px;
  }
  .gallery-page-section .gallery-page-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .gallery-page-section .gallery-page-actions {
    margin-top: 20px;
  }
}/*# sourceMappingURL=gallery.css.map */