.services-honeycomb-section {
	--services-bg: #ffffff;
	--services-text: #ffffff;
	--services-dim: rgba(8, 12, 18, 0.62);
	--services-panel: rgba(255, 255, 255, 0.86);
	--services-panel-border: rgba(17, 17, 17, 0.14);
	--services-control: rgba(255, 255, 255, 0.12);
	--services-control-hover: rgba(255, 255, 255, 0.2);
	--services-focus: #ffffff;
	--hex-outline: 2px;
	--hex-shape-rounded: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="black" d="M50 5 Q53 5 56 7 L91 26 Q95 28 95 32 L95 68 Q95 72 91 74 L56 93 Q53 95 50 95 Q47 95 44 93 L9 74 Q5 72 5 68 L5 32 Q5 28 9 26 L44 7 Q47 5 50 5 Z"/></svg>');
	--hex-width: clamp(13.9rem, 23.8vw, 21rem);
	--hex-height: calc(var(--hex-width) * 1.1547);
	--hex-gap: clamp(0.18rem, 0.45vw, 0.38rem);
	--hex-gap-x: var(--hex-gap);
	--hex-gap-y: var(--hex-gap);
	--hex-press: 0px;
	--hex-spacing-x: var(--hex-gap-x);
	--hex-row-shift: calc((var(--hex-width) + var(--hex-spacing-x)) * 0.492);
	--hex-row-overlap: var(--hex-gap-y);
	--hex-row-lift: calc((var(--hex-height) * -0.268) + (var(--hex-gap) * 0.02));
	--hex-rotation: 98deg;
	--image-rotation: -90deg;
	--image-tilt: 0deg;
	--modal-content-rotation: calc(var(--image-rotation) + var(--image-tilt));
	--modal-k1-x: 5.1%;
	--modal-k1-y: 43.7%;
	--modal-k2-x: 34.5%;
	--modal-k2-y: 13.8%;
	--modal-k3-x: 94.9%;
	--modal-k3-y: 56.3%;
	background: var(--services-bg);
	padding: clamp(4rem, 8vw, 6.5rem) 1.25rem;
	position: relative;
}

.services-honeycomb-section__inner {
	margin: 0 auto;
	max-width: 76rem;
}

.services-honeycomb-section__cluster {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: max-content;
	margin: 0 auto;
	position: relative;
}

.services-honeycomb-section__row {
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.services-honeycomb-section__row + .services-honeycomb-section__row {
	margin-top: var(--hex-row-overlap);
	transform: translate(var(--hex-row-shift), var(--hex-row-lift));
}

.services-honeycomb-section__item + .services-honeycomb-section__item {
	margin-left: var(--hex-spacing-x);
}

.services-honeycomb-section__item {
	display: block;
	height: var(--hex-height);
	position: relative;
	transition: transform 200ms ease, z-index 200ms ease, filter 200ms ease;
	transform: rotate(var(--hex-rotation));
	transform-origin: center;
	width: var(--hex-width);
	z-index: 1;
	filter: drop-shadow(10px 6px 16px rgba(15, 23, 32, 0.24));
}

.services-honeycomb-section__item::before {
	content: "";
	position: absolute;
	inset: calc(var(--hex-outline) * -1);
	background: rgba(0, 0, 0, 0.42);
	-webkit-mask-image: var(--hex-shape-rounded);
	mask-image: var(--hex-shape-rounded);
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	pointer-events: none;
}

.services-honeycomb-section__hex {
	appearance: none;
	background: #edf1f5;
	border: 0;
	cursor: pointer;
	display: block;
	height: 100%;
	-webkit-mask-image: var(--hex-shape-rounded);
	mask-image: var(--hex-shape-rounded);
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	overflow: hidden;
	padding: 0;
	position: relative;
	transition: transform 200ms ease;
	width: 100%;
}

.services-honeycomb-section__hex::before {
	background-image: var(--service-image, linear-gradient(135deg, #e8edf2 0%, #f7f9fb 100%));
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	inset: 0;
	position: absolute;
	transform: rotate(calc(var(--image-rotation) + var(--image-tilt))) scale(0.88);
	transition: transform 200ms ease, filter 200ms ease;
	transform-origin: center;
}

.services-honeycomb-section__hex::after {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(12, 18, 25, 0.06) 100%);
	content: "";
	inset: 0;
	position: absolute;
}

.services-honeycomb-section__item:hover,
.services-honeycomb-section__item:focus-within {
	filter: drop-shadow(12px 7px 20px rgba(15, 23, 32, 0.3));
	transform: rotate(var(--hex-rotation)) scale(1.03);
	z-index: 4;
}

.services-honeycomb-section__item:hover .services-honeycomb-section__hex::before,
.services-honeycomb-section__item:focus-within .services-honeycomb-section__hex::before {
	filter: saturate(1.02);
	transform: rotate(calc(var(--image-rotation) + var(--image-tilt))) scale(0.92);
}

.services-honeycomb-section--mobile {
	--hex-width: min(54.6vw, 13.65rem);
	--hex-gap-x: 0px;
	--hex-gap-y: 0px;
	--hex-step-x-mobile: calc(var(--hex-width) + var(--hex-gap-x));
	--hex-row-shift-mobile: calc(var(--hex-step-x-mobile) * 0.5);
	--hex-step-y-mobile: calc((var(--hex-height) * 0.75) + var(--hex-gap-y));
	padding-inline: 0.75rem;
}

.services-honeycomb-section--mobile .services-honeycomb-section__cluster {
	align-items: flex-start;
	display: block;
	height: calc(var(--hex-height) + (var(--hex-step-y-mobile) * 2));
	width: calc((var(--hex-width) * 2) + var(--hex-gap-x) + var(--hex-row-shift-mobile));
	padding-inline: 0;
	position: relative;
}

.services-honeycomb-section--mobile .services-honeycomb-section__row {
	display: contents;
}

.services-honeycomb-section--mobile .services-honeycomb-section__row + .services-honeycomb-section__row {
	margin-top: 0;
}

.services-honeycomb-section--mobile .services-honeycomb-section__item {
	position: absolute;
}

.services-honeycomb-section--mobile .services-honeycomb-section__item + .services-honeycomb-section__item {
	margin-left: 0;
}

.services-honeycomb-section--mobile .services-honeycomb-section__row--1 .services-honeycomb-section__item:nth-child(1) {
	left: 0;
	top: 0;
}

.services-honeycomb-section--mobile .services-honeycomb-section__row--1 .services-honeycomb-section__item:nth-child(2) {
	left: var(--hex-step-x-mobile);
	top: 0;
}

.services-honeycomb-section--mobile .services-honeycomb-section__row--2 .services-honeycomb-section__item:nth-child(1) {
	left: var(--hex-row-shift-mobile);
	top: var(--hex-step-y-mobile);
}

.services-honeycomb-section--mobile .services-honeycomb-section__row--2 .services-honeycomb-section__item:nth-child(2) {
	left: calc(var(--hex-row-shift-mobile) + var(--hex-step-x-mobile));
	top: var(--hex-step-y-mobile);
}

.services-honeycomb-section--mobile .services-honeycomb-section__row--3 .services-honeycomb-section__item:nth-child(1) {
	left: 0;
	top: calc(var(--hex-step-y-mobile) * 2);
}

.services-honeycomb-section--mobile .services-honeycomb-section__row--3 .services-honeycomb-section__item:nth-child(2) {
	left: var(--hex-step-x-mobile);
	top: calc(var(--hex-step-y-mobile) * 2);
}

.services-honeycomb-section__hex:focus-visible,
.services-honeycomb-modal__close:focus-visible,
.services-honeycomb-modal__arrow:focus-visible {
	outline: 2px solid var(--services-focus);
	outline-offset: 0.18rem;
}

.services-honeycomb-section__sr-only {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.services-honeycomb-modal {
	inset: 0;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	transition: opacity 220ms ease;
	z-index: 10000;
}

.services-honeycomb-modal.is-open {
	opacity: 1;
	pointer-events: auto;
}

.services-honeycomb-modal__backdrop,
.services-honeycomb-modal__image,
.services-honeycomb-modal__dim,
.services-honeycomb-modal__dialog {
	inset: 0;
	position: absolute;
}

.services-honeycomb-modal__image {
	background-color: var(--services-bg);
	background-image: none;
	filter: none;
	transform: none;
}

.services-honeycomb-modal__dim {
	background: color-mix(in srgb, var(--services-bg) 92%, transparent);
}

.services-honeycomb-modal__dialog {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
}

.services-honeycomb-modal__shell {
	container-type: inline-size;
	filter: drop-shadow(0 28px 44px rgba(15, 23, 32, 0.16));
	height: min(94vh, 66rem);
	overflow: visible;
	position: relative;
	width: min(96vw, calc(min(94vh, 66rem) * 0.8660254));
}

.services-honeycomb-modal__panel {
	background: var(--services-panel);
	box-sizing: border-box;
	color: var(--services-text);
	height: 100%;
	-webkit-mask-image: var(--hex-shape-rounded);
	mask-image: var(--hex-shape-rounded);
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	isolation: isolate;
	padding: clamp(7rem, 10vw, 8.2rem) clamp(5.4rem, 9vw, 6.8rem) clamp(6.8rem, 10vw, 7.8rem);
	position: relative;
	transform: rotate(var(--hex-rotation));
	transform-origin: center;
	width: 100%;
	z-index: 1;
}

.services-honeycomb-modal__panel::before {
	background-image: var(--modal-image, linear-gradient(135deg, #111827 0%, #243447 100%));
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	filter: blur(10px);
	inset: 0;
	opacity: 0.12;
	position: absolute;
	transform: rotate(calc(var(--image-rotation) + var(--image-tilt))) scale(1.08);
	transform-origin: center;
}

.services-honeycomb-modal__panel::after {
	background: var(--services-panel-border);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
	z-index: 1;
	-webkit-mask:
		var(--hex-shape-rounded) center / 100% 100% no-repeat,
		var(--hex-shape-rounded) center / calc(100% - 4px) calc(100% - 4px) no-repeat;
	-webkit-mask-composite: xor;
	mask:
		var(--hex-shape-rounded) center / 100% 100% no-repeat,
		var(--hex-shape-rounded) center / calc(100% - 4px) calc(100% - 4px) no-repeat;
	mask-composite: exclude;
}

.services-honeycomb-modal__panel > * {
	position: relative;
	z-index: 2;
}

.services-honeycomb-modal__content-layer {
	inset: 0;
	position: absolute;
	transform: rotate(var(--modal-content-rotation));
	transform-origin: center;
	z-index: 2;
}

.services-honeycomb-modal__body,
.services-honeycomb-modal__nav {
	touch-action: pan-y;
}

.services-honeycomb-modal__close {
	align-items: center;
	appearance: none;
	background: transparent;
	border: 1px solid rgba(17, 17, 17, 0.16);
	border-radius: 999px;
	box-shadow: none;
	color: #111111;
	cursor: pointer;
	display: inline-flex;
	font-size: 1.2rem;
	font-family: Arial, sans-serif;
	height: 2.75rem;
	justify-content: center;
	font-weight: 500;
	line-height: 1;
	padding: 0;
	position: absolute;
	left: clamp(7.2rem, 12.8vw, 8.6rem);
	right: auto;
	top: clamp(7rem, 12.5vw, 8.2rem);
	text-indent: 0;
	transform: translate(-50%, -50%) rotate(var(--modal-content-rotation));
	transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease;
	vertical-align: middle;
	width: 2.75rem;
	z-index: 5;
}

.services-honeycomb-modal__close::before,
.services-honeycomb-modal__close::after {
	background: currentColor;
	border-radius: 999px;
	content: "";
	height: 2px;
	position: absolute;
	width: 0.95rem;
}

.services-honeycomb-modal__close::before {
	transform: rotate(45deg);
}

.services-honeycomb-modal__close::after {
	transform: rotate(-45deg);
}

.services-honeycomb-modal__title {
	color: #111111;
	font-size: 1.45rem;
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 1.02;
	left: 50%;
	margin: 0;
	max-width: min(25rem, 68%);
	overflow-wrap: anywhere;
	position: absolute;
	text-align: center;
	text-wrap: pretty;
	top: calc(clamp(7.4rem, 12vw, 9rem) + 100px);
	transform: translate(-50%, -50%);
	transform-origin: center;
}

.services-honeycomb-modal__body {
	left: 50%;
	max-width: min(31rem, 66%);
	position: absolute;
	text-align: left;
	top: 50%;
	transform: translate(-50%, -50%);
	transform-origin: center;
}

.services-honeycomb-modal__description {
	color: rgba(17, 17, 17, 0.88);
	font-size: 0.96rem;
	line-height: 1.28;
	margin: 0;
	padding-left: 1.15rem;
}

@container (min-width: 34rem) {
	.services-honeycomb-modal__title {
		font-size: 1.65rem;
	}

	.services-honeycomb-modal__description {
		font-size: 1rem;
	}
}

@container (min-width: 40rem) {
	.services-honeycomb-modal__title {
		font-size: 1.85rem;
	}

	.services-honeycomb-modal__description {
		font-size: 1.04rem;
	}
}

@container (min-width: 46rem) {
	.services-honeycomb-modal__title {
		font-size: 2.05rem;
	}

	.services-honeycomb-modal__description {
		font-size: 1.1rem;
	}
}

.services-honeycomb-modal__description li + li {
	margin-top: 0.18rem;
}

.services-honeycomb-modal__nav {
	display: block;
	inset: 0;
	margin: 0;
	pointer-events: none;
	position: absolute;
	z-index: 5;
}

.services-honeycomb-modal__arrow {
	appearance: none;
	background: transparent;
	border: 1px solid rgba(17, 17, 17, 0.16);
	box-shadow: none;
	border-radius: 999px;
	color: #111111;
	cursor: pointer;
	font-size: 1.2rem;
	height: 2.75rem;
	-webkit-tap-highlight-color: transparent;
	outline: none;
	padding: 0;
	pointer-events: auto;
	position: absolute;
	transition: background-color 200ms ease, border-color 200ms ease;
	width: 2.75rem;
}

.services-honeycomb-modal__arrow--prev {
	left: clamp(5rem, 9.5vw, 6.25rem);
	top: 50%;
	transform: translate(-50%, -50%) rotate(var(--modal-content-rotation));
}

.services-honeycomb-modal__arrow--next {
	right: clamp(5rem, 9.5vw, 6.25rem);
	top: 50%;
	transform: translate(50%, -50%) rotate(var(--modal-content-rotation));
}

.services-honeycomb-modal__arrow:hover,
.services-honeycomb-modal__arrow:active,
.services-honeycomb-modal__arrow:focus,
.services-honeycomb-modal__arrow:focus-visible {
	background: rgba(17, 17, 17, 0.72) !important;
	box-shadow: none !important;
}

.services-honeycomb-modal__arrow:hover,
.services-honeycomb-modal__arrow:active,
.services-honeycomb-modal__arrow:focus,
.services-honeycomb-modal__arrow:focus-visible {
	border-color: rgba(17, 17, 17, 0.72);
	color: #ffffff;
}

.services-honeycomb-modal__close:focus,
.services-honeycomb-modal__close:focus-visible {
	background: transparent !important;
	border-color: rgba(17, 17, 17, 0.16);
	box-shadow: none !important;
	color: #111111;
}

.services-honeycomb-modal__close:hover,
.services-honeycomb-modal__close:active,
.services-honeycomb-modal__close:focus:hover,
.services-honeycomb-modal__close:focus-visible:hover {
	background: rgba(17, 17, 17, 0.72) !important;
	border-color: rgba(17, 17, 17, 0.72) !important;
	box-shadow: none !important;
	color: #ffffff !important;
}

body.services-honeycomb-modal-open {
	overflow: hidden;
}

@media (hover: none) {
	.services-honeycomb-section__hex:hover {
		transform: none;
	}

	.services-honeycomb-section__item:hover {
		filter: drop-shadow(10px 6px 16px rgba(15, 23, 32, 0.24));
		transform: none;
	}

	.services-honeycomb-section__item:hover .services-honeycomb-section__hex::before {
		filter: none;
		transform: rotate(calc(var(--image-rotation) + var(--image-tilt))) scale(0.88);
	}
}

@media (max-width: 900px) {
			.services-honeycomb-section {
				--hex-width: clamp(11.25rem, 31.8vw, 15.9rem);
				--hex-gap: clamp(0.14rem, 0.35vw, 0.28rem);
				--hex-gap-x: var(--hex-gap);
				--hex-gap-y: var(--hex-gap);
				--hex-spacing-x: var(--hex-gap-x);
					--hex-row-shift: calc((var(--hex-width) + var(--hex-spacing-x)) * 0.492);
					--hex-row-overlap: var(--hex-gap-y);
					--hex-row-lift: calc((var(--hex-height) * -0.268) + (var(--hex-gap) * 0.02));
			}

	.services-honeycomb-modal__dialog {
		padding: 1.15rem;
	}
}

@media (max-width: 680px) {
			.services-honeycomb-section {
				--hex-width: min(48vw, 12.15rem);
				--hex-gap: clamp(0.12rem, 0.28vw, 0.22rem);
				--hex-gap-x: var(--hex-gap);
				--hex-gap-y: var(--hex-gap);
				--hex-spacing-x: var(--hex-gap-x);
					--hex-row-shift: calc((var(--hex-width) + var(--hex-spacing-x)) * 0.492);
					--hex-row-overlap: var(--hex-gap-y);
					--hex-row-lift: calc((var(--hex-height) * -0.258) + (var(--hex-gap) * 0.02));
				padding-inline: 0.75rem;
			}

	.services-honeycomb-modal__dialog {
		align-items: center;
		padding: 1rem;
	}

	.services-honeycomb-modal__shell,
	.services-honeycomb-section--mobile .services-honeycomb-modal__shell {
		filter: none;
		height: auto;
		max-height: min(88vh, 46rem);
		transform: none;
		width: min(100%, 42rem);
	}

		.services-honeycomb-modal__panel {
			-webkit-mask-image: none;
			mask-image: none;
			background: rgba(255, 255, 255, 0.97);
			border-radius: 1.25rem;
			display: block;
			height: auto;
			max-height: min(88vh, 46rem);
			overflow: hidden;
			padding: 1.25rem 1.1rem 1.35rem;
			transform: none;
			width: min(100%, 42rem);
		}

	.services-honeycomb-modal__panel::before,
	.services-honeycomb-section--mobile .services-honeycomb-modal__panel::before {
		display: none;
	}

	.services-honeycomb-modal__panel::after,
	.services-honeycomb-section--mobile .services-honeycomb-modal__panel::after {
		display: none;
	}

	.services-honeycomb-modal__content-layer,
	.services-honeycomb-section--mobile .services-honeycomb-modal__content-layer {
		display: flex;
		flex-direction: column;
		gap: 1rem;
		inset: auto;
		padding-top: 0;
		position: static;
		transform: none;
	}

	.services-honeycomb-modal__title,
	.services-honeycomb-section--mobile .services-honeycomb-modal__title {
		font-size: 1.55rem;
		left: auto;
		margin: 0;
		margin-right: 3rem;
		max-width: none;
		position: static;
		text-align: left;
		top: auto;
		transform: none;
	}

	.services-honeycomb-modal__body,
	.services-honeycomb-section--mobile .services-honeycomb-modal__body {
		left: auto;
		margin: 0;
		max-height: min(52vh, 24rem);
		max-width: none;
		overflow-y: auto;
		padding-right: 0.25rem;
		position: static;
		top: auto;
		transform: none;
	}

	.services-honeycomb-modal__description {
		padding-left: 1rem;
	}

	.services-honeycomb-modal__close,
	.services-honeycomb-section--mobile .services-honeycomb-modal__close {
		align-items: center;
		background: transparent;
		border: 1px solid rgba(17, 17, 17, 0.16);
		border-radius: 999px;
		box-shadow: none;
		color: #111111;
		cursor: pointer;
		display: inline-flex;
		font-size: 1.2rem;
		height: 2.75rem;
		justify-content: center;
		line-height: 1;
		padding: 0;
		right: 1rem;
		left: auto;
		top: 1rem;
		transform: none;
		transition: background-color 200ms ease, border-color 200ms ease;
		width: 2.75rem;
	}

	.services-honeycomb-modal__nav,
	.services-honeycomb-section--mobile .services-honeycomb-modal__nav {
		display: flex;
		gap: 0.75rem;
		inset: auto;
		justify-content: center;
		left: auto;
		margin-top: 1.25rem;
		pointer-events: auto;
		position: static;
		transform: none;
	}

	.services-honeycomb-modal__arrow,
	.services-honeycomb-modal__arrow--prev,
	.services-honeycomb-modal__arrow--next {
		position: static;
		transform: none;
	}

	.services-honeycomb-section--mobile .services-honeycomb-modal__shell,
	.services-honeycomb-section--mobile .services-honeycomb-modal__panel,
	.services-honeycomb-section--mobile .services-honeycomb-modal__content-layer,
	.services-honeycomb-section--mobile .services-honeycomb-modal__title,
	.services-honeycomb-section--mobile .services-honeycomb-modal__body,
	.services-honeycomb-section--mobile .services-honeycomb-modal__close,
	.services-honeycomb-section--mobile .services-honeycomb-modal__nav,
	.services-honeycomb-section--mobile .services-honeycomb-modal__arrow,
	.services-honeycomb-section--mobile .services-honeycomb-modal__arrow--prev,
	.services-honeycomb-section--mobile .services-honeycomb-modal__arrow--next {
		transform: none !important;
		rotate: none !important;
		writing-mode: horizontal-tb !important;
	}
	}

@media (max-width: 480px) {
			.services-honeycomb-section {
				--hex-width: min(45.3125vw, 8.90625rem);
				--hex-gap-x: 0px;
				--hex-row-overlap: calc((var(--hex-height) * -0.22) + var(--hex-gap-x) - (var(--hex-outline) * 2) - var(--hex-press));
				--hex-spacing-x: calc(var(--hex-gap-x) - (var(--hex-outline) * 2) - var(--hex-press));
				--hex-row-shift: calc((var(--hex-width) + var(--hex-spacing-x)) * -0.5);
			}

	.services-honeycomb-modal__dialog {
		padding: 0.85rem;
	}

	.services-honeycomb-modal__nav {
		margin-top: 1.3rem;
	}
}

@media (max-height: 900px) {
	.services-honeycomb-modal__dialog {
		padding: 1rem;
	}

	.services-honeycomb-modal__shell {
		height: min(96vh, 66rem);
	}

	.services-honeycomb-modal__panel {
		justify-content: flex-start;
		padding: 5.25rem 4.5rem 7rem;
	}

	.services-honeycomb-modal__close {
		left: clamp(7.2rem, 12.8vw, 8.6rem);
		top: clamp(7rem, 12.5vw, 8.2rem);
	}

	.services-honeycomb-modal__title {
		font-size: 1.28rem;
		line-height: 1.04;
		max-width: 11.8rem;
		text-wrap: wrap;
	}

	.services-honeycomb-modal__body {
		max-width: 30rem;
		overflow-y: auto;
		padding-right: 0.5rem;
		scrollbar-width: thin;
	}

	.services-honeycomb-modal__nav {
		inset: 0;
	}

	.services-honeycomb-modal__arrow--prev {
		left: clamp(5rem, 9.5vw, 6.25rem);
		top: 50%;
	}

	.services-honeycomb-modal__arrow--next {
		right: clamp(5rem, 9.5vw, 6.25rem);
		top: 50%;
	}
}

@media (min-width: 681px) {
	.services-honeycomb-modal.is-open .services-honeycomb-modal__shell > .services-honeycomb-modal__close {
		left: var(--modal-k2-x) !important;
		top: var(--modal-k2-y) !important;
		right: auto !important;
		transform: translate(-50%, -50%) rotate(var(--modal-content-rotation)) !important;
		z-index: 10 !important;
	}

	.services-honeycomb-modal.is-open .services-honeycomb-modal__shell > .services-honeycomb-modal__nav {
		inset: 0 !important;
		position: absolute !important;
		z-index: 10 !important;
	}

	.services-honeycomb-modal.is-open .services-honeycomb-modal__shell > .services-honeycomb-modal__nav .services-honeycomb-modal__arrow--prev {
		left: var(--modal-k1-x) !important;
		top: var(--modal-k1-y) !important;
		transform: translate(-50%, -50%) !important;
	}

	.services-honeycomb-modal.is-open .services-honeycomb-modal__shell > .services-honeycomb-modal__nav .services-honeycomb-modal__arrow--next {
		left: var(--modal-k3-x) !important;
		top: var(--modal-k3-y) !important;
		right: auto !important;
		transform: translate(-50%, -50%) !important;
	}
}

.services-honeycomb-modal.is-open .services-honeycomb-modal__shell > .services-honeycomb-modal__close:hover,
.services-honeycomb-modal.is-open .services-honeycomb-modal__shell > .services-honeycomb-modal__close:active,
.services-honeycomb-modal.is-open .services-honeycomb-modal__shell > .services-honeycomb-modal__close:focus:hover,
.services-honeycomb-modal.is-open .services-honeycomb-modal__shell > .services-honeycomb-modal__close:focus-visible:hover {
	background-color: rgba(17, 17, 17, 0.72) !important;
	background-image: none !important;
	border-color: rgba(17, 17, 17, 0.72) !important;
	box-shadow: none !important;
	color: #ffffff !important;
}

/* Production override: blend the honeycomb section into the page background. */
.services-honeycomb-section,
.services-honeycomb-section--mobile {
	--services-bg: transparent;
	background-color: transparent !important;
	background-image: url("https://1976.sk/wp-content/uploads/2026/04/bck_1.webp") !important;
	background-repeat: repeat !important;
	background-position: center center !important;
	background-size: auto !important;
	background-attachment: fixed !important;
}

@media (max-width: 921px) {
	.services-honeycomb-section,
	.services-honeycomb-section--mobile {
		background-image: linear-gradient(to right, var(--ast-global-color-4), var(--ast-global-color-4)), url("https://1976.sk/wp-content/uploads/2026/04/bck_1.webp") !important;
	}
}
