/**
 * ommzi-slider — Slider Revolution replacement styling.
 * Heights follow the live slider (fullwidthbanner ~600px desktop, 290px small
 * screens per the embedded responsive CSS on production). Per-layer pixel
 * offsets are tuned during Phase 5 visual QA against reference screenshots.
 */

.ommzi-slider {
	position: relative;
	/* Full-bleed: live's fullwidthbanner-container spans edge to edge even when
	   the shortcode sits inside a boxed vc_row. */
	width: 100vw;
	margin-left: calc(50% - 50vw);
	height: 600px;
	overflow: hidden;
	background: #000;
}

.ommzi-slider-track,
.ommzi-slide {
	position: absolute;
	inset: 0;
}

.ommzi-slide {
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 0.8s ease;
	pointer-events: none;
	z-index: 1;
}

.ommzi-slide.is-active {
	opacity: 1;
	pointer-events: auto;
	z-index: 2;
}

.ommzi-slide-content {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	gap: 14px;
	padding: 0 8%;
}

.ommzi-slide-layer {
	color: #fff;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
	/* Live slider captions: Open Sans 400, 20px/22px (inline RevSlider styles). */
	font-family: "Open Sans", Verdana, Geneva, sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 22px;
	max-width: 900px;
}

.ommzi-slide-layer:first-child {
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	line-height: 1.15;
}

/* Live CTA: white on #f60, 2px solid border, 3px radius, Verdana (RevSlider inline styles). */
.ommzi-slide-btn {
	display: inline-block;
	margin-top: 18px;
	padding: 12px 30px;
	color: #fff;
	background-color: rgba(255, 102, 0, 1);
	border: 2px solid rgba(255, 102, 0, 1);
	border-radius: 3px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 16px;
	line-height: 1;
	text-decoration: none;
	text-shadow: none;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.ommzi-slide-btn:hover {
	background: transparent;
	color: #fff;
}

.ommzi-slide-layer a {
	color: #fff;
	text-decoration: underline;
}

.ommzi-slider-nav button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.35);
	color: #fff;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease;
}

.ommzi-slider-nav button:hover {
	background: rgba(0, 0, 0, 0.65);
}

.ommzi-slider-prev { left: 18px; }
.ommzi-slider-next { right: 18px; }

@media (max-width: 690px) {
	.ommzi-slider { height: 290px; }
	.ommzi-slide-content { gap: 8px; }
	.ommzi-slider-nav button { width: 34px; height: 34px; font-size: 20px; }
}

/* Bullet block ("Group4" in the slider data): three icon + text rows, each
   icon ~26-30px at left:10 in the source. Left-aligned as a group but the
   block itself is centred, matching the slide layout. */
.ommzi-slide-bullets {
	list-style: none;
	margin: 6px 0 0;
	padding: 0;
	display: inline-block;
	text-align: left;
}

.ommzi-slide-bullets li {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 10px;
	color: #fff;
	font-family: "Open Sans", Verdana, Geneva, sans-serif;
	font-size: 20px;
	line-height: 22px;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
}

.ommzi-slide-bullets li img {
	flex: 0 0 auto;
	width: 28px;
	height: auto;
}

@media (max-width: 690px) {
	.ommzi-slide-bullets li { font-size: 14px; line-height: 17px; gap: 8px; margin-bottom: 6px; }
	.ommzi-slide-bullets li img { width: 20px; }
}
