/**
 * Levi & Adelyn image magnifier.
 *
 * Global defaults are injected by WordPress. They may be overridden on an
 * individual Divi module with the same CSS custom properties.
 */
.levi-resume {
	--laphu-zoom: 2.5;
	--laphu-lens-size: 190px;
	--laphu-lens-radius: 50%;
	--laphu-border-width: 3px;
	--laphu-border-color: #fff;
	--laphu-lens-shadow: 0 4px 18px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(0, 0, 0, 0.18);
}

.levi-resume .et_pb_image_wrap,
.levi-resume .laphu-magnifier-wrap {
	position: relative;
	display: inline-block;
	max-width: 100%;
	overflow: hidden;
	cursor: crosshair;
	line-height: 0;
}

.levi-resume .et_pb_image_wrap img,
.levi-resume .laphu-magnifier-wrap img {
	display: block;
	max-width: 100%;
	height: auto;
}

.levi-resume .laphu-magnifier-lens {
	position: absolute;
	z-index: 20;
	top: 0;
	left: 0;
	width: var(--laphu-lens-size);
	height: var(--laphu-lens-size);
	border: var(--laphu-border-width) solid var(--laphu-border-color);
	border-radius: var(--laphu-lens-radius);
	box-sizing: border-box;
	background-color: rgba(255, 255, 255, 0.08);
	background-repeat: no-repeat;
	box-shadow: var(--laphu-lens-shadow);
	pointer-events: none;
	opacity: 0;
	transform: translate(-50%, -50%);
	transition: opacity 120ms ease;
	will-change: left, top, background-position;
}

.levi-resume.laphu-is-magnifying .laphu-magnifier-lens {
	opacity: 1;
}

@media (hover: none), (pointer: coarse) {
	.levi-resume .laphu-magnifier-lens {
		display: none !important;
	}

	.levi-resume .et_pb_image_wrap,
	.levi-resume .laphu-magnifier-wrap {
		cursor: default;
	}
}

@media print {
	.levi-resume .laphu-magnifier-lens {
		display: none !important;
	}
}
