.alexandra-notice {
	background: #fff8f1;
	border-left: 4px solid #c46b4d;
	border-radius: 0 8px 8px 0;
	box-sizing: border-box;
	padding: 24px;
}

.alexandra-notice__title {
	color: #2f2925;
	font-size: 22px;
	line-height: 1.25;
	margin: 0 0 8px;
}

.alexandra-notice__message {
	color: #5d5149;
	line-height: 1.6;
	margin: 0 0 16px;
}

.alexandra-notice__button {
	background: #2f2925;
	border-radius: 4px;
	color: #fff;
	display: inline-block;
	padding: 10px 16px;
	text-decoration: none;
}

.alexandra-notice__button:hover,
.alexandra-notice__button:focus {
	background: #c46b4d;
	color: #fff;
}

.system-gallery-grid {
	column-count: 4;
	column-gap: 20px;
}

.system-gallery-item {
	break-inside: avoid;
	cursor: pointer;
	display: inline-block;
	margin: 0 0 20px;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.system-gallery-item img {
	display: block;
	transition: transform 0.3s ease;
	width: 100%;
}

.system-gallery-item:hover img {
	transform: scale(1.03);
}

.hidden-lightbox-images {
	display: none;
}

.system-gallery-lightbox {
	display: none;
	inset: 0;
	position: fixed;
	z-index: 999999;
}

.system-gallery-lightbox.is-open {
	display: block;
}

.system-gallery-lightbox__backdrop {
	background: rgba(20, 18, 16, 0.94);
	inset: 0;
	position: absolute;
}

.system-gallery-lightbox__dialog {
	box-sizing: border-box;
	left: 50%;
	max-height: 100vh;
	max-width: 1100px;
	padding: 56px 64px 28px;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.system-gallery-lightbox__image {
	display: block;
	height: min(68vh, 720px);
	margin: 0 auto;
	max-width: 100%;
	object-fit: contain;
	width: auto;
}

.system-gallery-lightbox__close,
.system-gallery-lightbox__previous,
.system-gallery-lightbox__next {
	background: transparent;
	border: 0;
	color: #fff;
	cursor: pointer;
	font-size: 36px;
	line-height: 1;
	padding: 8px;
	position: absolute;
}

.system-gallery-lightbox__close {
	right: 20px;
	top: 12px;
}

.system-gallery-lightbox__close:hover,
.system-gallery-lightbox__previous:hover,
.system-gallery-lightbox__next:hover {
	background: transparent;
	color: #fff;
}

.system-gallery-lightbox__previous,
.system-gallery-lightbox__next {
	top: 45%;
}

.system-gallery-lightbox__previous {
	left: 12px;
}

.system-gallery-lightbox__next {
	right: 12px;
}

.system-gallery-lightbox__thumbnails {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-top: 20px;
	overflow-x: auto;
	padding: 4px;
}

.system-gallery-lightbox__thumbnail {
	background: transparent;
	border: 2px solid transparent;
	cursor: pointer;
	flex: 0 0 72px;
	height: 58px;
	overflow: hidden;
	padding: 0;
}

.system-gallery-lightbox__thumbnail.is-active {
	border-color: #fff;
}

.system-gallery-lightbox__thumbnail:hover {
	background: transparent;
	border-color: transparent;
	transform: none;
}

.system-gallery-lightbox__thumbnail.is-active:hover {
	border-color: #fff;
}

.system-gallery-lightbox__thumbnail img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.system-gallery-lightbox-open {
	overflow: hidden;
}

@media (max-width: 900px) {
	.system-gallery-grid {
		column-count: 3;
	}
}

@media (max-width: 600px) {
	.system-gallery-grid {
		column-count: 2;
	}
}

@media (max-width: 420px) {
	.system-gallery-grid {
		column-count: 1;
	}
}

@media (max-width: 600px) {
	.system-gallery-lightbox__dialog {
		padding: 52px 42px 20px;
	}

	.system-gallery-lightbox__image {
		height: 62vh;
	}

	.system-gallery-lightbox__thumbnail {
		flex-basis: 60px;
		height: 48px;
	}
}

.system-gallery-lightbox__close, .system-gallery-lightbox__previous, .system-gallery-lightbox__next {
	background-color: transparent !important;
	
}