.sccc-mca-page {
	--sccc-mca-ink: #282d36;
	--sccc-mca-heading: #4c5159;
	--sccc-mca-body: #676d77;
	--sccc-mca-muted: #828994;
	--sccc-mca-gold: #fdc468;
	--sccc-mca-gold-hover: #dd9f45;
	--sccc-mca-cream: #fff9f2;
	--sccc-mca-sand: #f5ebe0;
	--sccc-mca-line: rgba(76, 81, 89, 0.18);
	box-sizing: border-box;
	width: 100%;
	margin: 0 auto;
	color: var(--sccc-mca-body);
	background: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.sccc-mca-page *,
.sccc-mca-page *::before,
.sccc-mca-page *::after {
	box-sizing: border-box;
}

.sccc-mca-page__inner {
	width: min(1180px, calc(100% - 48px));
	margin: 0 auto;
}

.sccc-mca-page h1,
.sccc-mca-page h2,
.sccc-mca-page h3,
.sccc-mca-page p,
.sccc-mca-page ul {
	margin-top: 0;
}

.sccc-mca-page h1,
.sccc-mca-page h2,
.sccc-mca-page h3 {
	color: var(--sccc-mca-heading);
}

.sccc-mca-page__eyebrow,
.sccc-mca-kicker,
.sccc-mca-section-kicker {
	margin-bottom: 12px;
	color: var(--sccc-mca-gold-hover);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	line-height: 1.3;
	text-transform: uppercase;
}

.sccc-mca-hero {
	position: relative;
	overflow: hidden;
	padding: 72px 0 44px;
	background:
		linear-gradient(90deg, rgba(255, 249, 242, 0.96) 0%, rgba(255, 249, 242, 0.96) 54%, rgba(245, 235, 224, 0.86) 54%, rgba(245, 235, 224, 0.86) 100%),
		var(--sccc-mca-cream);
}

.sccc-mca-hero::before {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 1px;
	background: var(--sccc-mca-line);
}

.sccc-mca-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.78fr) minmax(340px, 1fr);
	gap: 68px;
	align-items: end;
}

.sccc-mca-hero__copy {
	max-width: 590px;
	padding: 34px 0 46px;
}

.sccc-mca-hero h1 {
	max-width: 12ch;
	margin-bottom: 22px;
	font-size: clamp(46px, 6.4vw, 82px);
	line-height: 0.96;
	letter-spacing: 0;
}

.sccc-mca-hero__lead {
	max-width: 37em;
	margin-bottom: 28px;
	color: var(--sccc-mca-body);
	font-size: 19px;
	line-height: 1.55;
}

.sccc-mca-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 20px;
	align-items: center;
}

.sccc-mca-hero__payline {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	max-width: 560px;
	margin-top: 26px;
}

.sccc-mca-hero__payline span {
	display: inline-flex;
	min-height: 42px;
	align-items: center;
	gap: 8px;
	padding: 9px 12px;
	border: 1px solid rgba(76, 81, 89, 0.16);
	background: rgba(255, 255, 255, 0.74);
	color: var(--sccc-mca-heading);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.25;
}

.sccc-mca-hero__payline strong {
	color: var(--sccc-mca-ink);
	font-size: 17px;
	white-space: nowrap;
}

.sccc-mca-page__button,
.sccc-mca-page__button:visited {
	display: inline-flex;
	min-height: 46px;
	align-items: center;
	justify-content: center;
	padding: 12px 22px;
	border-radius: 4px;
	background: var(--sccc-mca-gold);
	color: var(--sccc-mca-ink) !important;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	text-indent: 0 !important;
	text-transform: none;
	white-space: nowrap;
	transition: background 0.18s ease, transform 0.18s ease;
}

.sccc-mca-page__button:hover,
.sccc-mca-page__button:focus {
	background: var(--sccc-mca-gold-hover);
	color: var(--sccc-mca-ink) !important;
	transform: translateY(-1px);
}

.sccc-mca-page__text-link,
.sccc-mca-page__text-link:visited {
	color: var(--sccc-mca-heading);
	font-weight: 700;
	text-decoration: underline;
	text-decoration-color: var(--sccc-mca-gold);
	text-decoration-thickness: 2px;
	text-underline-offset: 5px;
}

.sccc-mca-page__text-link:hover,
.sccc-mca-page__text-link:focus {
	color: var(--sccc-mca-ink);
}

.sccc-mca-hero__media {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 190px;
	align-items: end;
	min-height: 520px;
	padding: 0 0 34px;
}

.sccc-mca-hero__media::before {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: min(72%, 520px);
	height: 72%;
	border: 1px solid var(--sccc-mca-line);
	background: rgba(255, 255, 255, 0.66);
}

.sccc-mca-hero__figure {
	position: relative;
	grid-column: 1 / 2;
	grid-row: 1;
	align-self: end;
	margin: 0;
}

.sccc-mca-hero__figure img {
	display: block;
	width: min(100%, 448px);
	height: auto;
	margin: 0 auto;
	filter: drop-shadow(0 18px 34px rgba(40, 45, 54, 0.14));
}

.sccc-mca-hero__note {
	position: relative;
	grid-column: 2 / 3;
	grid-row: 1;
	align-self: center;
	margin-left: -44px;
	padding: 22px 0 22px 26px;
	border-left: 3px solid var(--sccc-mca-gold);
}

.sccc-mca-hero__note strong,
.sccc-mca-hero__note span {
	display: block;
}

.sccc-mca-hero__note strong {
	margin-bottom: 8px;
	color: var(--sccc-mca-heading);
	font-size: 22px;
	line-height: 1.2;
}

.sccc-mca-hero__note span {
	color: var(--sccc-mca-muted);
	font-size: 15px;
	line-height: 1.5;
}

.sccc-mca-partner-strip {
	display: flex;
	gap: 24px;
	align-items: center;
	justify-content: space-between;
	margin-top: 12px;
	padding: 22px 0 0;
	border-top: 1px solid var(--sccc-mca-line);
}

.sccc-mca-partner-strip p {
	max-width: 34em;
	margin: 0;
	color: var(--sccc-mca-muted);
	font-size: 14px;
	line-height: 1.5;
}

.sccc-mca-partner-strip__logos {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
	justify-content: flex-end;
}

.sccc-mca-logo {
	display: inline-flex;
	min-height: 56px;
	align-items: center;
	justify-content: center;
	padding: 11px 16px;
	border: 1px solid rgba(76, 81, 89, 0.16);
	background: rgba(255, 255, 255, 0.78);
}

.sccc-mca-logo--image {
	width: 176px;
}

.sccc-mca-logo--la-care-tile {
	width: 252px;
}

.sccc-mca-logo--wide {
	width: 220px;
}

.sccc-mca-logo--la-care,
.sccc-mca-logo--covered-california {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.sccc-mca-support,
.sccc-mca-compensation,
.sccc-mca-program,
.sccc-mca-application-section {
	padding: 72px 0;
}

.sccc-mca-compensation {
	background:
		linear-gradient(90deg, var(--sccc-mca-heading) 0%, var(--sccc-mca-heading) 50%, var(--sccc-mca-ink) 50%, var(--sccc-mca-ink) 100%);
	color: rgba(255, 255, 255, 0.78);
}

.sccc-mca-compensation__grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
	gap: 56px;
	align-items: center;
}

.sccc-mca-compensation .sccc-mca-page__eyebrow {
	color: var(--sccc-mca-gold);
}

.sccc-mca-compensation h2 {
	max-width: 12ch;
	margin-bottom: 16px;
	color: #fff;
	font-size: clamp(34px, 3.6vw, 54px);
	line-height: 1.04;
	letter-spacing: 0;
}

.sccc-mca-compensation p {
	max-width: 32em;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 17px;
	line-height: 1.6;
}

.sccc-mca-compensation__figures {
	display: grid;
	grid-template-columns: repeat(2, minmax(210px, 1fr));
	gap: 18px;
}

.sccc-mca-compensation__figures div {
	min-width: 0;
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.04);
}

.sccc-mca-compensation__figures div + div {
	border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.sccc-mca-compensation__figures strong,
.sccc-mca-compensation__figures span {
	display: block;
}

.sccc-mca-compensation__label {
	margin-bottom: 20px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.14em;
	line-height: 1.3;
	text-transform: uppercase;
}

.sccc-mca-compensation__figures strong {
	margin-bottom: 12px;
	color: var(--sccc-mca-gold);
	font-size: clamp(40px, 3.7vw, 56px);
	line-height: 0.98;
	letter-spacing: 0;
	overflow-wrap: normal;
	white-space: normal;
}

.sccc-mca-compensation__figures strong span {
	display: inline;
	color: inherit;
	font-size: 0.72em;
	font-weight: inherit;
	line-height: inherit;
}

.sccc-mca-compensation__figures span {
	max-width: 18em;
	color: rgba(255, 255, 255, 0.84);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.45;
}

.sccc-mca-support {
	background: #fff;
}

.sccc-mca-program {
	background: var(--sccc-mca-sand);
}

.sccc-mca-support__grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.16fr);
	gap: 56px;
	align-items: start;
}

.sccc-mca-support h2,
.sccc-mca-program h2,
.sccc-mca-application-section h2 {
	margin-bottom: 16px;
	font-size: clamp(32px, 3.2vw, 48px);
	line-height: 1.08;
	letter-spacing: 0;
}

.sccc-mca-support p,
.sccc-mca-program__intro p,
.sccc-mca-application-section__intro p {
	max-width: 56em;
	color: var(--sccc-mca-body);
	font-size: 17px;
	line-height: 1.6;
}

.sccc-mca-support-list {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid var(--sccc-mca-line);
}

.sccc-mca-page .sccc-mca-support-list li {
	position: relative;
	margin: 0;
	padding: 22px 0 22px 54px;
	border-bottom: 1px solid var(--sccc-mca-line);
	color: var(--sccc-mca-heading);
	font-size: 17px;
	line-height: 1.55;
	list-style: none;
}

.sccc-mca-page .sccc-mca-support-list li::before {
	content: "";
	position: absolute;
	top: 28px;
	left: 12px;
	width: 16px;
	height: 16px;
	border: 3px solid var(--sccc-mca-gold);
	border-radius: 50%;
	background: transparent;
	font-family: inherit;
	line-height: 1;
}

.sccc-mca-program__intro,
.sccc-mca-application-section__intro {
	max-width: 760px;
	margin-bottom: 34px;
}

.sccc-mca-detail-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.sccc-mca-detail-panel {
	padding: 28px;
	border: 1px solid var(--sccc-mca-line);
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.72);
}

.sccc-mca-detail-panel h3 {
	margin-bottom: 16px;
	font-size: 24px;
	line-height: 1.2;
}

.sccc-mca-detail-panel ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sccc-mca-page .sccc-mca-detail-panel li {
	position: relative;
	margin-bottom: 10px;
	padding-left: 20px;
	color: var(--sccc-mca-body);
	font-size: 15px;
	line-height: 1.55;
}

.sccc-mca-page .sccc-mca-detail-panel li::before {
	content: "";
	position: absolute;
	top: 0.68em;
	left: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--sccc-mca-gold-hover);
	font-family: inherit;
	line-height: 1;
}

.sccc-mca-application {
	margin: 0 0 52px;
	color: var(--sccc-mca-ink);
	container-type: inline-size;
}

.sccc-mca-shell {
	position: relative;
	padding: 0;
	border-top: 1px solid var(--sccc-mca-line);
}

.sccc-mca-banner {
	display: grid;
	grid-template-columns: minmax(0, 0.52fr) minmax(0, 1fr);
	gap: 38px;
	margin-bottom: 18px;
	padding: 28px 0;
	border-bottom: 1px solid var(--sccc-mca-line);
}

.sccc-mca-banner h2,
.sccc-mca-success h3 {
	margin: 0;
	color: var(--sccc-mca-ink);
}

.sccc-mca-banner h2 {
	max-width: 14ch;
	font-size: clamp(30px, 3.1vw, 44px);
	line-height: 1.06;
	letter-spacing: 0;
}

.sccc-mca-banner p {
	max-width: 70ch;
	margin: 0;
	color: var(--sccc-mca-body);
	font-size: 16px;
	line-height: 1.6;
}

.sccc-mca-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 14px;
	margin-top: 16px;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--sccc-mca-muted);
}

.sccc-mca-form-section {
	margin-top: 0;
	padding: 28px 0;
	border-top: 1px solid var(--sccc-mca-line);
}

.sccc-mca-banner + .sccc-mca-status + .sccc-mca-form .sccc-mca-form-section:first-of-type,
.sccc-mca-form .sccc-mca-form-section:first-of-type {
	border-top: 0;
}

.sccc-mca-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.sccc-mca-field--full {
	grid-column: 1 / -1;
}

.sccc-mca-field label,
.sccc-mca-checkbox {
	display: block;
	color: var(--sccc-mca-ink);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
}

.sccc-mca-field input,
.sccc-mca-field select,
.sccc-mca-field textarea {
	display: block;
	width: 100%;
	min-height: 52px;
	margin-top: 9px;
	padding: 12px 14px;
	border: 1px solid rgba(76, 81, 89, 0.22);
	border-radius: 4px;
	background: #fff;
	color: var(--sccc-mca-ink);
	font-size: 16px;
	line-height: 1.45;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.sccc-mca-field textarea {
	min-height: 132px;
	resize: vertical;
}

.sccc-mca-field input[type="file"] {
	padding: 13px 14px;
	background: #fff;
	font-size: 14px;
}

.sccc-mca-field .sccc-mca-help {
	margin-top: 8px;
}

.sccc-mca-language-autocomplete {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px;
	margin-top: 16px;
}

.sccc-mca-language-add {
	min-height: 52px;
	padding: 0 24px;
	border: 0;
	border-radius: 4px;
	background: var(--sccc-mca-gold);
	color: var(--sccc-mca-ink);
	font-size: 15px;
	font-weight: 800;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.sccc-mca-language-add:hover,
.sccc-mca-language-add:focus {
	background: var(--sccc-mca-gold-hover);
	outline: none;
}

.sccc-mca-language-add:active {
	transform: translateY(1px);
}

.sccc-mca-language-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 14px;
}

.sccc-mca-language-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 36px;
	padding: 7px 10px 7px 13px;
	border: 1px solid rgba(76, 81, 89, 0.18);
	border-radius: 999px;
	background: rgba(253, 196, 104, 0.18);
	color: var(--sccc-mca-ink);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
}

.sccc-mca-language-chip button {
	display: inline-flex;
	width: 20px;
	height: 20px;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(76, 81, 89, 0.14);
	color: var(--sccc-mca-ink);
	font-size: 16px;
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
}

.sccc-mca-language-values {
	display: none;
}

.sccc-mca-field input:focus,
.sccc-mca-field select:focus,
.sccc-mca-field textarea:focus {
	border-color: var(--sccc-mca-gold-hover);
	background: #fff;
	box-shadow: 0 0 0 3px rgba(253, 196, 104, 0.22);
	outline: none;
}

.sccc-mca-field.has-error input,
.sccc-mca-field.has-error select,
.sccc-mca-field.has-error textarea,
.sccc-mca-checkbox.has-error {
	border-color: #b33333;
}

.sccc-mca-field-error {
	min-height: 18px;
	margin: 7px 0 0;
	color: #b33333;
	font-size: 13px;
	line-height: 1.35;
}

.sccc-mca-help {
	margin: 14px 0 0;
	color: var(--sccc-mca-muted);
	font-size: 14px;
	line-height: 1.45;
}

.sccc-mca-acknowledgements {
	display: grid;
	gap: 12px;
}

.sccc-mca-checkbox {
	padding: 0;
	border: 0;
	border-radius: 4px;
	background: transparent;
}

.sccc-mca-checkbox input {
	margin-right: 10px;
	transform: translateY(1px);
}

.sccc-mca-actions {
	display: flex;
	justify-content: flex-end;
	margin-top: 30px;
	padding-top: 24px;
	border-top: 1px solid var(--sccc-mca-line);
}

.sccc-mca-button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	border: 0;
	border-radius: 4px;
	background: var(--sccc-mca-gold);
	color: var(--sccc-mca-ink);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
	transition: background 0.18s ease, transform 0.18s ease;
}

.sccc-mca-button:hover,
.sccc-mca-button:focus {
	background: var(--sccc-mca-gold-hover);
	transform: translateY(-1px);
}

.sccc-mca-button:disabled {
	cursor: progress;
	opacity: 0.72;
	transform: none;
}

.sccc-mca-status,
.sccc-mca-noscript {
	margin-bottom: 20px;
	padding: 14px 16px;
	border-radius: 4px;
	background: rgba(179, 51, 51, 0.08);
	color: #b33333;
	font-weight: 700;
}

.sccc-mca-success {
	padding: 28px;
	border-radius: 4px;
	background: var(--sccc-mca-cream);
}

.sccc-mca-success p {
	margin-bottom: 0;
	color: var(--sccc-mca-body);
	font-size: 16px;
	line-height: 1.6;
}

.sccc-mca-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

@media (max-width: 1100px) {
	.sccc-mca-hero__grid,
	.sccc-mca-support__grid,
	.sccc-mca-compensation__grid {
		grid-template-columns: 1fr;
	}

	.sccc-mca-hero__copy {
		max-width: 720px;
		padding-bottom: 16px;
	}

	.sccc-mca-hero h1 {
		max-width: 12ch;
	}

	.sccc-mca-hero__media {
		min-height: 420px;
	}

	.sccc-mca-hero__media::before {
		width: 76%;
	}

	.sccc-mca-hero__figure img {
		width: min(100%, 390px);
	}
}

@media (max-width: 900px) {
	.sccc-mca-page__inner {
		width: min(100% - 36px, 1180px);
	}

	.sccc-mca-hero,
	.sccc-mca-support,
	.sccc-mca-compensation,
	.sccc-mca-program,
	.sccc-mca-application-section {
		padding-top: 54px;
	}

	.sccc-mca-support,
	.sccc-mca-compensation,
	.sccc-mca-program,
	.sccc-mca-application-section {
		padding-bottom: 58px;
	}

	.sccc-mca-detail-grid,
	.sccc-mca-compensation__figures,
	.sccc-mca-banner,
	.sccc-mca-grid {
		grid-template-columns: 1fr;
	}

	.sccc-mca-compensation {
		background: var(--sccc-mca-heading);
	}

	.sccc-mca-compensation h2 {
		max-width: 16ch;
	}

	.sccc-mca-compensation__figures div + div {
		border-left: 1px solid rgba(255, 255, 255, 0.22);
	}

	.sccc-mca-language-autocomplete {
		grid-template-columns: 1fr;
	}

	.sccc-mca-partner-strip {
		align-items: flex-start;
		flex-direction: column;
	}

	.sccc-mca-partner-strip__logos {
		justify-content: flex-start;
	}

	.sccc-mca-banner h2 {
		max-width: 18ch;
	}
}

@media (max-width: 640px) {
	.sccc-mca-page__inner {
		width: min(100% - 28px, 1180px);
	}

	.sccc-mca-hero h1 {
		font-size: clamp(38px, 12vw, 52px);
	}

	.sccc-mca-hero__grid {
		gap: 28px;
	}

	.sccc-mca-hero__media {
		display: block;
		margin-top: -54px;
		min-height: 0;
		padding-bottom: 0;
	}

	.sccc-mca-hero__media::before {
		right: -18px;
		width: 78%;
		height: 68%;
	}

	.sccc-mca-hero__figure img {
		width: min(100%, 320px);
		margin-left: 0;
	}

	.sccc-mca-hero__note {
		margin: -8px 0 0;
		padding: 18px 0 0;
		border-top: 3px solid var(--sccc-mca-gold);
		border-left: 0;
	}

	.sccc-mca-partner-strip__logos {
		width: 100%;
	}

	.sccc-mca-logo {
		width: 100%;
	}

	.sccc-mca-logo--image {
		width: 100%;
		max-width: 260px;
	}

	.sccc-mca-hero__actions {
		align-items: flex-start;
		flex-direction: column;
	}

	.sccc-mca-hero__payline {
		display: grid;
		grid-template-columns: 1fr;
	}

	.sccc-mca-hero__payline span {
		align-items: flex-start;
		flex-direction: column;
		gap: 3px;
	}

	.sccc-mca-page__button {
		width: min(100%, 220px);
	}

	.sccc-mca-support h2,
	.sccc-mca-program h2,
	.sccc-mca-application-section h2 {
		font-size: clamp(30px, 9vw, 38px);
	}

	.sccc-mca-page .sccc-mca-support-list li {
		padding-left: 46px;
		font-size: 16px;
	}

	.sccc-mca-page .sccc-mca-support-list li::before {
		left: 8px;
	}

	.sccc-mca-banner h2 {
		font-size: 30px;
	}

	.sccc-mca-actions {
		justify-content: stretch;
	}

	.sccc-mca-button {
		width: 100%;
	}
}
