.operose-registration-template {
	--ort-blue: #005eb8;
	--ort-blue-dark: #003087;
	--ort-green: #007f3b;
	--ort-text: #212b32;
	--ort-border: #d8dde0;
	--ort-muted: #edf3f6;
	--ort-white: #ffffff;
	--ort-shell: 1320px;
	color: var(--ort-text);
}

.operose-registration-template .ort-shell {
	box-sizing: border-box;
	max-width: var(--ort-shell);
	margin: 0 auto;
	padding: 0 24px;
}

.operose-registration-template .ort-section {
	padding: 64px 0;
}

.operose-registration-template .ort-section--tight {
	padding-bottom: 32px;
}

.operose-registration-template .ort-section--registration {
	border-bottom: 1px solid var(--ort-border);
}

.operose-registration-template .ort-section--muted {
	background: var(--ort-muted);
	border-top: 2px solid var(--ort-blue);
}

.operose-registration-template .ort-section--location {
	background: var(--ort-muted);
}

.operose-registration-template .ort-section--brand {
	background: var(--ort-blue);
	color: var(--ort-white);
}

.operose-registration-template .ort-section--cta {
	text-align: center;
}

.operose-registration-template .ort-section__title {
	margin: 0 0 24px;
	color: var(--ort-blue-dark);
	font-size: clamp(1.9rem, 2vw, 2.4rem);
	line-height: 1.15;
}

.operose-registration-template .ort-section--brand .ort-section__title {
	color: var(--ort-white);
}

.operose-registration-template .ort-section__title--center {
	text-align: center;
}

.operose-registration-template .ort-copy > :first-child {
	margin-top: 0;
}

.operose-registration-template .ort-copy > :last-child {
	margin-bottom: 0;
}

.operose-registration-template .ort-hero {
	position: relative;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.32));
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 720px;
	display: flex;
	align-items: flex-end;
}

.operose-registration-template .ort-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.24));
}

.operose-registration-template .ort-hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	padding-top: 72px;
	padding-bottom: 56px;
}

.operose-registration-template .ort-hero__copy {
	max-width: 620px;
	color: var(--ort-white);
}

.operose-registration-template .ort-hero__copy h1 {
	margin: 0 0 12px;
	color: inherit;
	font-size: clamp(2.4rem, 4vw, 3.6rem);
	line-height: 1.05;
}

.operose-registration-template .ort-hero__subtitle {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 600;
}

.operose-registration-template .ort-intro {
	border-top: 2px solid var(--ort-blue);
	border-bottom: 2px solid var(--ort-blue);
	background: var(--ort-muted);
}

.operose-registration-template .ort-intro__inner {
	padding-top: 32px;
	padding-bottom: 32px;
	display: grid;
	gap: 24px;
}

.operose-registration-template .ort-intro__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 20px;
	align-items: center;
}

.operose-registration-template .ort-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 26px;
	background: var(--ort-green);
	border: 2px solid var(--ort-green);
	color: var(--ort-white);
	font-weight: 700;
	text-decoration: none;
}

.operose-registration-template .ort-button:hover,
.operose-registration-template .ort-button:focus {
	background: #006e33;
	border-color: #006e33;
	color: var(--ort-white);
}

.operose-registration-template .ort-text-link,
.operose-registration-template .ort-map-card__link,
.operose-registration-template .ort-location__map-link a {
	color: var(--ort-blue);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.operose-registration-template .ort-highlights {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.operose-registration-template .ort-highlights__item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
}

.operose-registration-template .ort-highlights__icon {
	flex: 0 0 22px;
	width: 22px;
	height: 22px;
}

.operose-registration-template .ort-highlights__icon svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: none;
}

.operose-registration-template .ort-highlights__icon circle {
	fill: var(--ort-blue);
}

.operose-registration-template .ort-highlights__icon path {
	fill: var(--ort-white);
}

.operose-registration-template .ort-steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.operose-registration-template .ort-step-card {
	padding: 24px;
	background: var(--ort-white);
	border-top: 4px solid var(--ort-blue);
	box-shadow: 0 10px 24px rgba(33, 43, 50, 0.08);
}

.operose-registration-template .ort-step-card__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	margin-bottom: 16px;
	border-radius: 999px;
	background: var(--ort-blue);
	color: var(--ort-white);
	font-weight: 700;
}

.operose-registration-template .ort-step-card h3 {
	margin: 0 0 12px;
	color: var(--ort-blue-dark);
	font-size: 1.2rem;
}

.operose-registration-template .ort-requirements,
.operose-registration-template .ort-faq {
	border: 1px solid var(--ort-border);
	background: var(--ort-white);
}

.operose-registration-template .ort-requirements {
	margin-top: 24px;
}

.operose-registration-template .ort-requirements-cta {
	margin-top: 24px;
}

.operose-registration-template .ort-requirements summary,
.operose-registration-template .ort-faq__question {
	position: relative;
	cursor: pointer;
	list-style: none;
	padding: 18px 56px 18px 20px;
	font-weight: 700;
	color: var(--ort-blue);
}

.operose-registration-template .ort-requirements summary::-webkit-details-marker,
.operose-registration-template .ort-faq__question::-webkit-details-marker {
	display: none;
}

.operose-registration-template .ort-requirements summary::after,
.operose-registration-template .ort-faq__question::after {
	content: "+";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--ort-blue);
}

.operose-registration-template .ort-requirements[open] summary::after,
.operose-registration-template .ort-faq[open] .ort-faq__question::after {
	content: "-";
}

.operose-registration-template .ort-requirements__content,
.operose-registration-template .ort-faq__answer {
	padding: 0 20px 20px;
}

.operose-registration-template .ort-map-card {
	display: grid;
	gap: 18px;
}

.operose-registration-template .ort-map-card .ort-button {
	display: inline-flex;
	justify-self: start;
	width: auto;
	max-width: max-content;
}

.operose-registration-template .ort-map-card__label {
	margin: 0;
	font-weight: 700;
}

.operose-registration-template .ort-map-card__frame,
.operose-registration-template .ort-location__map iframe,
.operose-registration-template .ort-map-card__frame iframe {
	width: 100%;
	min-height: 420px;
	border: 0;
	background: #f8fbfd;
}

.operose-registration-template .ort-map-card__placeholder {
	min-height: 420px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	border: 2px dashed #9db8cf;
	background: rgba(255, 255, 255, 0.65);
	text-align: center;
}

.operose-registration-template .ort-location {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
	gap: 32px;
	align-items: start;
}

.operose-registration-template .ort-location__intro {
	margin-bottom: 36px;
}

.operose-registration-template .ort-location__map-link {
	margin: 12px 0 0;
	font-size: 0.95rem;
}

.operose-registration-template .ort-location__details {
	display: grid;
	gap: 18px;
}

.operose-registration-template .ort-detail h3 {
	margin: 0 0 8px;
	color: var(--ort-blue-dark);
	font-size: 1rem;
}

.operose-registration-template .ort-detail p {
	margin: 0;
}

.operose-registration-template .ort-support {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
	gap: 32px;
	align-items: start;
}

.operose-registration-template .ort-support__card {
	padding: 24px;
	background: var(--ort-white);
	color: var(--ort-text);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.operose-registration-template .ort-support__card h3 {
	margin-top: 0;
	color: var(--ort-blue-dark);
}

.operose-registration-template .ort-faqs {
	max-width: 940px;
}

.operose-registration-template .ort-faq-list {
	display: grid;
	gap: 12px;
}

.operose-registration-template .ort-final-cta {
	display: grid;
	justify-items: center;
	gap: 18px;
}

.operose-registration-template .ort-final-cta__intro {
	margin: 0;
	max-width: 720px;
}

.operose-registration-template .ort-thank-hero {
	background: linear-gradient(135deg, var(--ort-blue), var(--ort-blue-dark));
	color: var(--ort-white);
	border-bottom: 4px solid var(--ort-green);
}

.operose-registration-template .ort-thank-hero__inner {
	min-height: 420px;
	display: grid;
	grid-template-columns: auto minmax(0, 760px);
	gap: 28px;
	align-items: center;
	justify-content: center;
	padding-top: 72px;
	padding-bottom: 72px;
}

.operose-registration-template .ort-thank-hero__mark {
	width: 84px;
	height: 84px;
}

.operose-registration-template .ort-thank-hero__mark svg {
	display: block;
	width: 100%;
	height: 100%;
}

.operose-registration-template .ort-thank-hero__mark circle {
	fill: var(--ort-white);
}

.operose-registration-template .ort-thank-hero__mark path {
	fill: var(--ort-green);
}

.operose-registration-template .ort-thank-hero h1 {
	margin: 0 0 16px;
	color: inherit;
	font-size: clamp(3rem, 5vw, 5rem);
	line-height: 1;
}

.operose-registration-template .ort-thank-hero__intro {
	font-size: clamp(1.3rem, 2vw, 1.8rem);
	font-weight: 700;
	line-height: 1.35;
}

.operose-registration-template .ort-thank-hero__intro > :first-child {
	margin-top: 0;
}

.operose-registration-template .ort-thank-hero__intro > :last-child {
	margin-bottom: 0;
}

.operose-registration-template .ort-thank-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
	gap: 32px;
	align-items: start;
}

.operose-registration-template .ort-thank-card {
	padding: 32px;
	background: var(--ort-white);
	box-shadow: 0 14px 32px rgba(33, 43, 50, 0.1);
}

.operose-registration-template .ort-thank-card .ort-section__title {
	margin-bottom: 22px;
}

.operose-registration-template .ort-thank-steps {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 18px;
}

.operose-registration-template .ort-thank-steps li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 14px;
	align-items: start;
	font-size: 1.08rem;
	font-weight: 600;
}

.operose-registration-template .ort-thank-steps__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 999px;
	background: var(--ort-blue);
	color: var(--ort-white);
	font-size: 0.95rem;
	font-weight: 700;
}

.operose-registration-template .ort-thank-contact {
	display: grid;
	gap: 18px;
	margin-top: 24px;
}

.operose-registration-template .ort-copy a,
.operose-registration-template .ort-detail a {
	word-break: break-word;
}

.outer-container.internal-padding.crisis-warning,
.outer-container.crisis-warning,
.crisis-warning,
.outer-container.app-banner-container,
.app-banner-container {
	display: none !important;
}

@media (max-width: 920px) {
	.operose-registration-template .ort-highlights,
	.operose-registration-template .ort-steps,
	.operose-registration-template .ort-location,
	.operose-registration-template .ort-support,
	.operose-registration-template .ort-thank-grid {
		grid-template-columns: 1fr;
	}

	.operose-registration-template .ort-thank-hero__inner {
		justify-content: start;
	}
}

@media (max-width: 720px) {
	.operose-registration-template .ort-shell {
		padding: 0 18px;
	}

	.operose-registration-template .ort-section {
		padding: 48px 0;
	}

	.operose-registration-template .ort-intro__inner {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.operose-registration-template .ort-hero {
		min-height: 540px;
	}

	.operose-registration-template .ort-hero__inner {
		padding-bottom: 40px;
	}

	.operose-registration-template .ort-hero__copy h1 {
		font-size: 2rem;
	}

	.operose-registration-template .ort-thank-hero__inner {
		min-height: 360px;
		grid-template-columns: 1fr;
		gap: 18px;
		padding-top: 56px;
		padding-bottom: 56px;
	}

	.operose-registration-template .ort-thank-hero__mark {
		width: 64px;
		height: 64px;
	}

	.operose-registration-template .ort-thank-card {
		padding: 24px;
	}

	.operose-registration-template .ort-map-card__frame,
	.operose-registration-template .ort-location__map iframe,
	.operose-registration-template .ort-map-card__frame iframe,
	.operose-registration-template .ort-map-card__placeholder {
		min-height: 300px;
	}
}
