/* Orion Explore — matches the real ".our-explore-worked-section" markup
   exactly, using this project's real breakpoints:
   sm=640, md=769, lg=992, xl=1199, 1xl=1380, 2xl=1752.
   No fullbleed/vw trick needed: the section's own width already spans the
   viewport for its background color, while the container inside just
   constrains the content — real doesn't break out of normal flow here. */
.orion-explore {
	width: 100%;
	position: relative;
	z-index: 1;
	background-color: var(--orion-primary);
	padding-top: 40px;
	padding-bottom: 0;
	margin-bottom: 32px;
}
@media (min-width: 769px) { .orion-explore { margin-bottom: 50px; } }
@media (min-width: 992px) {
	.orion-explore {
		background-color: #fff;
		padding-bottom: 46px;
	}
}
@media (min-width: 992px) { .orion-explore { margin-bottom: 60px; } }
@media (min-width: 1199px) { .orion-explore { padding-bottom: 77px; } }
@media (min-width: 1380px) { .orion-explore { padding-bottom: 95px; margin-bottom: 80px; } }
@media (min-width: 1752px) { .orion-explore { padding-bottom: 128px; margin-bottom: 100px; } }

.orion-explore-content-container {
	width: 100%;
	margin: 0 auto;
	padding: 0 16px;
	position: relative;
}
@media (min-width: 640px) { .orion-explore-content-container { max-width: 640px; } }
@media (min-width: 769px) { .orion-explore-content-container { max-width: 769px; } }
@media (min-width: 992px) { .orion-explore-content-container { max-width: 992px; } }
@media (min-width: 1199px) { .orion-explore-content-container { max-width: 1199px; } }
@media (min-width: 1380px) { .orion-explore-content-container { max-width: 1380px; } }
@media (min-width: 1752px) { .orion-explore-content-container { max-width: 1752px; } }

.orion-explore__inner {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column-reverse;
	justify-content: space-between;
	position: relative;
}
@media (min-width: 992px) {
	.orion-explore__inner {
		flex-direction: row;
		background-color: var(--orion-primary);
	}
}

/* Left text content (white on teal background) */
.orion-explore__left {
	width: 100%;
	color: #fff;
	position: relative;
	z-index: 1;
	padding-top: 24px;
	padding-bottom: 40px;
}
@media (min-width: 640px) { .orion-explore__left { padding-top: 32px; } }
@media (min-width: 769px) { .orion-explore__left { padding-top: 40px; } }
@media (min-width: 992px) {
	.orion-explore__left {
		width: 50%;
		padding-left: 40px;
		padding-right: 20px;
		padding-bottom: 95px;
	}
}
@media (min-width: 1199px) { .orion-explore__left { padding-top: 50px; padding-left: 48px; padding-right: 48px; padding-bottom: 140px; } }
@media (min-width: 1380px) { .orion-explore__left { padding-top: 60px; padding-left: 64px; padding-right: 64px; padding-bottom: 70px; } }
@media (min-width: 1752px) { .orion-explore__left { padding-top: 150px; padding-left: 80px; padding-right: 80px; } }

/* HTML global h2 + text-white (not h1 var). */
html body h2.orion-explore__heading,
.orion-explore__heading {
	width: 100%;
	margin: 0 0 18px;
	color: #fff !important;
	font-family: var(--orion-font-heading, "El Messiri", serif) !important;
	font-weight: 500 !important;
	font-size: 26px !important;
	line-height: 36px !important;
	letter-spacing: normal !important;
	text-transform: none !important;
}
@media (min-width: 640px) {
	html body h2.orion-explore__heading,
	.orion-explore__heading { width: 80%; font-size: 30px !important; line-height: 40px !important; }
}
@media (min-width: 769px) {
	html body h2.orion-explore__heading,
	.orion-explore__heading { font-size: 35px !important; line-height: 40px !important; }
}
@media (min-width: 992px) {
	html body h2.orion-explore__heading,
	.orion-explore__heading { margin-bottom: 8px; }
}
@media (min-width: 1199px) {
	html body h2.orion-explore__heading,
	.orion-explore__heading { margin-bottom: 18px; font-size: 40px !important; line-height: 50px !important; }
}
@media (min-width: 1380px) {
	html body h2.orion-explore__heading,
	.orion-explore__heading { margin-bottom: 20px; font-size: 46px !important; line-height: 55px !important; }
}
@media (min-width: 1752px) {
	html body h2.orion-explore__heading,
	.orion-explore__heading { margin-bottom: 32px; font-size: 60px !important; line-height: 70px !important; }
}

p.orion-explore__description {
	margin: 0 0 25px;
	color: #fff;
	font-family: var(--orion-font-body, Lexend, sans-serif) !important;
	font-weight: 300 !important;
	font-size: 14px !important;
	line-height: 23px !important;
}
@media (min-width: 992px) {
	p.orion-explore__description {
		font-size: 15px !important;
		line-height: 25px !important;
	}
}
@media (min-width: 1199px) {
	p.orion-explore__description { line-height: 26px !important; }
}
@media (min-width: 1380px) {
	p.orion-explore__description {
		margin-bottom: 36px;
		line-height: 28px !important;
	}
}
@media (min-width: 1752px) {
	p.orion-explore__description {
		font-size: 18px !important;
		line-height: 32px !important;
	}
}

.orion-explore__button-wrap { width: fit-content; }

/* The theme's generic ".btn" loads after the utility sheet and overrides the
   reference's button box, so it is restated on the component class. */
.orion-explore__button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	white-space: nowrap;
	text-align: start;
	font-family: var(--font-lexend, Lexend, sans-serif);
	font-weight: 400;
	line-height: 24px;
	letter-spacing: normal;
}

/* Right Gallery */
.orion-explore__gallery-wrap {
	width: 100%;
	position: relative;
	z-index: 2;
}
@media (min-width: 992px) { .orion-explore__gallery-wrap { width: 49%; } }
@media (min-width: 1380px) { .orion-explore__gallery-wrap { width: 47%; } }
@media (min-width: 1752px) { .orion-explore__gallery-wrap { width: 48%; } }

.orion-explore__gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	position: relative;
	z-index: 1;
}
@media (min-width: 640px) { .orion-explore__gallery { gap: 36px; } }
@media (min-width: 992px) {
	.orion-explore__gallery {
		column-gap: 22px;
		row-gap: 0;
		margin-right: -32px;
		margin-bottom: -96px;
	}
}
@media (min-width: 1199px) { .orion-explore__gallery { margin-top: -40px; } }
@media (min-width: 1380px) { .orion-explore__gallery { column-gap: 32px; } }
@media (min-width: 1752px) { .orion-explore__gallery { column-gap: 28px; margin-bottom: -128px; } }

.orion-explore__gallery-cell { display: flex; align-items: center; justify-content: center; width: 100%; }
.orion-explore__gallery-cell--2 { align-items: flex-start; }
@media (min-width: 992px) { .orion-explore__gallery-cell--2 { justify-content: flex-end; } }

.orion-explore__gallery-item {
	position: relative;
	overflow: hidden;
	width: 100%;
}
.orion-explore__gallery-item--1::before { content: ''; display: block; padding-top: 100%; }
@media (min-width: 992px) { .orion-explore__gallery-item--1::before { padding-top: 115%; } }
@media (min-width: 1752px) { .orion-explore__gallery-item--1::before { padding-top: 118%; } }

.orion-explore__gallery-item--2::before { content: ''; display: block; padding-top: 100%; }
@media (min-width: 992px) { .orion-explore__gallery-item--2::before { padding-top: 106%; } }
@media (min-width: 1752px) { .orion-explore__gallery-item--2::before { padding-top: 110%; } }
@media (min-width: 992px) { .orion-explore__gallery-item--2 { width: 80%; margin-top: 48px; margin-right: 52px; } }
@media (min-width: 1199px) { .orion-explore__gallery-item--2 { margin-top: 60px; } }
@media (min-width: 1380px) { .orion-explore__gallery-item--2 { margin-right: 60px; } }
@media (min-width: 1752px) { .orion-explore__gallery-item--2 { margin-top: 70px; } }

.orion-explore__gallery-item--3::before { content: ''; display: block; padding-top: 100%; }
@media (min-width: 992px) { .orion-explore__gallery-item--3::before { padding-top: 120%; } }
@media (min-width: 1199px) { .orion-explore__gallery-item--3::before { padding-top: 110%; } }
@media (min-width: 1752px) { .orion-explore__gallery-item--3::before { padding-top: 120%; } }
@media (min-width: 992px) { .orion-explore__gallery-item--3 { width: 80%; margin-left: 40px; } }

.orion-explore__gallery-item--4::before { content: ''; display: block; padding-top: 100%; }
@media (min-width: 992px) { .orion-explore__gallery-item--4::before { padding-top: 120%; } }
@media (min-width: 1199px) { .orion-explore__gallery-item--4::before { padding-top: 110%; } }
@media (min-width: 1752px) { .orion-explore__gallery-item--4::before { padding-top: 120%; } }

/* Compound selector (2 classes) needed to beat Elementor's global
   ".elementor img{height:auto;max-width:100%}" reset (0,1,1 specificity). */
.orion-explore__gallery-item .orion-explore__gallery-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100% !important;
	object-fit: cover;
	max-width: none;
}

/* Floating customer review box */
.orion-explore__review-box {
	width: 100%;
	max-width: 280px;
	position: relative;
	left: 50%;
	/* The reference uses the standalone "translate" property, unprefixed, so the
	   -50% centring offset stays in effect at every breakpoint. */
	translate: -50%;
	bottom: -1px;
	background: #fff;
	border-radius: 40px 40px 0 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 18px;
	padding: 16px 22px;
	/* Below the gallery (z-index 2), which overlaps the badge in the reference. */
	z-index: 1;
}
@media (min-width: 640px) { .orion-explore__review-box { max-width: 72%; flex-wrap: nowrap; } }
@media (min-width: 769px) { .orion-explore__review-box { max-width: 64%; width: auto; } }
@media (min-width: 992px) {
	.orion-explore__review-box {
		width: auto;
		position: absolute;
		left: 36%;
		border-radius: 40px 0 0 0;
		gap: 0;
		padding: 16px 22px;
	}
}
@media (min-width: 1199px) { .orion-explore__review-box { left: 37.3%; padding-top: 22px; padding-bottom: 22px; } }
@media (min-width: 1380px) { .orion-explore__review-box { left: 40%; padding-left: 32px; padding-right: 32px; } }
@media (min-width: 1752px) { .orion-explore__review-box { left: 39.5%; padding: 30px 40px; border-radius: 50px 0 0 0; } }

.orion-explore__review-avatars {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}
@media (min-width: 640px) { .orion-explore__review-avatars { width: auto; } }
@media (min-width: 769px) { .orion-explore__review-avatars { margin-right: 20px; } }
@media (min-width: 1380px) { .orion-explore__review-avatars { margin-right: 32px; } }

.orion-explore__review-avatar {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	overflow: hidden;
	margin-left: -9px;
	border: 1px solid #fff;
	background: #fff;
}
@media (min-width: 640px) { .orion-explore__review-avatar { margin-left: -14px; border-width: 3px; } }
@media (min-width: 769px) { .orion-explore__review-avatar { width: 48px; height: 48px; } }
@media (min-width: 1752px) { .orion-explore__review-avatar { width: 56px; height: 56px; } }
.orion-explore__review-avatar:first-child { margin-left: 0; }
.orion-explore__review-avatar-img { width: 100%; height: 100% !important; object-fit: cover; display: block; }

.orion-explore__review-count-num { margin: 0; flex-shrink: 0; color: var(--orion-primary); }
@media (min-width: 769px) { .orion-explore__review-count-num { margin-right: 15px; } }

.orion-explore__review-label-text { margin: 0; font-weight: 300; }
