.holo-page {
	box-sizing: border-box;
}

.holo-page *,
.holo-page *::before,
.holo-page *::after {
	box-sizing: inherit;
}

.holo-heading {
	line-height: 1.2;
}

.holo-text {
	font-family: Arial, Helvetica, sans-serif !important;
	font-weight: 400;
	line-height: 1.65;
}

.holo-html {
	font-family: Arial, Helvetica, sans-serif !important;
	font-weight: 400;
}

.holo-text strong,
.holo-text b,
.holo-html strong,
.holo-html b {
	font-weight: 700;
}

.holo-image {
	margin: 0 0 1.5rem;
}

.holo-image img,
.holo-gallery img {
	height: auto;
	max-width: 100%;
}

.holo-image figcaption,
.holo-gallery figcaption {
	font-size: 0.9rem;
	margin-top: 0.5rem;
}

.holo-gallery {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	margin: 0 0 1.5rem;
}

.holo-gallery figure {
	margin: 0;
}

.holo-section {
	margin: 0 0 2rem;
}

.holo-container {
	margin-left: auto;
	margin-right: auto;
	max-width: 1200px;
	width: min(100%, 1200px);
}

.holo-grid {
	display: grid;
	gap: 2rem;
}

.holo-grid-1 {
	grid-template-columns: 1fr;
}

.holo-grid-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.holo-grid-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.holo-grid-4,
.holo-grid-5,
.holo-grid-6 {
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.holo-column > :first-child {
	margin-top: 0;
}

.holo-column > :last-child {
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.holo-grid,
	.holo-grid-2,
	.holo-grid-3,
	.holo-grid-4,
	.holo-grid-5,
	.holo-grid-6 {
		grid-template-columns: 1fr;
	}
}

.holo-page .holo-text-size-small {
	font-size: 14px;
}

.holo-page .holo-text-size-normal {
	font-size: 16px;
}

.holo-page .holo-text-size-large {
	font-size: 20px;
}

.holo-page .holo-text-size-extra-large {
	font-size: 24px;
}

.holo-page .holo-text-size-huge {
	font-size: 32px;
}

.holo-page .holo-text-underline {
	text-decoration: underline;
}

.holo-page .holo-text-align-left {
	text-align: left;
}

.holo-page .holo-text-align-center {
	text-align: center;
}

.holo-page .holo-text-align-right {
	text-align: right;
}

.holo-page .holo-text-align-justify {
	text-align: justify;
}

.holo-page,
.holo-page p,
.holo-page li {
	font-weight: 400;
}

.holo-page strong,
.holo-page b {
	font-weight: 700;
}

.holo-shortcode {
	font-family: inherit;
	font-weight: 400;
}

.holo-gallery {
	gap: var(--holo-gallery-gap, 1rem);
	grid-template-columns: repeat(var(--holo-gallery-columns, 3), minmax(0, 1fr));
}

.holo-gallery a,
.holo-image a {
	display: inline-block;
	max-width: 100%;
}

.holo-gallery a {
	display: block;
}

.holo-lightbox-open {
	overflow: hidden;
}

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

.holo-lightbox {
	align-items: center;
	bottom: 0;
	display: flex;
	justify-content: center;
	left: 0;
	padding: 24px;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 999999;
}

.holo-lightbox.is-dark {
	background: rgba(0, 0, 0, 0.88);
}

.holo-lightbox.is-light {
	background: rgba(255, 255, 255, 0.94);
}

.holo-lightbox-content {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: calc(100vw - 48px);
}

.holo-lightbox-image {
	height: auto;
	max-height: calc(100vh - 120px);
	max-width: 100%;
	object-fit: contain;
	width: auto;
}

.holo-lightbox-title {
	color: #ffffff;
	font-size: 16px;
	line-height: 1.4;
	margin: 0;
	max-width: 100%;
	text-align: center;
}

.holo-lightbox-close,
.holo-lightbox-nav {
	align-items: center;
	background: rgba(255, 255, 255, 0.94);
	border: 0;
	border-radius: 999px;
	color: #111111;
	cursor: pointer;
	display: flex;
	font-size: 0;
	height: 44px;
	justify-content: center;
	line-height: 0;
	padding: 0;
	position: fixed;
	width: 44px;
}

.holo-lightbox-close::before,
.holo-lightbox-close::after {
	background: currentColor;
	content: '';
	height: 2px;
	left: 50%;
	position: absolute;
	top: 50%;
	width: 20px;
}

.holo-lightbox-close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.holo-lightbox-close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.holo-lightbox-nav::before {
	border-right: 3px solid currentColor;
	border-top: 3px solid currentColor;
	content: '';
	display: block;
	height: 14px;
	width: 14px;
}

.holo-lightbox-prev::before {
	transform: translateX(3px) rotate(-135deg);
}

.holo-lightbox-next::before {
	transform: translateX(-3px) rotate(45deg);
}

.holo-lightbox-close {
	right: 18px;
	top: 18px;
}

.holo-lightbox-nav {
	font-size: 0;
	height: 58px;
	top: 50%;
	transform: translateY(-50%);
	width: 58px;
}

.holo-lightbox-prev {
	left: 18px;
}

.holo-lightbox-next {
	right: 18px;
}

.holo-lightbox.is-light .holo-lightbox-close,
.holo-lightbox.is-light .holo-lightbox-nav {
	background: rgba(0, 0, 0, 0.84);
	color: #ffffff;
}

.holo-lightbox.is-light .holo-lightbox-title {
	color: #111111;
}

@media (max-width: 768px) {
	.holo-gallery {
		grid-template-columns: 1fr;
	}

	.holo-lightbox {
		padding: 12px;
	}

	.holo-lightbox-content {
		max-width: calc(100vw - 24px);
	}

	.holo-lightbox-image {
		max-height: calc(100vh - 104px);
	}

	.holo-lightbox-nav {
		font-size: 42px;
		height: 46px;
		width: 46px;
	}

	.holo-lightbox-prev {
		left: 8px;
	}

	.holo-lightbox-next {
		right: 8px;
	}
}

@media (max-width: 768px) {
	.holo-section-mobile-reverse .holo-grid {
		display: flex;
		flex-direction: column-reverse;
	}

	.holo-grid[style*="--holo-mobile-column-gap"] {
		gap: var(--holo-mobile-column-gap);
	}
}

.holo-button-wrap {
	margin: 0 0 1.5rem;
}

.holo-button-wrap.align-center {
	text-align: center;
}

.holo-button-wrap.align-right {
	text-align: right;
}

.holo-button {
	background: #111111;
	border-radius: 4px;
	color: #ffffff;
	display: inline-block;
	line-height: 1.2;
	padding: 0.75rem 1.2rem;
	text-decoration: none;
}

.holo-button:hover,
.holo-button:focus {
	color: #ffffff;
	text-decoration: none;
}

.holo-video {
	aspect-ratio: 16 / 9;
	margin: 0 0 1.5rem;
	max-width: 100%;
}

.holo-video iframe {
	border: 0;
	height: 100%;
	width: 100%;
}

.holo-divider {
	border: 0;
	border-top: 1px solid currentColor;
	margin: 1.5rem auto;
	width: var(--holo-divider-width, 100%);
}

.holo-spacer {
	clear: both;
}

.holo-icon-list {
	list-style: none;
	margin: 0 0 1.5rem;
	padding-left: 0;
}

.holo-icon-list li {
	margin: 0 0 0.5rem;
	padding-left: 1.6rem;
	position: relative;
}

.holo-icon-list li::before {
	left: 0;
	position: absolute;
}

.holo-icon-list-check li::before {
	content: '✓';
}

.holo-icon-list-arrow li::before {
	content: '›';
}

.holo-icon-list-dot li::before {
	content: '•';
}

.holo-accordion {
	margin: 0 0 1.5rem;
}

.holo-accordion details {
	border: 1px solid #dcdcde;
	margin-bottom: 0.75rem;
	padding: 0.75rem 1rem;
}

.holo-accordion summary {
	cursor: pointer;
	font-weight: 700;
}

.holo-tabs {
	margin: 0 0 1.5rem;
}

.holo-tabs-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.holo-tabs-nav button {
	border: 1px solid #dcdcde;
	background: transparent;
	border-radius: 4px;
	cursor: pointer;
	display: inline-block;
	font-weight: 700;
	padding: 0.5rem 0.75rem;
}

.holo-tabs-nav button.is-active {
	background: #f6f7f7;
}

.holo-tabs-panels > div {
	display: none;
}

.holo-tabs-panels > .is-active {
	display: block;
}
