.codrops-image-reveal-root {
	display: block;
	width: 100%;
}

.codrops-image-reveal-root .note-container {
	width: 100%;
}

.codrops-image-reveal {
	position: relative;
}

.codrops-image-reveal .content__text-link span {
	display: inline-block;
	white-space: pre;
}

.codrops-image-reveal .content__text-link {
	position: relative;
	font: inherit;
	line-height: inherit;
	cursor: pointer;
	color: inherit;
	display: inline-block;
	text-decoration: none;
}

.codrops-image-reveal a.content__text-link[data-fx="14"]::after {
	content: '';
	z-index: -1;
	width: 100%;
	bottom: 0;
	left: 0;
	position: absolute;
	height: 2px;
	background: currentColor;
	transform: scale3d(0,1,1);
	transform-origin: 0% 50%;
}

.codrops-image-reveal a.content__text-link[data-fx="14"]:hover::after {
	animation: codrops-effect14-loop 0.5s infinite;
}

@keyframes codrops-effect14-loop {
	0% { transform-origin: 0% 50%; transform: scale3d(0,1,1); }
	50% { transform-origin: 0% 50%; transform: scale3d(1,1,1); }
	51% { transform-origin: 100% 50%; }
	100% { transform-origin: 100% 50%; transform: scale3d(0,1,1); }
}

.codrops-image-reveal .hover-reveal {
	position: fixed;
	width: 200px;
	height: 150px;
	top: 0;
	left: 0;
	pointer-events: none;
	opacity: 0;
	z-index: 9999;
}

.codrops-image-reveal .hover-reveal__inner,
.codrops-image-reveal .hover-reveal__img {
	width: 100%;
	height: 100%;
	position: relative;
}

.codrops-image-reveal .hover-reveal__deco {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.codrops-image-reveal .hover-reveal__img {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}

.report-slideshow {
	position: fixed;
	inset: 0;
	z-index: 1300;
	display: none;
	align-items: stretch;
	justify-content: stretch;
	padding: 0;
}

.report-slideshow.is-open {
	display: flex;
}

.report-slideshow--inline {
	position: relative;
	display: block;
	z-index: auto;
	padding: 0;
	inset: auto;
	margin: 20px 0 0;
}

.report-slideshow--inline .report-slideshow-backdrop {
	display: none;
}

.report-slideshow--inline .report-slideshow-dialog {
	width: 100%;
	height: auto;
	min-height: 0;
	padding: 0;
	background: transparent;
	box-shadow: none;
}

.report-slideshow--inline .report-slideshow-stage {
	padding: 0 0 18px;
}

.report-slideshow--inline .report-slideshow-frame {
	height: auto;
	min-height: 0;
	align-items: flex-start;
}

.report-slideshow--inline .report-slideshow-viewport {
	height: auto;
}

.report-slideshow--inline .report-slideshow-image {
	width: 100%;
	height: auto;
	max-width: 100%;
	max-height: none;
}

.report-slideshow--inline .report-slideshow-thumbs {
	padding-bottom: 0;
	justify-content: center;
}

.report-slideshow-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 14, 0.88);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}

.report-slideshow-dialog {
	--slideshow-gutter: 24px;
	--stage-gutter: 24px;
	--control-size: 52px;
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	display: grid;
	grid-template-rows: minmax(0, 1fr) auto;
	gap: 0;
	padding: var(--slideshow-gutter);
	background: linear-gradient(180deg, rgba(27, 25, 33, 0.98), rgba(16, 15, 20, 0.98));
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.report-slideshow-close {
	position: absolute;
	top: var(--stage-gutter);
	right: var(--stage-gutter);
	width: var(--control-size);
	height: var(--control-size);
	padding: 0;
	border: 0;
	border-radius: 999px;
	appearance: none;
	-webkit-appearance: none;
	background: rgba(255, 255, 255, 0.08);
	color: #f3efe7;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	pointer-events: auto;
	z-index: 5;
}

.report-slideshow-stage {
	min-height: 0;
	position: relative;
	display: block;
	padding: 0 0 18px;
}

.report-slideshow-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: var(--control-size);
	height: var(--control-size);
	padding: 0;
	border: 0;
	border-radius: 999px;
	appearance: none;
	-webkit-appearance: none;
	background: rgba(255, 255, 255, 0.08);
	color: #f3efe7;
	font-size: 24px;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
	pointer-events: auto;
	z-index: 5;
}

.report-slideshow-arrow.is-prev {
	left: var(--stage-gutter);
}

.report-slideshow-arrow.is-next {
	right: var(--stage-gutter);
}

.report-slideshow-arrow:hover,
.report-slideshow-close:hover,
.report-slideshow-thumb:hover {
	background: rgba(255, 255, 255, 0.16);
}

.report-slideshow-arrow:active {
	transform: translateY(-50%) scale(0.96);
}

.report-slideshow-close:active {
	transform: scale(0.96);
}

.report-slideshow-viewport {
	display: grid;
	height: 100%;
	min-width: 0;
	position: relative;
	padding: 0;
}

.report-slideshow-frame {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.03);
	overflow: hidden;
}

.report-slideshow-header {
	position: absolute;
	top: var(--stage-gutter);
	left: var(--stage-gutter);
	pointer-events: auto;
	z-index: 5;
}

.report-slideshow-image {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display: block;
	transform: translate3d(0, 0, 0);
	transform-origin: center center;
	transition: transform 0.25s ease;
	touch-action: manipulation;
}

.report-slideshow-frame.is-zoomed {
	cursor: grab;
}

.report-slideshow-frame.is-zoomed .report-slideshow-image {
	width: auto;
	height: 100%;
	max-width: none;
	max-height: none;
	object-fit: cover;
	touch-action: pan-x;
}

.report-slideshow-progress-wrap {
	position: relative;
	width: var(--control-size);
	height: var(--control-size);
	display: flex;
	align-items: center;
	justify-content: center;
}

.report-slideshow-progress {
	position: absolute;
	top: 0;
	left: 0;
	width: var(--control-size);
	height: var(--control-size);
	display: block;
	transform: rotate(-90deg);
}

.report-slideshow-toggle {
	position: absolute;
	top: 50%;
	left: 50%;
	width: calc(var(--control-size) - 12px);
	height: calc(var(--control-size) - 12px);
	padding: 0;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 999px;
	appearance: none;
	-webkit-appearance: none;
	background: transparent;
	color: #f6f0df;
	cursor: pointer;
}

.report-slideshow-toggle-icon {
	display: block;
	width: 14px;
	height: 14px;
	position: relative;
	flex: 0 0 auto;
}

.report-slideshow-toggle-icon.is-pause::before,
.report-slideshow-toggle-icon.is-pause::after {
	content: '';
	position: absolute;
	top: 1px;
	bottom: 1px;
	width: 3px;
	background: currentColor;
	border-radius: 2px;
}

.report-slideshow-toggle-icon.is-pause::before {
	left: 2px;
}

.report-slideshow-toggle-icon.is-pause::after {
	right: 2px;
}

.report-slideshow-toggle-icon.is-play::before {
	content: '';
	position: absolute;
	left: 3px;
	top: 1px;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 9px solid currentColor;
}

.report-slideshow-progress-track,
.report-slideshow-progress-ring {
	fill: none;
	stroke-width: 4;
}

.report-slideshow-progress-track {
	stroke: rgba(255, 255, 255, 0.14);
}

.report-slideshow-progress-ring {
	stroke: #f6f0df;
	stroke-linecap: round;
	stroke-dasharray: 113.097;
	stroke-dashoffset: 113.097;
}

.report-slideshow-counter {
	position: absolute;
	top: 44px;
	left: 50%;
	transform: translateX(-50%);
	margin: 0;
	font-family: "Roboto Mono", monospace;
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(246, 240, 223, 0.72);
	z-index: 2;
	text-shadow: 0 0 2px rgba(12, 10, 18, 0.8);
}

.report-slideshow-thumbs {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	padding: 0;
}

.report-slideshow-thumb {
	flex: 0 0 auto;
	width: 86px;
	height: 62px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.04);
	overflow: hidden;
	cursor: pointer;
}

.report-slideshow-thumb.is-active {
	border-color: rgba(246, 240, 223, 0.8);
	box-shadow: 0 0 0 1px rgba(246, 240, 223, 0.36);
}

.report-slideshow-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width: 900px) {
	.report-slideshow-dialog {
		--slideshow-gutter: 16px;
		--stage-gutter: 16px;
		padding: 16px;
	}

	.report-slideshow-close {
		top: var(--stage-gutter);
		right: var(--stage-gutter);
	}

	.report-slideshow-arrow {
		top: auto;
		bottom: 28px;
	}

	.report-slideshow-arrow.is-prev {
		left: var(--stage-gutter);
	}

	.report-slideshow-arrow.is-next {
		right: var(--stage-gutter);
	}

	.report-slideshow-header {
		top: var(--stage-gutter);
		left: var(--stage-gutter);
	}

	.report-slideshow-frame {
		padding: 16px;
	}

	.report-slideshow-viewport {
		padding: 0;
	}

	.report-slideshow-thumb {
		width: 72px;
		height: 54px;
	}

	.report-slideshow-thumbs {
		padding: 0 16px 16px;
	}
}
