.jhc-crg-directory,
.jhc-crg-single {
	--jhc-crg-ink: #17202a;
	--jhc-crg-muted: #5d6975;
	--jhc-crg-line: #d9e1e8;
	--jhc-crg-surface: #ffffff;
	--jhc-crg-soft: #f4f8fa;
	--jhc-crg-primary: #086b73;
	--jhc-crg-primary-dark: #054b51;
	--jhc-crg-accent: #c2412d;
	--jhc-crg-focus: #f7c948;
	--jhc-crg-navy: #071b68;
	--jhc-crg-blue: #0998e6;
	--jhc-crg-purple: #5141b9;
	--jhc-crg-pale-blue: #eef8ff;
	--jhc-crg-soft-shadow: 0 10px 28px rgba(7, 27, 104, 0.08);
	--jhc-crg-card-shadow: 0 5px 16px rgba(7, 27, 104, 0.07);
	--jhc-provider-brand: var(--jhc-crg-navy);
	--jhc-provider-accent: var(--jhc-crg-blue);
	color: var(--jhc-crg-ink);
	font-family: inherit;
}

.jhc-crg-directory *,
.jhc-crg-single * {
	box-sizing: border-box;
}

.jhc-crg-directory {
	width: min(1120px, calc(100% - 28px));
	margin: 0 auto;
	padding: 22px 0 42px;
}

.jhc-crg-directory-header {
	padding: 12px 0 18px;
}

.jhc-crg-kicker {
	margin: 0 0 8px;
	color: var(--jhc-crg-primary);
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
}

.jhc-crg-directory h1,
.jhc-crg-single h1 {
	margin: 0 0 16px;
	color: var(--jhc-crg-ink);
	font-size: clamp(2rem, 7vw, 3.4rem);
	line-height: 1.02;
	letter-spacing: 0;
}

.jhc-crg-search input {
	width: 100%;
	min-height: 54px;
	border: 2px solid var(--jhc-crg-line);
	border-radius: 8px;
	padding: 0 16px;
	font-size: 1.05rem;
	background: #fff;
	color: var(--jhc-crg-ink);
}

.jhc-crg-search input:focus,
.jhc-crg-action:focus,
.jhc-crg-primary-button:focus,
.jhc-crg-secondary-button:focus,
.jhc-crg-category-button:focus {
	outline: 3px solid var(--jhc-crg-focus);
	outline-offset: 2px;
}

.jhc-crg-category-buttons {
	display: flex;
	gap: 8px;
	margin-top: 14px;
	overflow-x: auto;
	padding-bottom: 6px;
}

.jhc-crg-category-button {
	flex: 0 0 auto;
	border: 1px solid var(--jhc-crg-line);
	border-radius: 8px;
	padding: 10px 12px;
	color: var(--jhc-crg-primary-dark);
	background: var(--jhc-crg-soft);
	font-weight: 700;
	text-decoration: none;
}

.jhc-crg-filters {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
	margin: 12px 0 24px;
	padding: 12px;
	border: 1px solid var(--jhc-crg-line);
	border-radius: 8px;
	background: var(--jhc-crg-soft);
}

.jhc-crg-filters label {
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 34px;
	font-weight: 650;
}

.jhc-crg-category-section {
	margin: 26px 0;
}

.jhc-crg-category-section h2,
.jhc-crg-offline-panel h2,
.jhc-crg-detail-section h2 {
	margin: 0 0 12px;
	font-size: 1.35rem;
	line-height: 1.2;
	letter-spacing: 0;
}

.jhc-crg-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(260px, 1fr));
	gap: 20px;
}

.jhc-crg-provider-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 300px;
	--jhc-provider-brand: var(--jhc-crg-navy);
	--jhc-provider-accent: var(--jhc-crg-blue);
	border: 1px solid #d7e3f0;
	border-radius: 18px;
	background: var(--jhc-crg-surface);
	overflow: hidden;
	box-shadow: 0 12px 28px rgba(10, 33, 84, 0.075);
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.jhc-crg-provider-card::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--jhc-provider-accent), var(--jhc-provider-brand));
	content: "";
	opacity: 0.8;
}

.jhc-crg-provider-card:hover {
	border-color: color-mix(in srgb, var(--jhc-provider-accent) 38%, #b9d6ef);
	box-shadow: 0 16px 34px rgba(10, 33, 84, 0.11);
	transform: translateY(-2px);
}

.jhc-crg-provider-card[hidden],
.jhc-crg-category-section[hidden] {
	display: none;
}

.jhc-crg-card-main {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 12px;
	padding: 24px 20px 18px;
	color: inherit;
	text-decoration: none;
}

.jhc-crg-card-header {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
}

.jhc-crg-card-content {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-width: 0;
}

.jhc-crg-provider-logo,
.jhc-crg-single-logo {
	width: 72px;
	height: 58px;
	border-radius: 14px;
	object-fit: contain;
	background: #fff;
	border: 1px solid color-mix(in srgb, var(--jhc-provider-accent) 30%, #b8dff6);
	box-shadow: 0 8px 16px rgba(10, 33, 84, 0.06);
}

.jhc-crg-provider-logo-fallback {
	display: grid;
	place-items: center;
	width: 72px;
	height: 58px;
	border-radius: 14px;
	color: var(--jhc-provider-brand);
	background: #eaf7ff;
	border: 1px solid color-mix(in srgb, var(--jhc-provider-accent) 30%, #b8dff6);
	font-size: 15px;
	font-weight: 900;
}

.jhc-crg-card-title-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 8px;
	min-width: 0;
}

.jhc-crg-provider-card h3 {
	margin: 0 0 8px;
	color: var(--jhc-provider-brand);
	font-size: 21px;
	font-weight: 900;
	line-height: 1.15;
	letter-spacing: 0;
	overflow-wrap: anywhere;
}

.jhc-crg-provider-card p {
	margin: 0 0 8px;
	color: var(--jhc-crg-muted);
	font-size: 14px;
	line-height: 1.45;
}

.jhc-crg-card-description {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.jhc-crg-services-summary {
	display: -webkit-box;
	overflow: hidden;
	color: var(--jhc-crg-ink) !important;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.jhc-crg-card-muted,
.jhc-crg-card-note,
.jhc-crg-card-hours {
	display: -webkit-box;
	overflow: hidden;
	font-size: 13px !important;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.jhc-crg-card-hours {
	color: var(--jhc-crg-primary-dark) !important;
	font-weight: 700;
}

.jhc-crg-card-meta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: auto;
	padding-top: 8px;
}

.jhc-crg-card-chip {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	border-radius: 999px;
	padding: 5px 9px;
	color: var(--jhc-crg-navy);
	background: #eef8ff;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.15;
}

.jhc-crg-card-chip-strong {
	background: #dff6fb;
}

.jhc-crg-badge {
	display: inline-flex;
	align-items: center;
	border-radius: 999px;
	padding: 4px 8px;
	color: #fff;
	background: var(--jhc-crg-accent);
	font-size: 0.75rem;
	font-weight: 800;
	white-space: nowrap;
}

.jhc-crg-card-actions,
.jhc-crg-single-actions {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(78px, 1fr));
	gap: 8px;
	padding: 14px 16px;
	border-top: 1px solid #d7e3f0;
	background: linear-gradient(180deg, #fbfdff 0%, #f6faff 100%);
}

.jhc-crg-action,
.jhc-crg-primary-button,
.jhc-crg-secondary-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 38px;
	border: 1px solid #dbe3f0;
	border-radius: 9px;
	padding: 8px 10px;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	white-space: nowrap;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.jhc-crg-action,
.jhc-crg-secondary-button {
	color: var(--jhc-crg-navy) !important;
	background: #fff;
}

.jhc-crg-action-primary {
	border-color: var(--jhc-provider-accent);
	color: #fff !important;
	background: var(--jhc-provider-accent);
}

.jhc-crg-action:hover,
.jhc-crg-action:focus {
	border-color: var(--jhc-provider-accent);
	color: #fff !important;
	background: var(--jhc-provider-accent);
}

.jhc-crg-action-icon {
	width: 14px;
	height: 14px;
	color: currentColor;
}

.jhc-crg-icon-phone::before {
	top: 1px;
	left: 4px;
	width: 7px;
	height: 11px;
	border: 2px solid currentColor;
	border-width: 0 0 2px 2px;
	border-radius: 0 0 0 7px;
	transform: rotate(-35deg);
}

.jhc-crg-icon-globe::before {
	inset: 1px;
	border: 2px solid currentColor;
	border-radius: 50%;
}

.jhc-crg-icon-globe::after {
	top: 6px;
	left: 2px;
	right: 2px;
	height: 2px;
	background: currentColor;
}

.jhc-crg-icon-map::before {
	inset: 1px 4px 4px;
	border: 2px solid currentColor;
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
}

.jhc-crg-icon-details::before {
	inset: 2px;
	border: 2px solid currentColor;
	border-radius: 3px;
}

.jhc-crg-icon-details::after {
	top: 5px;
	left: 5px;
	right: 5px;
	height: 2px;
	background: currentColor;
	box-shadow: 0 4px 0 currentColor;
}

.jhc-crg-icon-email::before {
	inset: 2px;
	border: 2px solid currentColor;
	border-radius: 3px;
}

.jhc-crg-icon-email::after {
	left: 3px;
	right: 3px;
	top: 5px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
}

.jhc-crg-icon-heart::before {
	top: 3px;
	left: 3px;
	width: 9px;
	height: 9px;
	border-radius: 2px 2px 0 0;
	background: currentColor;
	transform: rotate(45deg);
}

.jhc-crg-icon-share::before {
	left: 2px;
	top: 6px;
	width: 11px;
	height: 7px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: skewY(-25deg);
}

.jhc-crg-icon-share::after {
	right: 1px;
	top: 3px;
	width: 7px;
	height: 7px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(45deg);
}

.jhc-crg-icon-download::before {
	left: 7px;
	top: 1px;
	width: 3px;
	height: 10px;
	background: currentColor;
}

.jhc-crg-icon-download::after {
	left: 4px;
	top: 8px;
	width: 9px;
	height: 9px;
	border: 3px solid currentColor;
	border-top: 0;
	border-left: 0;
	transform: rotate(45deg);
}

.jhc-crg-primary-button {
	color: #fff;
	background: var(--jhc-crg-primary);
}

.jhc-crg-primary-button:hover,
.jhc-crg-primary-button:active {
	background: var(--jhc-crg-primary-dark);
	color: #fff;
}

.jhc-crg-offline-panel {
	margin-top: 34px;
	padding: 18px;
	border: 2px solid var(--jhc-crg-primary);
	border-radius: 8px;
	background: #eef7f6;
}

.jhc-crg-offline-panel p {
	margin: 0 0 14px;
	color: var(--jhc-crg-muted);
}

.jhc-crg-single {
	width: min(1180px, calc(100% - 28px));
	margin: 0 auto;
	padding: 30px 0 64px;
}

.jhc-crg-single-provider {
	color: var(--jhc-crg-ink);
}

.jhc-crg-back-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 16px;
	color: var(--jhc-crg-blue);
	font-size: 15px;
	font-weight: 800;
	text-decoration: none;
}

.jhc-crg-back-link::before {
	content: "<";
	font-size: 18px;
	line-height: 1;
}

.jhc-crg-back-link:hover,
.jhc-crg-back-link:focus {
	color: var(--jhc-crg-navy);
	text-decoration: underline;
}

.jhc-crg-single-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 20px;
	margin-bottom: 28px;
	padding: 34px;
	border: 1px solid color-mix(in srgb, var(--jhc-provider-accent) 28%, #d7e3f0);
	border-radius: 24px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(238, 248, 255, 0.98) 100%),
		radial-gradient(circle at 92% 8%, color-mix(in srgb, var(--jhc-provider-accent) 18%, transparent), transparent 28%);
	box-shadow: 0 24px 56px rgba(10, 33, 84, 0.1);
}

.jhc-crg-single-header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
	gap: 32px;
	align-items: stretch;
}

.jhc-crg-single-logo {
	display: block;
	width: min(100%, 270px);
	height: auto;
	max-height: 145px;
	margin: 0 auto;
	object-fit: contain;
	background: #fff;
}

.jhc-crg-single-logo-fallback {
	display: grid;
	place-items: center;
	width: 116px;
	height: 116px;
	margin: 0 auto;
	color: var(--jhc-crg-navy);
	background: #eaf7ff;
	border: 1px solid #b8dff6;
	border-radius: 50%;
	font-size: 34px;
	font-weight: 900;
}

.jhc-crg-single-media-card {
	position: relative;
	display: grid;
	min-height: 310px;
	overflow: hidden;
	border: 1px solid color-mix(in srgb, var(--jhc-provider-accent) 25%, #d3e5f4);
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 18px 42px rgba(10, 33, 84, 0.1);
}

.jhc-crg-single-hero-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.jhc-crg-single-media-card::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(7, 27, 104, 0.03) 0%, rgba(7, 27, 104, 0.48) 100%);
	content: "";
	pointer-events: none;
}

.jhc-crg-single-brand-card {
	position: relative;
	z-index: 1;
	display: grid;
	align-content: center;
	gap: 18px;
	min-width: 0;
	align-self: end;
	margin: 18px;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 16px 34px rgba(10, 33, 84, 0.14);
	backdrop-filter: blur(10px);
}

.jhc-crg-single-logo-frame {
	display: grid;
	place-items: center;
	min-height: 128px;
	padding: 16px;
	border-radius: 14px;
	background: #fff;
	border: 1px solid color-mix(in srgb, var(--jhc-provider-accent) 20%, #e1ebf5);
}

.jhc-crg-brand-card-copy {
	display: grid;
	gap: 8px;
	min-width: 0;
	text-align: center;
}

.jhc-crg-brand-card-copy strong {
	color: var(--jhc-provider-brand);
	font-size: 18px;
	font-weight: 900;
	line-height: 1.2;
}

.jhc-crg-brand-card-copy a {
	color: var(--jhc-provider-accent);
	font-size: 15px;
	font-weight: 800;
	text-decoration: none;
	overflow-wrap: anywhere;
}

.jhc-crg-brand-card-copy a:hover,
.jhc-crg-brand-card-copy a:focus {
	color: var(--jhc-crg-navy);
	text-decoration: underline;
}

.jhc-crg-single-heading {
	min-width: 0;
}

.jhc-crg-single-heading h1 {
	max-width: 920px;
	margin-bottom: 14px;
	color: var(--jhc-provider-brand);
	font-size: clamp(42px, 5vw, 68px);
	font-weight: 900;
	line-height: 1.03;
	letter-spacing: 0;
}

.jhc-crg-single-summary {
	margin: 0 0 12px;
	max-width: 760px;
	color: #2c3a66;
	font-size: clamp(18px, 2vw, 22px);
	line-height: 1.5;
}

.jhc-crg-single-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}

.jhc-crg-quick-facts {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	gap: 10px;
}

.jhc-crg-quick-fact {
	min-width: 0;
	padding: 13px 14px;
	border: 1px solid #cfe1f3;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 6px 14px rgba(10, 33, 84, 0.04);
}

.jhc-crg-quick-fact span {
	display: block;
	margin-bottom: 5px;
	color: #5f6f8a;
	font-size: 11px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.jhc-crg-quick-fact strong {
	display: -webkit-box;
	color: var(--jhc-crg-navy);
	font-size: 15px;
	font-weight: 900;
	line-height: 1.3;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.jhc-crg-single-hero-actions .jhc-crg-single-actions {
	margin: 0;
}

.jhc-crg-single-actions {
	grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
	padding: 0;
	border-top: 0;
	margin: 18px 0 22px;
	background: transparent;
}

.jhc-crg-single-hero .jhc-crg-primary-button,
.jhc-crg-single-hero .jhc-crg-secondary-button,
.jhc-crg-single-sidebar .jhc-crg-primary-button,
.jhc-crg-single-sidebar .jhc-crg-secondary-button {
	gap: 7px;
	min-height: 46px;
	border-radius: 10px;
	font-size: 14px;
	white-space: nowrap;
}

.jhc-crg-single-hero .jhc-crg-primary-button,
.jhc-crg-single-sidebar .jhc-crg-primary-button {
	border-color: var(--jhc-provider-accent);
	background: var(--jhc-provider-accent);
	box-shadow: 0 10px 22px color-mix(in srgb, var(--jhc-provider-accent) 26%, transparent);
}

.jhc-crg-single-hero .jhc-crg-secondary-button:hover,
.jhc-crg-single-sidebar .jhc-crg-secondary-button:hover {
	border-color: var(--jhc-provider-accent);
	color: #fff;
	background: var(--jhc-provider-accent);
}

.jhc-crg-help-overview {
	display: grid;
	grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
	gap: 16px;
	padding: 18px;
	border: 1px solid color-mix(in srgb, var(--jhc-provider-accent) 18%, #d7e3f0);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.74);
}

.jhc-crg-help-overview-heading h2 {
	margin: 0 0 7px;
	color: var(--jhc-provider-brand);
	font-size: 24px;
	font-weight: 900;
	line-height: 1.12;
}

.jhc-crg-help-overview-heading p {
	margin: 0;
	color: #53617d;
	font-size: 15px;
	line-height: 1.45;
}

.jhc-crg-help-overview-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.jhc-crg-help-overview-card {
	min-width: 0;
	padding: 14px;
	border: 1px solid #d8e6f4;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 8px 18px rgba(10, 33, 84, 0.045);
}

.jhc-crg-help-overview-card span {
	display: block;
	margin-bottom: 7px;
	color: var(--jhc-provider-brand);
	font-size: 11px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.jhc-crg-help-overview-card p {
	margin: 0;
	color: #2c3a66;
	font-size: 15px;
	line-height: 1.45;
}

.jhc-crg-before-you-go {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 14px 16px;
	border: 1px solid color-mix(in srgb, var(--jhc-provider-accent) 25%, #cfe1f3);
	border-radius: 14px;
	background: #fff;
}

.jhc-crg-before-you-go strong {
	color: var(--jhc-provider-brand);
	font-size: 15px;
	font-weight: 900;
	white-space: nowrap;
}

.jhc-crg-before-you-go div {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px;
}

.jhc-crg-before-you-go span {
	display: inline-flex;
	align-items: center;
	border-radius: 999px;
	padding: 6px 10px;
	color: var(--jhc-crg-navy);
	background: #eef8ff;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
}

.jhc-crg-public-verify-notice {
	display: grid;
	gap: 4px;
	margin-top: 14px;
	padding: 14px 16px;
	border: 1px solid rgba(244, 181, 42, 0.48);
	border-left: 5px solid var(--jhc-provider-accent, #f4b52a);
	border-radius: 10px;
	background: #fff9e8;
	color: #172653;
}

.jhc-crg-public-verify-notice strong {
	color: var(--jhc-provider-brand, var(--jhc-crg-navy));
	font-size: 15px;
	font-weight: 900;
}

.jhc-crg-public-verify-notice span {
	color: #33415f;
	font-size: 14px;
	line-height: 1.45;
}

.jhc-crg-single-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(315px, 370px);
	gap: 28px;
	align-items: start;
}

.jhc-crg-single-main,
.jhc-crg-single-sidebar {
	min-width: 0;
}

.jhc-crg-single-sidebar {
	position: sticky;
	top: 24px;
}

.jhc-crg-gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin: 0 0 22px;
}

.jhc-crg-featured-image {
	width: 100%;
	max-height: 520px;
	object-fit: cover;
	border: 1px solid #d7e3f0;
	border-radius: 20px;
	margin: 0 0 22px;
	box-shadow: 0 18px 40px rgba(10, 33, 84, 0.09);
}

.jhc-crg-gallery img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	border-radius: 14px;
	border: 1px solid #d7e3f0;
	box-shadow: 0 10px 22px rgba(10, 33, 84, 0.065);
}

.jhc-crg-info-strip {
	margin: 0 0 18px;
	padding: 22px;
	border: 1px solid color-mix(in srgb, var(--jhc-provider-accent) 24%, #d7e3f0);
	border-radius: 18px;
	background:
		linear-gradient(135deg, color-mix(in srgb, var(--jhc-provider-accent) 8%, #ffffff) 0%, #ffffff 65%),
		#fff;
	box-shadow: 0 14px 30px rgba(10, 33, 84, 0.06);
}

.jhc-crg-info-strip h2 {
	margin: 0 0 14px;
	color: var(--jhc-provider-brand);
	font-size: 22px;
	font-weight: 900;
	line-height: 1.15;
}

.jhc-crg-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 10px;
}

.jhc-crg-info-card {
	min-width: 0;
	padding: 14px;
	border: 1px solid #d8e6f4;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 8px 18px rgba(10, 33, 84, 0.045);
}

.jhc-crg-info-card span {
	display: block;
	margin-bottom: 7px;
	color: #5d6b83;
	font-size: 11px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.jhc-crg-info-card strong {
	display: block;
	color: var(--jhc-crg-navy);
	font-size: 15px;
	font-weight: 900;
	line-height: 1.3;
	overflow-wrap: anywhere;
}

.jhc-crg-detail-group {
	margin: 0 0 26px;
}

.jhc-crg-detail-group-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin: 0 0 12px;
	padding-bottom: 10px;
	border-bottom: 1px solid #dbe7f3;
}

.jhc-crg-detail-group-heading h2 {
	margin: 0;
	color: var(--jhc-provider-brand);
	font-size: 25px;
	font-weight: 900;
	line-height: 1.15;
}

.jhc-crg-detail-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.jhc-crg-detail-section {
	position: relative;
	margin: 0 0 16px;
	padding: 24px;
	border: 1px solid #d7e3f0;
	border-radius: 18px;
	background: var(--jhc-crg-surface);
	box-shadow: 0 12px 26px rgba(10, 33, 84, 0.055);
}

.jhc-crg-detail-section-featured {
	overflow: hidden;
	border-color: #b9d6ef;
	background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.jhc-crg-detail-section-featured::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, var(--jhc-provider-accent), var(--jhc-provider-brand));
	content: "";
}

.jhc-crg-detail-section h2 {
	margin-bottom: 12px;
	color: var(--jhc-crg-navy);
	font-size: 24px;
	font-weight: 900;
	line-height: 1.15;
}

.jhc-crg-detail-section h3 {
	margin: 0 0 10px;
	color: var(--jhc-crg-navy);
	font-size: 18px;
	font-weight: 900;
	line-height: 1.2;
}

.jhc-crg-detail-section p {
	margin: 0;
	color: #2c3a66;
	font-size: 16px;
	line-height: 1.65;
}

.jhc-crg-detail-section-featured p {
	font-size: 18px;
	line-height: 1.72;
}

.jhc-crg-contact-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	margin: 0;
}

.jhc-crg-contact-list dt {
	margin-top: 3px;
	color: var(--jhc-crg-navy);
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
}

.jhc-crg-contact-list dd {
	margin: -4px 0 8px;
	padding: 0 0 10px;
	border-bottom: 1px solid #e4edf6;
	min-width: 0;
	color: #2c3a66;
	font-weight: 700;
	overflow-wrap: anywhere;
}

.jhc-crg-contact-list dd:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0;
}

.jhc-crg-contact-card .jhc-crg-single-actions {
	grid-template-columns: 1fr;
	margin: 0;
}

.jhc-crg-single-sidebar .jhc-crg-detail-section {
	border-color: color-mix(in srgb, var(--jhc-provider-accent) 18%, #d7e3f0);
}

.jhc-crg-single-sidebar .jhc-crg-detail-section:first-child {
	overflow: hidden;
}

.jhc-crg-single-sidebar .jhc-crg-detail-section:first-child::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, var(--jhc-provider-accent), var(--jhc-provider-brand));
	content: "";
}

.jhc-crg-last-updated,
.jhc-crg-empty {
	color: var(--jhc-crg-muted);
	font-weight: 700;
}

@media (min-width: 640px) {
	.jhc-crg-filters {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.jhc-crg-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.jhc-crg-detail-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 900px) {
	.jhc-crg-filters {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.jhc-crg-card-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.jhc-crg-branded-directory {
	--jhc-crg-navy: #071b68;
	--jhc-crg-blue: #0998e6;
	--jhc-crg-purple: #5141b9;
	--jhc-crg-pale-blue: #eef8ff;
	--jhc-crg-card-line: #dbe3f0;
	--jhc-crg-soft-shadow: 0 18px 42px rgba(7, 27, 104, 0.1);
	--jhc-crg-card-shadow: 0 10px 24px rgba(7, 27, 104, 0.08);
	width: min(1240px, calc(100% - 28px));
	color: var(--jhc-crg-navy);
}

.jhc-crg-branded-directory a {
	color: inherit;
}

.jhc-crg-hero-section {
	padding: 12px 0 18px;
	background: transparent;
}

.jhc-crg-hero-row {
	--jhc-crg-hero-image: linear-gradient(135deg, #0a1e70 0%, #0b7896 100%);
	position: relative;
	display: block;
	min-height: 430px;
	overflow: hidden;
	padding: 56px 54px;
	border: 1px solid #dbe9f7;
	border-radius: 24px;
	background:
		linear-gradient(90deg, rgba(7, 27, 104, 0.92) 0%, rgba(7, 27, 104, 0.78) 42%, rgba(7, 27, 104, 0.28) 72%, rgba(7, 27, 104, 0.12) 100%),
		linear-gradient(180deg, rgba(7, 27, 104, 0.1), rgba(7, 27, 104, 0.34)),
		var(--jhc-crg-hero-image),
		linear-gradient(135deg, #0a1e70 0%, #0b7896 100%);
	background-position: center 54%;
	background-size: cover;
	box-shadow: 0 24px 60px rgba(7, 27, 104, 0.09);
}

.jhc-crg-hero-row::after {
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
	content: "";
	pointer-events: none;
}

.jhc-crg-hero-copy {
	position: relative;
	z-index: 1;
	max-width: 760px;
}

.jhc-crg-hero-copy h1 {
	margin: 0 0 12px;
	color: #fff;
	font-size: clamp(3rem, 6.6vw, 5.7rem);
	font-weight: 900;
	line-height: 0.94;
	text-shadow: 0 4px 24px rgba(4, 18, 74, 0.36);
}

.jhc-crg-hero-copy p {
	margin: 0 0 22px;
	color: rgba(255, 255, 255, 0.94);
	font-size: clamp(1.05rem, 2vw, 1.32rem);
	line-height: 1.5;
	text-shadow: 0 2px 16px rgba(4, 18, 74, 0.4);
}

.jhc-crg-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.jhc-crg-hero-button,
.jhc-crg-help-button,
.jhc-crg-info-button,
.jhc-crg-application-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 8px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	box-shadow: 0 8px 20px rgba(7, 27, 104, 0.12);
}

.jhc-crg-hero-button {
	min-height: 62px;
	padding: 14px 24px;
	color: #fff !important;
	border: 1px solid rgba(255, 255, 255, 0.22);
	cursor: pointer;
	font-family: inherit;
	font-size: 1rem;
	box-shadow: 0 14px 28px rgba(4, 18, 74, 0.26);
}

.jhc-crg-hero-button:hover,
.jhc-crg-help-button:hover,
.jhc-crg-info-button:hover,
.jhc-crg-application-link:hover {
	filter: brightness(0.97);
	transform: translateY(-1px);
}

.jhc-crg-button-icon,
.jhc-crg-action-icon,
.jhc-crg-chip-icon {
	position: relative;
	display: inline-block;
	flex: 0 0 auto;
}

.jhc-crg-button-icon {
	width: 18px;
	height: 18px;
	margin-right: 10px;
	color: currentColor;
}

.jhc-crg-button-navy {
	background: #071b68;
}

.jhc-crg-button-blue,
.jhc-crg-help-button {
	background: var(--jhc-crg-blue);
}

.jhc-crg-button-purple {
	background: var(--jhc-crg-purple);
}

.jhc-crg-hero-art {
	position: relative;
	min-height: 340px;
	overflow: hidden;
	border-radius: 18px;
	background: #d9ebf8;
	box-shadow: 0 20px 45px rgba(7, 27, 104, 0.16);
	isolation: isolate;
}

.jhc-crg-hero-art::before {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(180deg, rgba(7, 27, 104, 0.03) 0%, rgba(7, 27, 104, 0.18) 100%),
		linear-gradient(90deg, rgba(7, 27, 104, 0.16) 0%, rgba(7, 27, 104, 0) 58%);
	content: "";
}

.jhc-crg-hero-art img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 340px;
	object-fit: cover;
	object-position: center center;
	transform: scale(1.01);
}

.jhc-crg-hero-photo-overlay {
	position: absolute;
	right: 18px;
	bottom: 18px;
	left: 18px;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 14px 16px;
	border: 1px solid rgba(255, 255, 255, 0.34);
	border-radius: 14px;
	color: #fff;
	background: rgba(7, 27, 104, 0.7);
	box-shadow: 0 14px 32px rgba(7, 27, 104, 0.18);
	backdrop-filter: blur(8px);
}

.jhc-crg-hero-photo-overlay span {
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	white-space: nowrap;
}

.jhc-crg-hero-photo-overlay strong {
	font-size: 1rem;
	line-height: 1.25;
	text-align: right;
}

.jhc-crg-search-section {
	padding: 10px 0 26px;
}

.jhc-crg-branded-directory .jhc-crg-search {
	position: relative;
}

.jhc-crg-branded-directory .jhc-crg-search input {
	min-height: 64px;
	border: 1px solid #c8d4e6;
	border-radius: 14px;
	padding: 0 18px 0 58px;
	color: #172653;
	font-size: 1.05rem;
	box-shadow: 0 8px 22px rgba(7, 27, 104, 0.07);
}

.jhc-crg-search-icon {
	position: absolute;
	top: 50%;
	left: 20px;
	width: 19px;
	height: 19px;
	border: 3px solid var(--jhc-crg-navy);
	border-radius: 50%;
	transform: translateY(-56%);
}

.jhc-crg-search-icon::after {
	position: absolute;
	right: -8px;
	bottom: -8px;
	width: 10px;
	height: 3px;
	border-radius: 99px;
	background: var(--jhc-crg-navy);
	content: "";
	transform: rotate(45deg);
}

.jhc-crg-chip-row {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 12px;
	overflow: visible;
}

.jhc-crg-search-helper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 12px;
	color: #53617d;
	font-size: 0.92rem;
	font-weight: 800;
}

.jhc-crg-search-helper a {
	color: var(--jhc-crg-blue) !important;
	text-decoration: none;
}

.category-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 42px;
	border: 1px solid #c9d5e7;
	border-radius: 999px;
	padding: 9px 14px;
	color: var(--jhc-crg-navy);
	background: #fff;
	font-weight: 800;
	cursor: pointer;
	font-family: inherit;
	line-height: 1;
	box-shadow: 0 5px 14px rgba(7, 27, 104, 0.04);
	transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
}

.category-chip::before {
	display: none;
}

.category-chip:hover {
	border-color: #9bc9ec;
	box-shadow: 0 9px 20px rgba(7, 27, 104, 0.08);
	transform: translateY(-1px);
}

.category-chip.is-active {
	border-color: var(--jhc-crg-blue);
	background: #eaf7ff;
	box-shadow: inset 0 0 0 1px var(--jhc-crg-blue);
}

.jhc-crg-chip-icon {
	width: 18px;
	height: 18px;
	border-radius: 7px;
	color: var(--jhc-crg-blue);
}

.jhc-crg-chip-icon::before,
.jhc-crg-chip-icon::after,
.jhc-crg-action-icon::before,
.jhc-crg-action-icon::after,
.jhc-crg-button-icon::before,
.jhc-crg-button-icon::after {
	position: absolute;
	content: "";
}

.jhc-crg-chip-icon-circle::before,
.jhc-crg-chip-icon-home::before,
.jhc-crg-chip-icon-meal::before,
.jhc-crg-chip-icon-key::before,
.jhc-crg-chip-icon-dollar::before,
.jhc-crg-chip-icon-cross::before,
.jhc-crg-chip-icon-heart::before,
.jhc-crg-chip-icon-leaf::before,
.jhc-crg-chip-icon-shield::before,
.jhc-crg-chip-icon-family::before,
.jhc-crg-chip-icon-id::before,
.jhc-crg-chip-icon-check::before,
.jhc-crg-chip-icon-bus::before,
.jhc-crg-chip-icon-bolt::before,
.jhc-crg-chip-icon-shirt::before,
.jhc-crg-chip-icon-star::before {
	inset: 2px;
	border: 2px solid currentColor;
	border-radius: 5px;
}

.jhc-crg-chip-icon-home::after {
	top: 1px;
	left: 4px;
	width: 10px;
	height: 10px;
	border-top: 2px solid currentColor;
	border-left: 2px solid currentColor;
	transform: rotate(45deg);
}

.jhc-crg-chip-icon-cross::before {
	left: 7px;
	width: 4px;
	border-radius: 2px;
	background: currentColor;
}

.jhc-crg-chip-icon-cross::after {
	top: 7px;
	height: 4px;
	left: 3px;
	right: 3px;
	border-radius: 2px;
	background: currentColor;
}

.jhc-crg-chip-icon-heart::before {
	top: 3px;
	left: 3px;
	width: 12px;
	height: 12px;
	border: 0;
	border-radius: 2px 2px 0 0;
	background: currentColor;
	transform: rotate(45deg);
}

.jhc-crg-chip-icon-star::before {
	inset: 1px;
	border: 0;
	background: currentColor;
	clip-path: polygon(50% 0, 62% 34%, 98% 35%, 69% 56%, 79% 91%, 50% 70%, 21% 91%, 31% 56%, 2% 35%, 38% 34%);
}

.help-banner,
.jhc-crg-info-banner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 24px;
	align-items: center;
	margin: 8px 0 24px;
	padding: 26px 28px;
	border: 1px solid #a9d8f5;
	border-radius: 16px;
	background: var(--jhc-crg-pale-blue);
	box-shadow: 0 12px 28px rgba(7, 27, 104, 0.06);
}

.jhc-crg-help-icon,
.jhc-crg-info-icon {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 78px;
	height: 78px;
	border-radius: 50%;
	color: #fff;
	background: var(--jhc-crg-navy);
	font-size: 2.5rem;
	font-weight: 900;
}

.jhc-crg-help-icon span {
	width: 36px;
	height: 31px;
	background: var(--jhc-crg-blue);
	clip-path: polygon(50% 92%, 5% 45%, 5% 18%, 22% 0, 42% 0, 50% 12%, 58% 0, 78% 0, 95% 18%, 95% 45%);
}

.jhc-crg-help-copy h2,
.section-heading-row h2 {
	margin: 0;
	color: var(--jhc-crg-navy);
	font-size: clamp(1.35rem, 2.5vw, 1.85rem);
	font-weight: 900;
	line-height: 1.15;
}

.jhc-crg-help-copy p {
	margin: 8px 0 12px;
	color: #172653;
	font-size: 1rem;
	line-height: 1.45;
}

.jhc-crg-contact-detail-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 24px;
	color: #172653;
	font-weight: 800;
}

.jhc-crg-contact-detail-row a {
	color: var(--jhc-crg-navy) !important;
	text-decoration: none;
}

.jhc-crg-help-button,
.jhc-crg-info-button {
	min-height: 56px;
	padding: 13px 28px;
	color: #fff !important;
	white-space: nowrap;
}

.jhc-crg-help-button::after {
	margin-left: 12px;
	content: ">";
}

.section-heading-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin: 0 0 18px;
	min-width: 0;
}

.jhc-crg-section-title-group {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
	min-width: 0;
}

.jhc-crg-section-icon {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border: 1px solid #b8dff6;
	border-radius: 14px;
	color: var(--jhc-crg-blue);
	background: #eef8ff;
	box-shadow: 0 8px 18px rgba(7, 27, 104, 0.05);
}

.section-heading-row h2 {
	font-size: clamp(28px, 2vw, 38px);
	line-height: 1.08;
	letter-spacing: 0;
}

.jhc-crg-section-intro {
	max-width: 760px;
	margin: 7px 0 0;
	color: #53617d;
	font-size: 0.96rem;
	line-height: 1.45;
}

.section-heading-row > a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--jhc-crg-blue);
	font-weight: 900;
	text-decoration: none;
	white-space: nowrap;
}

.section-heading-row > a::after {
	margin-left: 8px;
	content: ">";
}

.jhc-crg-count-pill {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	border-radius: 999px;
	padding: 5px 10px;
	color: var(--jhc-crg-navy);
	background: #e7f6ff;
	font-size: 0.78rem;
	font-weight: 900;
}

.jhc-crg-application-grid,
.jhc-crg-featured-grid {
	display: grid;
	gap: 14px;
}

.jhc-crg-application-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-bottom: 26px;
}

.quick-application-card,
.resource-card {
	border: 1px solid var(--jhc-crg-card-line);
	border-radius: 16px;
	background: #fff;
	box-shadow: var(--jhc-crg-card-shadow);
}

.quick-application-card {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 20px;
	min-height: 170px;
	padding: 22px;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.quick-application-card:hover {
	border-color: #b9d6ef;
	box-shadow: 0 16px 34px rgba(10, 33, 84, 0.11);
	transform: translateY(-2px);
}

.jhc-crg-application-icon {
	display: grid;
	place-items: center;
	width: 78px;
	height: 78px;
	border-radius: 50%;
	color: #fff;
	font-size: 1rem;
	font-weight: 900;
}

.jhc-crg-app-green {
	background: #368b2e;
}

.jhc-crg-app-teal {
	background: #0a9caf;
}

.jhc-crg-app-purple {
	background: #6332a3;
}

.quick-application-card h3,
.resource-card h3 {
	margin: 0 0 8px;
	color: var(--jhc-crg-navy);
	font-size: 1.08rem;
	font-weight: 900;
	line-height: 1.2;
}

.quick-application-card p,
.resource-card p {
	margin: 0 0 12px;
	color: #2c3a66;
	line-height: 1.45;
}

.jhc-crg-application-link {
	min-height: 38px;
	border: 1px solid var(--jhc-crg-navy);
	padding: 8px 18px;
	color: var(--jhc-crg-navy) !important;
	background: #fff;
	box-shadow: none;
}

.jhc-crg-featured-resources {
	display: grid;
	grid-template-columns: 1fr;
	gap: 38px;
	margin-top: 6px;
}

.jhc-crg-featured-resources .jhc-crg-category-section {
	margin: 0;
	min-width: 0;
	padding-top: 4px;
}

.jhc-crg-featured-grid {
	grid-template-columns: repeat(3, minmax(240px, 1fr));
	gap: 22px;
}

.jhc-crg-featured-card {
	display: flex;
	flex-direction: column;
	min-height: 250px;
	overflow: hidden;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.jhc-crg-featured-card:hover {
	border-color: #b9d6ef;
	box-shadow: 0 16px 34px rgba(10, 33, 84, 0.11);
	transform: translateY(-2px);
}

.jhc-crg-featured-card[hidden],
.jhc-crg-category-section[hidden] {
	display: none;
}

.jhc-crg-category-empty {
	grid-column: 1 / -1;
	margin: 0;
	padding: 18px;
	border: 1px dashed #c9d8eb;
	border-radius: 8px;
	color: #2c3a66;
	background: #fbfdff;
}

.jhc-crg-featured-card-body {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 14px;
	padding: 22px 18px 12px;
}

.jhc-crg-featured-logo {
	width: 72px;
	height: 58px;
	border-radius: 12px;
	object-fit: contain;
	background: #fff;
}

.jhc-crg-featured-logo-fallback {
	display: grid;
	place-items: center;
	width: 72px;
	height: 58px;
	border-radius: 12px;
	color: var(--jhc-crg-navy);
	background: #eaf7ff;
	border: 1px solid #b8dff6;
	font-weight: 900;
	font-size: 15px;
}

.jhc-crg-featured-copy h3 {
	margin-bottom: 8px;
	font-size: 21px;
	line-height: 1.15;
	letter-spacing: 0;
	overflow-wrap: normal;
}

.jhc-crg-featured-copy p {
	display: -webkit-box;
	overflow: hidden;
	font-size: 14px;
	line-height: 1.45;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.jhc-crg-tag-row {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: auto;
	padding: 0 18px 14px 104px;
}

.resource-tag {
	display: inline-flex;
	align-items: center;
	border-radius: 999px;
	padding: 5px 9px;
	color: var(--jhc-crg-navy);
	background: #dff6fb;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.1;
}

.action-link-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 7px;
	padding: 12px 16px;
	border-top: 1px solid var(--jhc-crg-card-line);
	background: #fbfdff;
}

.jhc-crg-mini-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	min-height: 34px;
	border: 1px solid #dbe3f0;
	border-radius: 6px;
	color: var(--jhc-crg-navy) !important;
	background: #fff;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
}

.jhc-crg-mini-action-disabled {
	opacity: 0.45;
}

.jhc-crg-info-banner {
	margin-top: 14px;
}

.jhc-crg-info-banner p {
	margin: 0 0 4px;
	color: #172653;
}

.jhc-crg-info-button {
	background: var(--jhc-crg-navy);
}

.jhc-crg-branded-directory .jhc-crg-offline-panel {
	border: 1px solid #a9d8f5;
	border-radius: 8px;
	background: #f8fcff;
}

.jhc-crg-contact-strip {
	display: grid;
	grid-template-columns: minmax(260px, 1fr) minmax(260px, 1.35fr);
	gap: 28px;
	align-items: center;
	margin-top: 20px;
	padding: 28px;
	border-radius: 0;
	color: #fff;
	background: linear-gradient(90deg, #063b91 0%, #061464 100%);
}

.jhc-crg-footer-brand {
	display: flex;
	gap: 14px;
	align-items: center;
}

.jhc-crg-footer-mark {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border: 2px solid #fff;
	border-radius: 50%;
	font-weight: 900;
}

.jhc-crg-footer-brand h2 {
	margin: 0 0 4px;
	color: #fff;
	font-size: 1.6rem;
}

.jhc-crg-footer-brand p,
.jhc-crg-footer-contact a,
.jhc-crg-footer-contact span {
	margin: 0;
	color: #fff;
	font-weight: 700;
	text-decoration: none;
}

.jhc-crg-category-page {
	padding-top: 22px;
}

.jhc-crg-category-page .jhc-crg-card-grid {
	grid-template-columns: repeat(3, minmax(260px, 1fr));
	gap: 18px;
}

.jhc-crg-category-index {
	--jhc-crg-navy: #071b68;
	--jhc-crg-blue: #0998e6;
	--jhc-crg-purple: #5141b9;
	width: min(1240px, calc(100% - 28px));
	margin: 0 auto;
	color: var(--jhc-crg-navy);
}

.jhc-crg-category-index-hero {
	position: relative;
	overflow: hidden;
	margin: 0 0 24px;
	padding: clamp(28px, 5vw, 52px);
	border: 1px solid #c8e4f8;
	border-radius: 22px;
	background:
		radial-gradient(circle at 92% 12%, rgba(9, 152, 230, 0.16), transparent 26%),
		linear-gradient(135deg, #ffffff 0%, #eef8ff 100%);
	box-shadow: 0 22px 50px rgba(7, 27, 104, 0.09);
}

.jhc-crg-category-index-kicker {
	margin: 0 0 10px;
	color: var(--jhc-crg-blue);
	font-size: 0.85rem;
	font-weight: 900;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.jhc-crg-category-index-hero h1 {
	max-width: 760px;
	margin: 0 0 12px;
	color: var(--jhc-crg-navy);
	font-size: clamp(2.35rem, 6vw, 4.8rem);
	font-weight: 900;
	line-height: 1;
}

.jhc-crg-category-index-hero p:not(.jhc-crg-category-index-kicker) {
	max-width: 760px;
	margin: 0 0 22px;
	color: #24345f;
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	line-height: 1.55;
}

.jhc-crg-category-index-back {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 18px;
	border-radius: 8px;
	background: var(--jhc-crg-navy);
	color: #fff !important;
	font-weight: 900;
	text-decoration: none;
	box-shadow: 0 10px 22px rgba(7, 27, 104, 0.16);
}

.jhc-crg-category-index-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.jhc-crg-category-index-card {
	position: relative;
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
	min-height: 172px;
	padding: 20px;
	border: 1px solid #dbe3f0;
	border-radius: 16px;
	background: #fff;
	color: inherit !important;
	text-decoration: none;
	box-shadow: 0 12px 28px rgba(7, 27, 104, 0.07);
	transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.jhc-crg-category-index-card::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	border-radius: 16px 16px 0 0;
	background: linear-gradient(90deg, var(--jhc-crg-blue), var(--jhc-crg-purple));
	content: "";
}

.jhc-crg-category-index-card:hover,
.jhc-crg-category-index-card:focus {
	border-color: #9fd3f4;
	box-shadow: 0 18px 36px rgba(7, 27, 104, 0.12);
	transform: translateY(-2px);
}

.jhc-crg-category-index-icon {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border: 1px solid #bfe4fa;
	border-radius: 16px;
	background: #eef8ff;
	color: var(--jhc-crg-navy);
	font-weight: 900;
}

.jhc-crg-category-index-copy {
	display: grid;
	gap: 8px;
	min-width: 0;
}

.jhc-crg-category-index-copy strong {
	color: var(--jhc-crg-navy);
	font-size: 1.15rem;
	font-weight: 900;
	line-height: 1.15;
}

.jhc-crg-category-index-copy span {
	color: #3f4e70;
	font-size: 0.95rem;
	line-height: 1.45;
}

.jhc-crg-category-index-count {
	grid-column: 2;
	align-self: end;
	width: fit-content;
	margin-top: 4px;
	padding: 6px 10px;
	border-radius: 999px;
	background: #e7f8fc;
	color: var(--jhc-crg-navy);
	font-size: 0.82rem;
	font-weight: 900;
}

@media (max-width: 980px) {
	.jhc-crg-category-index-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.jhc-crg-category-index {
		width: min(100% - 20px, 1240px);
	}

	.jhc-crg-category-index-grid {
		grid-template-columns: 1fr;
	}

	.jhc-crg-category-index-card {
		grid-template-columns: 50px minmax(0, 1fr);
		min-height: 0;
		padding: 16px;
	}

	.jhc-crg-category-index-icon {
		width: 50px;
		height: 50px;
		border-radius: 14px;
	}
}

.jhc-crg-category-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	grid-template-areas:
		"kicker actions"
		"title actions"
		"description count";
	gap: 14px 28px;
	align-items: end;
	margin-bottom: 24px;
	padding: 34px;
	border: 1px solid #b9d6ef;
	border-radius: 22px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(238, 248, 255, 0.98) 100%),
		radial-gradient(circle at 94% 12%, rgba(9, 152, 230, 0.18), transparent 30%);
	box-shadow: 0 18px 42px rgba(7, 27, 104, 0.09);
}

.jhc-crg-category-hero .jhc-crg-kicker {
	grid-area: kicker;
	margin: 0;
	color: #086b73;
	font-size: 0.86rem;
	font-weight: 900;
	letter-spacing: 0.08em;
}

.jhc-crg-category-hero h1 {
	grid-area: title;
	max-width: 980px;
	margin: 0;
	color: var(--jhc-crg-navy);
	font-size: clamp(38px, 5vw, 64px);
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0;
	overflow-wrap: anywhere;
}

.jhc-crg-category-hero p:not(.jhc-crg-kicker) {
	grid-area: description;
	max-width: 760px;
	margin: 0;
	color: #172653;
	font-size: 1.1rem;
	line-height: 1.5;
}

.jhc-crg-category-count {
	grid-area: count;
	display: inline-flex;
	align-items: baseline;
	justify-self: end;
	gap: 8px;
	width: fit-content;
	margin: 0;
	padding: 10px 14px;
	border: 1px solid #cfe1f3;
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 8px 18px rgba(7, 27, 104, 0.06);
}

.jhc-crg-category-count strong {
	color: var(--jhc-crg-blue);
	font-size: 1.25rem;
	font-weight: 900;
}

.jhc-crg-category-count span {
	color: #172653;
	font-weight: 800;
}

.jhc-crg-category-hero-actions {
	grid-area: actions;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 12px;
	margin-top: 0;
}

.jhc-crg-footer-contact {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 28px;
}

.jhc-crg-social-links {
	display: flex;
	gap: 12px;
}

.jhc-crg-social-links a {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 2px solid rgba(255, 255, 255, 0.7);
	border-radius: 50%;
	color: #fff;
	font-weight: 900;
	text-decoration: none;
}

@media (max-width: 1100px) {
	.jhc-crg-featured-resources {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 980px) {
	.jhc-crg-hero-row,
	.jhc-crg-category-hero,
	.help-banner,
	.jhc-crg-info-banner,
	.jhc-crg-contact-strip {
		grid-template-columns: 1fr;
	}

	.jhc-crg-category-hero {
		grid-template-areas:
			"kicker"
			"title"
			"description"
			"count"
			"actions";
		align-items: start;
	}

	.jhc-crg-category-count,
	.jhc-crg-category-hero-actions {
		justify-self: start;
	}

	.jhc-crg-hero-row {
		padding: 24px;
		min-height: 0;
		background:
			linear-gradient(180deg, rgba(7, 27, 104, 0.91) 0%, rgba(7, 27, 104, 0.8) 62%, rgba(7, 27, 104, 0.62) 100%),
			var(--jhc-crg-hero-image),
			linear-gradient(135deg, #0a1e70 0%, #0b7896 100%);
		background-position: center center;
		background-size: cover;
	}

	.jhc-crg-application-grid,
	.jhc-crg-featured-grid,
	.jhc-crg-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.jhc-crg-help-button,
	.jhc-crg-info-button {
		justify-self: start;
	}

	.jhc-crg-single-header {
		grid-template-columns: 1fr;
	}

	.jhc-crg-single-brand-card {
		grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
		align-items: center;
	}

	.jhc-crg-single-media-card {
		min-height: 360px;
	}

	.jhc-crg-brand-card-copy {
		text-align: left;
	}

	.jhc-crg-help-overview {
		grid-template-columns: 1fr;
	}

	.jhc-crg-single-layout {
		grid-template-columns: 1fr;
	}

	.jhc-crg-single-sidebar {
		position: static;
	}
}

@media (max-width: 640px) {
	.jhc-crg-branded-directory {
		width: min(100% - 20px, 1240px);
		padding-top: 10px;
	}

	.jhc-crg-hero-row {
		gap: 18px;
	}

	.jhc-crg-single {
		width: min(100% - 20px, 1180px);
		padding-top: 12px;
	}

	.jhc-crg-single-hero {
		padding: 22px;
	}

	.jhc-crg-single-header {
		grid-template-columns: 1fr;
	}

	.jhc-crg-single-brand-card {
		grid-template-columns: 1fr;
		padding: 18px;
	}

	.jhc-crg-single-media-card {
		min-height: 280px;
	}

	.jhc-crg-single-logo-frame {
		min-height: 118px;
		padding: 14px;
	}

	.jhc-crg-single-logo {
		height: auto;
		max-height: 100px;
	}

	.jhc-crg-single-logo-fallback {
		width: 72px;
		height: 72px;
		font-size: 24px;
	}

	.jhc-crg-brand-card-copy {
		text-align: center;
	}

	.jhc-crg-single-heading h1 {
		font-size: clamp(34px, 12vw, 46px);
	}

	.jhc-crg-quick-facts {
		grid-template-columns: 1fr;
	}

	.jhc-crg-help-overview-grid {
		grid-template-columns: 1fr;
	}

	.jhc-crg-before-you-go {
		align-items: flex-start;
		flex-direction: column;
	}

	.jhc-crg-before-you-go div {
		justify-content: flex-start;
	}

	.jhc-crg-gallery {
		grid-template-columns: 1fr;
	}

	.jhc-crg-single-actions {
		grid-template-columns: 1fr;
	}

	.jhc-crg-detail-grid {
		grid-template-columns: 1fr;
	}

	.jhc-crg-hero-actions,
	.jhc-crg-hero-button,
	.jhc-crg-help-button,
	.jhc-crg-info-button {
		width: 100%;
	}

	.jhc-crg-hero-copy h1 {
		font-size: clamp(2.35rem, 14vw, 4rem);
	}

	.jhc-crg-search-helper {
		align-items: flex-start;
		flex-direction: column;
	}

	.jhc-crg-chip-row {
		flex-wrap: nowrap;
		margin-right: -10px;
		overflow-x: auto;
		padding-bottom: 8px;
		scroll-snap-type: x proximity;
	}

	.category-chip {
		flex: 0 0 auto;
		scroll-snap-align: start;
	}

	.jhc-crg-hero-art {
		min-height: 190px;
	}

	.jhc-crg-hero-art img {
		min-height: 190px;
	}

	.jhc-crg-hero-photo-overlay {
		align-items: flex-start;
		flex-direction: column;
		gap: 4px;
	}

	.jhc-crg-hero-photo-overlay strong {
		text-align: left;
	}

	.help-banner,
	.jhc-crg-info-banner {
		padding: 20px;
	}

	.jhc-crg-application-grid,
	.jhc-crg-featured-grid,
	.jhc-crg-card-grid {
		grid-template-columns: 1fr;
	}

	.jhc-crg-featured-card-body {
		grid-template-columns: 60px minmax(0, 1fr);
	}

	.jhc-crg-card-header {
		grid-template-columns: 60px minmax(0, 1fr);
	}

	.jhc-crg-card-main {
		padding: 16px;
	}

	.jhc-crg-featured-logo,
	.jhc-crg-featured-logo-fallback,
	.jhc-crg-provider-logo,
	.jhc-crg-provider-logo-fallback {
		width: 60px;
		height: 48px;
	}

	.jhc-crg-tag-row {
		padding-left: 92px;
	}

	.quick-application-card {
		grid-template-columns: 1fr;
	}

	.section-heading-row {
		align-items: flex-start;
		flex-direction: column;
	}

	.section-heading-row > a {
		width: 100%;
		justify-content: space-between;
	}

	.jhc-crg-section-title-group {
		grid-template-columns: 42px minmax(0, 1fr);
	}

	.jhc-crg-section-icon {
		width: 42px;
		height: 42px;
	}

	.jhc-crg-contact-detail-row,
	.jhc-crg-footer-contact {
		flex-direction: column;
	}
}

/* Visual refinement layer for the public guide. */
.jhc-crg-branded-directory {
	--jhc-crg-page-bg: #f7faff;
	--jhc-crg-card-line: #d9e6f3;
	--jhc-crg-lift-shadow: 0 18px 42px rgba(7, 27, 104, 0.1);
}

.jhc-crg-trust-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 14px;
}

.jhc-crg-trust-strip span,
.jhc-crg-need-shortcuts a,
.jhc-crg-verified-pill,
.jhc-crg-verify-pill-muted,
.jhc-crg-access-pill {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	border: 1px solid #cfe1f3;
	border-radius: 999px;
	padding: 6px 11px;
	color: var(--jhc-crg-navy);
	background: #fff;
	font-size: 0.82rem;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
}

.jhc-crg-trust-strip strong {
	color: var(--jhc-crg-blue);
}

.jhc-crg-need-shortcuts {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 14px;
}

.jhc-crg-need-shortcuts a {
	border-color: #bfe4fa;
	background: linear-gradient(180deg, #ffffff 0%, #eef8ff 100%);
	box-shadow: 0 8px 18px rgba(7, 27, 104, 0.055);
}

.jhc-crg-need-shortcuts a:first-child {
	border-color: rgba(194, 65, 45, 0.28);
	color: #8f2418;
	background: #fff6f4;
}

.jhc-crg-need-shortcuts a:hover,
.jhc-crg-need-shortcuts a:focus {
	border-color: var(--jhc-crg-blue);
	transform: translateY(-1px);
}

.jhc-crg-search-section {
	position: relative;
	z-index: 3;
	margin: -4px 0 24px;
	padding: clamp(16px, 2vw, 22px);
	border: 1px solid #cfe1f3;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 18px 44px rgba(7, 27, 104, 0.08);
	backdrop-filter: blur(8px);
}

.jhc-crg-search input {
	border: 1px solid #c8d9eb;
	border-radius: 14px;
	background: #fbfdff;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.jhc-crg-search input:focus {
	border-color: var(--jhc-crg-blue);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(9, 152, 230, 0.14);
	outline: 0;
}

.jhc-crg-featured-resources {
	gap: clamp(28px, 4vw, 46px);
}

.jhc-crg-featured-resources .jhc-crg-category-section,
.jhc-crg-category-page .jhc-crg-category-section {
	position: relative;
	padding: clamp(18px, 2.5vw, 26px);
	border: 1px solid #e1ebf5;
	border-radius: 22px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 251, 255, 0.94) 100%),
		var(--jhc-crg-page-bg);
	box-shadow: 0 16px 38px rgba(7, 27, 104, 0.065);
}

.section-heading-row {
	padding-bottom: 16px;
	border-bottom: 1px solid #e5edf6;
}

.jhc-crg-section-icon {
	border-radius: 16px;
	background:
		linear-gradient(180deg, #ffffff 0%, #eef8ff 100%);
	box-shadow: 0 10px 22px rgba(7, 27, 104, 0.07);
}

.section-heading-row > a {
	border: 1px solid #cfe1f3;
	border-radius: 999px;
	padding: 8px 12px;
	background: #fff;
	box-shadow: 0 8px 18px rgba(7, 27, 104, 0.045);
}

.jhc-crg-provider-card {
	min-height: 0;
	border-color: var(--jhc-crg-card-line);
	border-radius: 16px;
	box-shadow: 0 10px 24px rgba(7, 27, 104, 0.075);
}

.jhc-crg-provider-card::before {
	height: 5px;
	opacity: 1;
}

.jhc-crg-card-main {
	gap: 12px;
	padding: 20px 18px 14px;
}

.jhc-crg-card-header {
	grid-template-columns: 64px minmax(0, 1fr);
	gap: 13px;
	align-items: center;
}

.jhc-crg-provider-logo,
.jhc-crg-provider-logo-fallback {
	width: 64px;
	height: 54px;
	border-radius: 15px;
}

.jhc-crg-provider-card h3 {
	margin-bottom: 0;
	font-size: clamp(18px, 1.4vw, 22px);
}

.jhc-crg-card-title-row {
	display: grid;
	gap: 8px;
}

.jhc-crg-card-status-row {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 2px;
}

.jhc-crg-verified-pill {
	border-color: rgba(15, 81, 50, 0.2);
	color: #0f5132;
	background: #f0fbf5;
	font-size: 0.72rem;
}

.jhc-crg-verify-pill-muted {
	border-color: rgba(180, 83, 9, 0.2);
	color: #92400e;
	background: #fff8e5;
	font-size: 0.72rem;
}

.jhc-crg-access-pill {
	border-color: #d8e6f4;
	color: #2c3a66;
	background: #f8fbff;
	font-size: 0.72rem;
}

.jhc-crg-card-description {
	color: #28385f !important;
	font-size: 15px !important;
	font-weight: 750;
	line-height: 1.42 !important;
	margin-top: 2px !important;
}

.jhc-crg-services-summary {
	margin-top: 2px !important;
	color: #53617d !important;
	font-size: 13px !important;
	line-height: 1.45 !important;
}

.jhc-crg-card-chip {
	background: color-mix(in srgb, var(--jhc-provider-accent) 10%, #eef8ff);
}

.jhc-crg-card-actions {
	grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
	gap: 9px;
	padding: 12px 13px;
	background: #fbfdff;
}

.jhc-crg-action {
	min-height: 40px;
	border-radius: 10px;
	font-size: 12px;
	box-shadow: 0 5px 12px rgba(7, 27, 104, 0.035);
}

.jhc-crg-action-primary {
	background: var(--jhc-provider-brand);
	border-color: var(--jhc-provider-brand);
	box-shadow: 0 8px 18px color-mix(in srgb, var(--jhc-provider-brand) 20%, transparent);
}

.help-banner {
	border-radius: 20px;
	background:
		radial-gradient(circle at 5% 12%, rgba(9, 152, 230, 0.12), transparent 26%),
		linear-gradient(135deg, #eef8ff 0%, #ffffff 100%);
	box-shadow: var(--jhc-crg-lift-shadow);
}

.jhc-crg-category-help-strip {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin: 0 0 18px;
	padding: 16px 18px;
	border: 1px solid #cfe1f3;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 10px 24px rgba(7, 27, 104, 0.06);
}

.jhc-crg-category-help-strip strong,
.jhc-crg-category-help-strip span {
	display: block;
}

.jhc-crg-category-help-strip strong {
	color: var(--jhc-crg-navy);
	font-size: 1rem;
}

.jhc-crg-category-help-strip span {
	margin-top: 3px;
	color: #53617d;
}

.jhc-crg-category-help-strip a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	border-radius: 10px;
	padding: 9px 15px;
	color: #fff !important;
	background: var(--jhc-crg-blue);
	font-weight: 900;
	text-decoration: none;
	white-space: nowrap;
}

.jhc-crg-single-hero {
	border-radius: 26px;
	box-shadow: 0 26px 64px rgba(7, 27, 104, 0.12);
}

.jhc-crg-detail-section,
.jhc-crg-detail-group,
.jhc-crg-info-strip,
.jhc-crg-contact-card {
	border-radius: 18px;
}

.jhc-crg-detail-section-featured {
	border-top: 5px solid var(--jhc-provider-accent);
}

@media (max-width: 980px) {
	.jhc-crg-trust-strip,
	.jhc-crg-need-shortcuts {
		flex-wrap: nowrap;
		overflow-x: auto;
		padding-bottom: 4px;
	}

	.jhc-crg-category-help-strip {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 640px) {
	.jhc-crg-search-section {
		border-radius: 16px;
		padding: 14px;
	}

	.jhc-crg-featured-resources .jhc-crg-category-section,
	.jhc-crg-category-page .jhc-crg-category-section {
		padding: 15px;
		border-radius: 18px;
	}

	.jhc-crg-card-actions {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.jhc-crg-action-primary {
		grid-column: 1 / -1;
	}
}

.jhc-crg-homelessness-form {
	--jhc-crg-ink: #17202a;
	--jhc-crg-muted: #5d6975;
	--jhc-crg-line: #d9e1e8;
	--jhc-crg-surface: #ffffff;
	--jhc-crg-soft: #f4f8fa;
	--jhc-crg-primary: #086b73;
	--jhc-crg-primary-dark: #054b51;
	--jhc-crg-focus: #f7c948;
	--jhc-crg-navy: #071b68;
	--jhc-crg-blue: #0998e6;
	width: min(920px, calc(100% - 28px));
	margin: 0 auto;
	padding: 28px 0 48px;
	color: var(--jhc-crg-ink);
	font-family: inherit;
}

.jhc-crg-homelessness-form *,
.jhc-crg-homelessness-form *::before,
.jhc-crg-homelessness-form *::after {
	box-sizing: border-box;
}

.jhc-crg-homelessness-form-header {
	display: grid;
	grid-template-columns: 190px minmax(0, 1fr);
	gap: 22px;
	align-items: center;
	margin-bottom: 24px;
	padding: 22px;
	border: 1px solid #d7e3f0;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 12px 28px rgba(7, 27, 104, 0.08);
}

.jhc-crg-homelessness-form-header img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 6px;
	object-fit: cover;
	background: var(--jhc-crg-navy);
}

.jhc-crg-homelessness-form-header h2 {
	margin: 0 0 10px;
	color: var(--jhc-crg-navy);
	font-size: clamp(2rem, 5vw, 3.2rem);
	font-weight: 900;
	line-height: 1.04;
	letter-spacing: 0;
}

.jhc-crg-homelessness-form-header p:not(.jhc-crg-kicker) {
	max-width: 620px;
	margin: 0;
	color: #34415f;
	font-size: 1.05rem;
	line-height: 1.5;
}

.jhc-crg-homelessness-form-fields {
	padding: 22px;
	border: 1px solid #d7e3f0;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 12px 28px rgba(7, 27, 104, 0.06);
}

.jhc-crg-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.jhc-crg-form-field {
	display: grid;
	gap: 7px;
	min-width: 0;
	color: var(--jhc-crg-ink);
	font-weight: 800;
}

.jhc-crg-form-field-wide {
	grid-column: 1 / -1;
}

.jhc-crg-form-field span {
	font-size: 0.95rem;
	line-height: 1.25;
}

.jhc-crg-form-field input,
.jhc-crg-form-field select,
.jhc-crg-form-field textarea {
	width: 100%;
	min-height: 46px;
	border: 1px solid #c8d9eb;
	border-radius: 6px;
	padding: 10px 12px;
	color: var(--jhc-crg-ink);
	background: #fbfdff;
	font: inherit;
	font-size: 1rem;
	line-height: 1.35;
}

.jhc-crg-form-field textarea {
	min-height: 108px;
	resize: vertical;
}

.jhc-crg-form-field input:focus,
.jhc-crg-form-field select:focus,
.jhc-crg-form-field textarea:focus {
	border-color: var(--jhc-crg-blue);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(9, 152, 230, 0.14);
	outline: 0;
}

.jhc-crg-form-actions {
	display: flex;
	justify-content: flex-start;
	margin-top: 18px;
}

.jhc-crg-homelessness-form .jhc-crg-primary-button {
	min-height: 46px;
	border: 0;
	border-radius: 6px;
	padding: 11px 18px;
	color: #fff;
	background: var(--jhc-crg-primary);
	font-size: 1rem;
	font-weight: 900;
	cursor: pointer;
}

.jhc-crg-homelessness-form .jhc-crg-primary-button:hover,
.jhc-crg-homelessness-form .jhc-crg-primary-button:focus {
	background: var(--jhc-crg-primary-dark);
}

.jhc-crg-form-notice {
	margin-bottom: 18px;
	padding: 14px 16px;
	border-radius: 8px;
	font-size: 1rem;
	line-height: 1.45;
}

.jhc-crg-form-notice ul {
	margin: 8px 0 0 18px;
	padding: 0;
}

.jhc-crg-form-notice-success {
	border: 1px solid rgba(15, 81, 50, 0.22);
	color: #0f5132;
	background: #f0fbf5;
}

.jhc-crg-form-notice-error {
	border: 1px solid rgba(194, 65, 45, 0.28);
	color: #8f2418;
	background: #fff6f4;
}

.jhc-crg-hp-field {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

@media (max-width: 760px) {
	.jhc-crg-homelessness-form {
		width: min(100% - 20px, 920px);
		padding-top: 12px;
	}

	.jhc-crg-homelessness-form-header {
		grid-template-columns: 1fr;
		padding: 16px;
	}

	.jhc-crg-homelessness-form-header img {
		max-height: 170px;
	}

	.jhc-crg-form-grid {
		grid-template-columns: 1fr;
	}

	.jhc-crg-homelessness-form-fields {
		padding: 16px;
	}

	.jhc-crg-form-actions,
	.jhc-crg-homelessness-form .jhc-crg-primary-button {
		width: 100%;
	}
}

/* Coalition-branded homelessness contact form refresh. */
.jhc-crg-homelessness-form {
	width: min(1040px, calc(100% - 28px));
}

.jhc-crg-homelessness-form-header {
	display: grid;
	grid-template-columns: 1fr;
	gap: 22px;
	padding: 0;
	overflow: hidden;
	border-radius: 8px;
	background: #fff;
}

.jhc-crg-homelessness-brand {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 20px 24px;
	color: #fff;
	background: #071b68;
}

.jhc-crg-homelessness-mark {
	display: grid;
	flex: 0 0 auto;
	place-items: center;
	width: 54px;
	height: 54px;
	border: 2px solid rgba(255, 255, 255, 0.84);
	border-radius: 50%;
	color: #fff;
	font-size: 15px;
	font-weight: 900;
	line-height: 1;
}

.jhc-crg-homelessness-brand strong,
.jhc-crg-homelessness-brand em {
	display: block;
}

.jhc-crg-homelessness-brand strong {
	color: #fff;
	font-size: 1.25rem;
	font-weight: 900;
	line-height: 1.2;
}

.jhc-crg-homelessness-brand em {
	margin-top: 3px;
	color: #dff6fb;
	font-size: 0.82rem;
	font-style: normal;
	font-weight: 900;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.jhc-crg-homelessness-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
	gap: 24px;
	align-items: center;
	padding: 6px 24px 26px;
}

.jhc-crg-homelessness-hero img {
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 8px;
	object-fit: cover;
	background: #071b68;
	box-shadow: 0 12px 26px rgba(7, 27, 104, 0.12);
}

.jhc-crg-homelessness-hero h2 {
	margin: 0 0 12px;
	color: #071b68;
	font-size: 3.75rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0;
}

.jhc-crg-homelessness-hero p {
	max-width: 660px;
	margin: 0;
	color: #34415f;
	font-size: 1.08rem;
	line-height: 1.55;
}

.jhc-crg-homelessness-form-fields {
	display: grid;
	gap: 22px;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.jhc-crg-form-section {
	padding: 22px;
	border: 1px solid #d7e3f0;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 12px 28px rgba(7, 27, 104, 0.055);
}

.jhc-crg-form-section-heading {
	display: grid;
	gap: 5px;
	margin-bottom: 16px;
	padding-bottom: 13px;
	border-bottom: 1px solid #e5edf6;
}

.jhc-crg-form-section-heading h3 {
	margin: 0;
	color: #071b68;
	font-size: 1.28rem;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: 0;
}

.jhc-crg-form-section-heading p {
	margin: 0;
	color: #53617d;
	font-size: 0.95rem;
	line-height: 1.45;
}

.jhc-crg-form-field input,
.jhc-crg-form-field select,
.jhc-crg-form-field textarea {
	border-color: #bfd2e6;
	border-radius: 8px;
	background: #fbfdff;
}

.jhc-crg-form-field small {
	color: #64748b;
	font-size: 0.85rem;
	font-weight: 600;
	line-height: 1.35;
}

.jhc-crg-form-field-checkbox {
	padding: 14px 16px;
	border: 1px solid #cfe1f3;
	border-radius: 8px;
	background: #f8fbff;
}

.jhc-crg-checkbox-control {
	display: grid;
	grid-template-columns: 22px minmax(0, 1fr);
	gap: 10px;
	align-items: start;
	color: #17202a;
	font-weight: 800;
	line-height: 1.45;
}

.jhc-crg-form-field-checkbox input[type="checkbox"] {
	width: 18px;
	height: 18px;
	min-height: 0;
	margin: 2px 0 0;
	padding: 0;
	accent-color: #071b68;
}

.jhc-crg-form-actions {
	margin-top: 0;
	padding: 2px 0 0;
}

.jhc-crg-homelessness-form .jhc-crg-primary-button {
	min-height: 50px;
	border-radius: 8px;
	background: #071b68;
	box-shadow: 0 10px 22px rgba(7, 27, 104, 0.16);
}

.jhc-crg-homelessness-form .jhc-crg-primary-button:hover,
.jhc-crg-homelessness-form .jhc-crg-primary-button:focus {
	background: #0998e6;
}

@media (max-width: 780px) {
	.jhc-crg-homelessness-hero {
		grid-template-columns: 1fr;
		padding: 2px 18px 20px;
	}

	.jhc-crg-homelessness-hero img {
		max-height: 190px;
	}

	.jhc-crg-homelessness-brand {
		padding: 18px;
	}

	.jhc-crg-homelessness-hero h2 {
		font-size: 2.3rem;
	}

	.jhc-crg-form-section {
		padding: 18px;
	}
}
