.gt-gallery {
--gtg-gap:18px;
	display: grid;
	grid-template-columns: repeat(var(--gtg-columns, 4), minmax(0, 1fr));
	gap: var(--gtg-gap);
	margin: 0;
	padding: 0
}
.gt-gallery.columns-1 {
--gtg-columns:1
}
.gt-gallery.columns-2 {
--gtg-columns:2
}
.gt-gallery.columns-3 {
--gtg-columns:3
}
.gt-gallery.columns-4 {
--gtg-columns:4
}
.gt-gallery.columns-5 {
--gtg-columns:5
}
.gt-gallery.columns-6 {
--gtg-columns:6
}
.gt-gallery-card {
--gtg-border-style:none;
--gtg-border-width:0px;
--gtg-border-color:#dcdcde;
--gtg-radius:18px;
	position: relative;
	margin: 0;
	background: #fff;
	border-radius: var(--gtg-radius);
	overflow: hidden;
	border: var(--gtg-border-width) var(--gtg-border-style) var(--gtg-border-color);
	transform: translateY(0);
	transition: transform .25s ease, box-shadow .25s ease
}
.gt-gallery.shadow-none .gt-gallery-card {
	box-shadow: none
}
.gt-gallery.shadow-soft .gt-gallery-card {
	box-shadow: 0 14px 36px rgba(15,23,42,.08)
}
.gt-gallery.shadow-medium .gt-gallery-card {
	box-shadow: 0 18px 40px rgba(15,23,42,.14)
}
.gt-gallery.shadow-strong .gt-gallery-card {
	box-shadow: 0 24px 54px rgba(15,23,42,.2)
}
.gt-gallery .gt-gallery-card:hover {
	transform: translateY(-4px)
}
.gt-gallery.inner-depth-soft .gt-gallery-link::after, .gt-gallery.inner-depth-medium .gt-gallery-link::after, .gt-gallery.inner-depth-strong .gt-gallery-link::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: calc(var(--gtg-radius) - var(--gtg-border-width));
	pointer-events: none
}
.gt-gallery.inner-depth-soft .gt-gallery-link::after {
	box-shadow: inset 0 1px 8px rgba(15,23,42,.12)
}
.gt-gallery.inner-depth-medium .gt-gallery-link::after {
	box-shadow: inset 0 2px 14px rgba(15,23,42,.2)
}
.gt-gallery.inner-depth-strong .gt-gallery-link::after {
	box-shadow: inset 0 3px 22px rgba(15,23,42,.28)
}
.gt-gallery-link {
	position: relative;
	display: block;
	text-decoration: none;
	color: inherit;
	background: #e5e7eb;
	overflow: hidden
}
.gt-gallery-link.is-static {
	cursor: default
}
.gt-gallery-image {
	display: block;
	width: 100%;
	height: auto;
	/*aspect-ratio: 1/1;
	object-fit: cover;*/
	transform: scale(1);
	transition: transform .45s ease, filter .45s ease;
	filter: blur(0);
	background: #f1f5f9
}
.gt-gallery-card:hover .gt-gallery-image {
	transform: scale(1.045)
}
.gt-gallery-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: linear-gradient(180deg, rgba(2,6,23,.08), rgba(2,6,23,.72));
	color: #fff;
	opacity: 0;
	transition: opacity .25s ease;
	padding: 20px;
	text-align: center
}
.gt-gallery-link:hover .gt-gallery-overlay, .gt-gallery-link:focus .gt-gallery-overlay, .gt-gallery-overlay.is-visible {
	opacity: 1
}
.gt-gallery-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 999px;
	background: rgba(255,255,255,.15);
	backdrop-filter: blur(8px);
	font-size: 28px;
	line-height: 1
}
.gt-gallery-text {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .02em
}
.gt-gallery-overlay-caption {
	margin-top: 10px;
	font-size: 14px;
	line-height: 1.45;
	max-width: 100%
}
.gt-gallery-caption {
	padding: 14px 16px;
	background: #fff
}
.gt-gallery-caption-text {
	display: block;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.45;
	color: #0f172a
}
.gt-gallery-empty {
	padding: 18px 20px;
	border: 1px dashed #cbd5e1;
	border-radius: 16px;
	background: #f8fafc;
	color: #475569
}
.gt-lightbox {
	position: fixed;
	inset: 0;
	z-index: 999999;
	background: rgba(2,6,23,.92);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px
}
.gt-lightbox[hidden] {
	display: none!important
}
.gt-lightbox-stage {
	position: relative;
	max-width: min(1100px, 100% - 120px);
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px
}
.gt-lightbox-image {
	max-width: 100%;
	max-height: 72vh;
	border-radius: 16px;
	box-shadow: 0 24px 64px rgba(0,0,0,.45)
}
.gt-lightbox-close, .gt-lightbox-nav {
	border: 0;
	background: rgba(255,255,255,.12);
	color: #fff;
	cursor: pointer;
	backdrop-filter: blur(8px)
}
.gt-lightbox-close {
	position: absolute;
	top: 22px;
	right: 22px;
	width: 48px;
	height: 48px;
	border-radius: 999px;
	font-size: 30px;
	line-height: 1
}
.gt-lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 52px;
	height: 52px;
	border-radius: 999px;
	font-size: 28px
}
.gt-lightbox-nav.is-prev {
	left: 22px
}
.gt-lightbox-nav.is-next {
	right: 22px
}
.gt-lightbox-counter, .gt-lightbox-caption {
	color: #fff;
	text-align: center
}
.gt-lightbox-counter {
	font-size: 13px;
	opacity: .8
}
.gt-lightbox-caption {
	font-size: 15px;
	line-height: 1.5;
	max-width: 760px
}
.gt-lightbox-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block
}

@media (max-width: 1024px) {
.gt-gallery.columns-5, .gt-gallery.columns-6 {
--gtg-columns:4
}
}

@media (max-width: 820px) {
.gt-gallery.columns-4, .gt-gallery.columns-5, .gt-gallery.columns-6 {
--gtg-columns:3
}
.gt-lightbox-stage {
	max-width: 100%
}
.gt-lightbox-nav {
	width: 46px;
	height: 46px
}
}

@media (max-width: 640px) {
.gt-gallery {
--gtg-gap:14px
}
.gt-gallery.columns-3, .gt-gallery.columns-4, .gt-gallery.columns-5, .gt-gallery.columns-6 {
--gtg-columns:2
}
.gt-lightbox {
	padding: 16px
}
.gt-lightbox-nav {
	top: auto;
	bottom: 20px;
	transform: none
}
.gt-lightbox-nav.is-prev {
	left: 16px
}
.gt-lightbox-nav.is-next {
	right: 16px
}
.gt-lightbox-close {
	top: 14px;
	right: 14px
}
.gt-lightbox-thumbs-shell {
	display: none
}
}

@media (max-width: 420px) {
.gt-gallery {
--gtg-gap:12px
}
.gt-gallery.columns-2, .gt-gallery.columns-3, .gt-gallery.columns-4, .gt-gallery.columns-5, .gt-gallery.columns-6 {
--gtg-columns:1
}
}
.gt-gallery-card[hidden] {
	display: none!important
}
.gt-gallery-more-wrap {
	display: flex;
	justify-content: center;
	margin-top: 22px
}
.gt-gallery-more {
	appearance: none;
	border: 1px solid #cbd5e1;
	background: #fff;
	color: #0f172a;
	border-radius: 999px;
	padding: 12px 22px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease
}
.gt-gallery-more:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(15,23,42,.12);
	border-color: #94a3b8
}
.gt-lightbox-thumbs-shell {
	display: flex;
	align-items: center;
	gap: 10px;
	max-width: min(980px, 100%);
	width: 100%
}
.gt-lightbox-thumbs-shell.is-hidden {
	display: none
}
.gt-lightbox-thumbs-track {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: none;
	-ms-overflow-style: none;
	flex: 1;
	scroll-behavior: smooth;
	padding: 4px 2px
}
.gt-lightbox-thumbs-track::-webkit-scrollbar {
display:none
}
.gt-lightbox-thumbs-nav {
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	border-radius: 999px;
	border: 0;
	background: rgba(255,255,255,.12);
	color: #fff;
	cursor: pointer;
	backdrop-filter: blur(8px);
	font-size: 22px;
	line-height: 1
}
.gt-lightbox-thumb {
	width: 72px;
	height: 72px;
	min-width: 72px;
	border-radius: 14px;
	overflow: hidden;
	border: 2px solid transparent;
	cursor: pointer;
	opacity: .7;
	transition: opacity .2s ease, border-color .2s ease, transform .2s ease;
	background: transparent;
	padding: 0
}
.gt-lightbox-thumb.is-active {
	border-color: #fff;
	opacity: 1;
	transform: translateY(-2px)
}
