.sky-location-editable {
	--sky-ink: #03172c;
	--sky-teal: #00a3a6;
	--sky-teal-dark: #007f82;
	--sky-line: #eaeaea;
	--sky-mint: rgba(0, 163, 166, .06);
	--sky-hero-border: #edf2f4;
	--sky-hero-shadow: 0 22px 60px rgba(3, 23, 44, .09);
	color: #333;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.sky-location-editable * {
	box-sizing: border-box;
}

.sky-location-wrap {
	width: min(1140px, calc(100% - 40px));
	margin: 0 auto;
}

.sky-location-hero {
	position: relative;
	left: 50%;
	width: min(1620px, calc(100vw - clamp(28px, 4vw, 68px)));
	height: clamp(600px, 42vw, 700px);
	margin: 20px 0 0;
	transform: translateX(-50%);
	overflow: hidden;
	padding: 16px;
	background: #fff;
	border: 1px solid var(--sky-hero-border);
	border-radius: 22px;
	box-shadow: var(--sky-hero-shadow);
}

.sky-location-hero-content {
	position: relative;
	z-index: 3;
	display: flex;
	width: 100%;
	height: 100%;
	min-height: 0;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	margin: 0;
	padding: clamp(44px, 5vw, 78px) calc(52% + 90px) clamp(44px, 5vw, 78px) clamp(42px, 5vw, 78px);
	background: linear-gradient(135deg, #fff 0%, #fff 68%, #f6fafb 100%);
	border-radius: 15px !important;
}

.sky-location-hero-image {
	position: absolute;
	z-index: 4;
	top: 16px;
	right: 16px;
	bottom: 16px;
	display: block;
	width: 52%;
	height: calc(100% - 32px) !important;
	max-height: none !important;
	object-fit: cover;
	object-position: center;
	border: 1px solid rgba(3, 23, 44, .06);
	border-radius: 15px !important;
	box-shadow: none;
}

.sky-location-hero-overlay {
	position: absolute;
	z-index: 6;
	bottom: 28px;
	left: 51%;
	display: block;
	width: 46px;
	height: 46px;
	pointer-events: none;
	background: #fff;
	border: 1px solid rgba(3, 23, 44, .08);
	border-radius: 50%;
	box-shadow: 0 10px 28px rgba(3, 23, 44, .16);
}

.sky-location-hero-overlay::before {
	content: "";
	position: absolute;
	top: 11px;
	left: 14px;
	width: 17px;
	height: 17px;
	border: 2px solid var(--sky-teal-dark);
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
}

.sky-location-hero-overlay::after {
	content: "";
	position: absolute;
	top: 17px;
	left: 20px;
	width: 5px;
	height: 5px;
	background: var(--sky-teal);
	border-radius: 50%;
}

.sky-location-hero-content::before,
.sky-location-hero-content::after {
	content: "";
	position: absolute;
	z-index: 5;
	pointer-events: none;
	border-left: 4px solid rgba(0, 163, 166, .2);
	border-bottom: 4px solid rgba(0, 163, 166, .2);
}

.sky-location-hero-content::before {
	top: -16px;
	left: 30.5%;
	width: 10.5%;
	height: 125px;
	border-radius: 0 0 0 70px;
}

.sky-location-hero-content::after {
	bottom: -20px;
	left: 40.5%;
	width: 12%;
	height: 145px;
	border-radius: 0 0 0 68px;
}

.sky-location-hero::before {
	content: "";
	position: absolute;
	z-index: 6;
	top: 27px;
	left: calc(30.5% + 9px);
	width: 17px;
	height: 17px;
	pointer-events: none;
	background: #fff;
	border: 3px solid rgba(0, 163, 166, .22);
	border-radius: 50%;
}

.sky-location-hero::after {
	content: none;
}

.sky-location-kicker {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0 0 15px;
	color: var(--sky-teal-dark);
	font-size: .82rem;
	font-weight: 750;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.sky-location-kicker::before {
	content: "";
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--sky-teal);
}

.sky-location-hero h1 {
	max-width: 580px;
	margin: 0 0 24px;
	color: var(--sky-ink);
	font-size: clamp(3rem, 4.5vw, 4.75rem);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -.045em;
	text-wrap: balance;
}

.sky-location-lead {
	max-width: 560px;
	margin: 0 0 32px;
	color: #4f6072;
	font-size: clamp(1.02rem, 1.3vw, 1.16rem);
	line-height: 1.65;
}

.sky-location-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.sky-location-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 13px 22px;
	border: 1px solid transparent;
	border-radius: 8px;
	font-size: .98rem;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	transition: transform .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.sky-location-btn::after {
	content: "";
	width: 7px;
	height: 7px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(45deg);
}

.sky-location-btn:hover {
	transform: translateY(-2px);
}

.sky-location-btn-primary {
	background: var(--sky-teal);
	color: #fff;
}

.sky-location-btn-primary:hover {
	background: var(--sky-teal-dark);
	color: #fff;
	box-shadow: 0 10px 22px rgba(0, 127, 130, .2);
}

.sky-location-btn-secondary {
	background: #fff;
	border-color: #cbd5db;
	color: var(--sky-ink);
}

.sky-location-btn-secondary:hover {
	border-color: var(--sky-teal);
	color: var(--sky-teal-dark);
}

.sky-location-section {
	padding: 72px 0;
}

.sky-location-alt {
	background: #f8fafb;
}

.sky-location-section h2 {
	margin-top: 0;
	color: var(--sky-ink);
	font-size: clamp(1.75rem, 3vw, 2.35rem);
	font-weight: 750;
	line-height: 1.2;
	letter-spacing: -.02em;
}

.sky-location-section h3 {
	margin-top: 0;
	color: var(--sky-ink);
}

.sky-location-two-column {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
	align-items: stretch;
}

.sky-location-two-column--single {
	grid-template-columns: minmax(0, 1fr);
}

.sky-location-card {
	height: 100%;
	padding: 28px;
	background: #fff;
	border: 1px solid var(--sky-line);
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.sky-location-card p:last-child,
.sky-location-card ul:last-child {
	margin-bottom: 0;
}

.sky-location-list {
	padding-left: 20px;
}

.sky-location-list li {
	margin: 10px 0;
}

.sky-location-note {
	margin-top: 25px;
	padding: 16px 18px;
	background: var(--sky-mint);
	border: 1px solid rgba(0, 163, 166, .16);
	border-left: 4px solid var(--sky-teal);
	border-radius: 8px;
	color: var(--sky-ink);
}

.sky-location-services {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 26px;
}

.sky-location-service {
	display: flex;
	align-items: center;
	min-height: 68px;
	padding: 17px 18px;
	background: #fff;
	border: 1px solid var(--sky-line);
	border-radius: 10px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .035);
	color: var(--sky-ink);
	font-weight: 650;
	text-decoration: none;
}

.sky-location-service::before {
	content: "";
	flex: 0 0 8px;
	width: 8px;
	height: 8px;
	margin-right: 11px;
	border-radius: 50%;
	background: var(--sky-teal);
}

.sky-location-service:hover {
	border-color: rgba(0, 163, 166, .45);
	color: var(--sky-teal-dark);
}

.sky-location-muted {
	color: #60717c;
	font-size: .94rem;
}

@media (max-width: 1100px) {
	.sky-location-hero {
		left: auto;
		width: min(100% - 24px, 1140px);
		height: 600px;
		margin-right: auto;
		margin-left: auto;
		transform: none;
	}

	.sky-location-hero-content {
		padding-right: calc(50% + 48px);
		padding-left: 38px;
	}

	.sky-location-hero-image {
		width: 50%;
	}

	.sky-location-hero h1 {
		font-size: clamp(2.45rem, 5vw, 3.35rem);
	}

	.sky-location-hero-content::before {
		left: 31%;
		width: 14%;
	}

	.sky-location-hero-content::after {
		left: 45%;
		width: 6%;
	}

	.sky-location-hero-overlay {
		left: 49%;
	}

	.sky-location-hero::before {
		left: calc(31% + 6px);
	}

	.sky-location-services {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.sky-location-wrap {
		width: min(100% - 32px, 1140px);
	}

	.sky-location-hero {
		left: auto;
		width: min(100% - 24px, 1140px);
		height: auto;
		margin-top: 12px;
		min-height: 0;
		transform: none;
		padding: 8px;
		border-radius: 17px;
	}

	.sky-location-hero-content {
		width: 100%;
		min-height: 0;
		margin: 0;
		padding: 34px 24px 30px;
		border-radius: 0 0 11px 11px;
	}

	.sky-location-hero-image {
		position: relative;
		inset: auto;
		z-index: 3;
		display: block;
		width: 100%;
		height: auto !important;
		min-height: 255px;
		aspect-ratio: 16 / 10;
		border-radius: 11px 11px 0 0 !important;
		box-shadow: none;
	}

	.sky-location-hero-content::before,
	.sky-location-hero-content::after,
	.sky-location-hero::before,
	.sky-location-hero::after,
	.sky-location-hero-overlay {
		display: none;
	}

	.sky-location-kicker {
		margin-bottom: 12px;
		font-size: .73rem;
		letter-spacing: .095em;
	}

	.sky-location-hero h1 {
		margin-bottom: 18px;
		font-size: clamp(2.25rem, 11vw, 3.1rem);
		line-height: 1.01;
	}

	.sky-location-lead {
		margin-bottom: 25px;
		font-size: 1rem;
		line-height: 1.58;
	}

	.sky-location-two-column,
	.sky-location-services {
		grid-template-columns: 1fr;
	}

	.sky-location-card {
		padding: 23px;
	}

	.sky-location-btn {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sky-location-btn {
		transition: none;
	}
}
