:root {
	--jm-fallback-primary: #176b68;
}

body.jm-app-body {
	margin: 0;
	background: #faf8f4;
	color: #243b3a;
	font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
	font-size: 16px;
	line-height: 1.75;
	-webkit-font-smoothing: antialiased;
}

.jm-app,
.jm-app *,
.jm-app *::before,
.jm-app *::after {
	box-sizing: border-box;
}

.jm-app {
	--jm-primary: var(--jm-fallback-primary);
	--jm-secondary: #e7f5f2;
	--jm-ink: #173533;
	--jm-muted: #5e7270;
	--jm-line: #dce8e6;
	--jm-soft: #f4f8f6;
	--jm-white: #fff;
	--jm-accent: #e98667;
	--jm-danger: #a33b3b;
	min-height: 100vh;
	background: #faf8f4;
	color: #243b3a;
}

.jm-app img {
	display: block;
	max-width: 100%;
	height: auto;
}

.jm-app svg {
	display: inline-block;
	width: 1.25em;
	height: 1.25em;
	vertical-align: -.2em;
	fill: currentColor;
}

.jm-app a {
	color: var(--jm-primary);
	text-decoration: none;
}

.jm-app a:hover {
	text-decoration: none;
}

.jm-app h1,
.jm-app h2,
.jm-app h3,
.jm-app h4,
.jm-app h5,
.jm-app h6 {
	margin-top: 0;
	color: var(--jm-ink) !important;
	background-color: transparent !important;
	font-family: inherit;
	font-weight: 750;
	letter-spacing: .01em;
	line-height: 1.38;
}

.jm-app h1 {
	font-size: clamp(2rem, 4.4vw, 3.65rem);
}

.jm-app h2 {
	font-size: clamp(1.55rem, 2.7vw, 2.15rem);
}

.jm-app h3 {
	font-size: 1.2rem;
}

.jm-app p {
	margin: 0 0 1em;
}

.jm-app button,
.jm-app input,
.jm-app select,
.jm-app textarea {
	font: inherit;
}

.jm-app button,
.jm-app summary {
	cursor: pointer;
}

.jm-app :focus-visible {
	outline: 3px solid #d39216;
	outline-offset: 3px;
}

.jm-skip-link {
	position: fixed;
	top: -100px;
	left: 16px;
	z-index: 100000;
	padding: 10px 16px;
	border-radius: 0 0 8px 8px;
	background: #fff;
	color: #153d3b;
	font-weight: 700;
}

.jm-skip-link:focus {
	top: 0;
}

.jm-shell {
	width: min(1160px, calc(100% - 40px));
	margin-inline: auto;
}

.jm-main {
	min-height: 55vh;
}

.jm-header {
	position: sticky;
	top: 0;
	z-index: 8000;
	border-bottom: 1px solid rgba(23, 107, 104, .14);
	background: rgba(255, 255, 255, .97);
	box-shadow: 0 4px 22px rgba(21, 61, 59, .06);
	backdrop-filter: blur(12px);
}

.admin-bar .jm-header {
	top: 32px;
}

.jm-header-inner {
	display: flex;
	align-items: center;
	min-height: 74px;
	gap: 24px;
}

.jm-brand {
	display: inline-flex;
	align-items: center;
	min-width: max-content;
	gap: 10px;
	color: var(--jm-ink) !important;
}

.jm-brand-mark {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border-radius: 14px 14px 14px 5px;
	background: var(--jm-primary);
	color: #fff;
	box-shadow: 0 5px 14px rgba(23, 107, 104, .2);
}

.jm-brand-mark svg {
	width: 25px;
	height: 25px;
}

.jm-brand-copy {
	display: flex;
	flex-direction: column;
	line-height: 1.25;
}

.jm-brand-copy strong {
	font-size: 1.12rem;
	letter-spacing: .025em;
}

.jm-brand-copy small {
	margin-top: 3px;
	color: var(--jm-muted);
	font-size: .68rem;
}

.jm-desktop-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	gap: 3px;
}

.jm-desktop-nav a {
	padding: 10px 9px;
	border-radius: 7px;
	color: #2c4846;
	font-size: .83rem;
	font-weight: 700;
	white-space: nowrap;
}

.jm-desktop-nav a:hover {
	background: var(--jm-secondary);
	color: var(--jm-primary);
}

.jm-header-actions {
	display: flex;
	align-items: center;
	gap: 4px;
}

.jm-header-guide {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 8px 14px;
	border-radius: 999px;
	background: #f4eee5;
	color: #4d5f5d !important;
	font-size: .76rem;
	font-weight: 700;
}

.jm-header-guide:hover {
	background: #f8dfd5;
	color: #7d3c28 !important;
}

.jm-icon-link {
	position: relative;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	min-width: 53px;
	height: 54px;
	border-radius: 8px;
	color: #375250 !important;
	font-size: .67rem;
	font-weight: 700;
}

.jm-icon-link svg {
	width: 20px;
	height: 20px;
	margin-bottom: 2px;
}

.jm-icon-link:hover {
	background: var(--jm-soft);
}

.jm-icon-link b,
.jm-mobile-nav b {
	position: absolute;
	display: grid;
	min-width: 18px;
	height: 18px;
	place-items: center;
	padding: 0 4px;
	border: 2px solid #fff;
	border-radius: 999px;
	background: #be5e3c;
	color: #fff;
	font-size: 10px;
	line-height: 1;
}

.jm-icon-link b {
	top: 1px;
	right: 3px;
}

.jm-mobile-nav {
	display: none;
}

.jm-eyebrow {
	margin: 0 0 8px !important;
	color: var(--jm-primary);
	font-size: .77rem;
	font-weight: 800;
	letter-spacing: .08em;
}

.jm-hero {
	position: relative;
	overflow: hidden;
	padding: 58px 0 64px;
	background:
		radial-gradient(circle at 12% 18%, rgba(255, 255, 255, .95) 0, rgba(255, 255, 255, 0) 30%),
		linear-gradient(135deg, #eef8f4 0%, #fffaf4 55%, #fbeee8 100%);
}

.jm-hero::after {
	position: absolute;
	right: -130px;
	bottom: -170px;
	width: 440px;
	height: 440px;
	border: 80px solid rgba(23, 107, 104, .045);
	border-radius: 50%;
	content: "";
}

.jm-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
	align-items: center;
	gap: 54px;
}

.jm-hero-copy h1 {
	max-width: 720px;
	margin-bottom: 24px;
	font-size: clamp(2.25rem, 4vw, 3.55rem);
	line-height: 1.3;
}

.jm-hero-copy h1 strong {
	display: block;
	color: var(--jm-primary);
}

.jm-hero-copy > p:not(.jm-eyebrow) {
	max-width: 600px;
	color: #445e5c;
	font-size: 1.08rem;
}

.jm-hero-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 24px;
}

.jm-hero-trust span {
	padding: 6px 11px;
	border: 1px solid rgba(23, 107, 104, .18);
	border-radius: 999px;
	background: rgba(255, 255, 255, .75);
	color: #365755;
	font-size: .8rem;
	font-weight: 700;
}

.jm-hero-visual {
	position: relative;
	margin: 28px 0 0;
	overflow: hidden;
	border: 6px solid rgba(255, 255, 255, .82);
	border-radius: 22px 22px 22px 8px;
	box-shadow: 0 18px 45px rgba(51, 78, 73, .13);
}

.jm-hero-visual img {
	width: 100%;
	aspect-ratio: 16 / 8;
	object-fit: cover;
	object-position: 56% center;
}

.jm-hero-visual figcaption {
	position: absolute;
	right: 12px;
	bottom: 12px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .9);
	color: #49615e;
	font-size: .7rem;
	font-weight: 700;
}

.jm-hero-search,
.jm-search-form {
	border: 1px solid rgba(23, 107, 104, .15);
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 20px 55px rgba(21, 61, 59, .12);
}

.jm-hero-search {
	padding: 28px;
}

.jm-hero-search h2 {
	margin-bottom: 18px;
	font-size: 1.22rem;
}

.jm-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.jm-field > span,
.jm-fieldset legend {
	color: #2b4846;
	font-size: .82rem;
	font-weight: 750;
}

.jm-field input,
.jm-field select {
	width: 100%;
	min-height: 48px;
	padding: 10px 40px 10px 13px;
	border: 1px solid #b9cdca;
	border-radius: 8px;
	background-color: #fff;
	color: #203b39;
}

.jm-field input:focus,
.jm-field select:focus {
	border-color: var(--jm-primary);
	box-shadow: 0 0 0 3px rgba(23, 107, 104, .12);
}

.jm-fieldset {
	min-width: 0;
	margin: 16px 0;
	padding: 0;
	border: 0;
}

.jm-choice-row,
.jm-quick-flags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.jm-choice-row label,
.jm-quick-flags label {
	position: relative;
	cursor: pointer;
}

.jm-choice-row input,
.jm-quick-flags input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.jm-choice-row span,
.jm-quick-flags span {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 7px 12px;
	border: 1px solid #c7d8d6;
	border-radius: 7px;
	background: #fff;
	color: #405a58;
	font-size: .82rem;
	font-weight: 700;
}

.jm-choice-row input:checked + span,
.jm-quick-flags input:checked + span {
	border-color: var(--jm-primary);
	background: var(--jm-secondary);
	color: var(--jm-primary);
	box-shadow: inset 0 0 0 1px var(--jm-primary);
}

.jm-choice-row input:focus-visible + span,
.jm-quick-flags input:focus-visible + span {
	outline: 3px solid #d39216;
	outline-offset: 2px;
}

.jm-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 10px 18px;
	border: 1px solid transparent;
	border-radius: 11px;
	font-size: .9rem;
	font-weight: 750;
	line-height: 1.25;
	text-align: center;
	transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.jm-button:hover {
	transform: translateY(-1px);
}

.jm-button svg {
	margin-right: 7px;
}

.jm-button-primary {
	border-color: var(--jm-primary);
	background: var(--jm-primary);
	color: #fff !important;
	box-shadow: 0 7px 16px rgba(23, 107, 104, .16);
}

.jm-button-primary:hover {
	background: #105855;
	box-shadow: 0 9px 21px rgba(23, 107, 104, .22);
}

.jm-button-secondary {
	border-color: #a9c4c1;
	background: #fff;
	color: var(--jm-primary) !important;
}

.jm-button-secondary:hover,
.jm-button-ghost:hover {
	border-color: var(--jm-primary);
	background: var(--jm-secondary);
}

.jm-button-ghost {
	border-color: #d3e0df;
	background: #fff;
	color: #385452;
}

.jm-button-ghost[aria-pressed="true"],
.jm-favorite-toggle[aria-pressed="true"] {
	border-color: var(--jm-primary);
	background: var(--jm-secondary);
	color: var(--jm-primary) !important;
}

.jm-button-light {
	border-color: rgba(255, 255, 255, .45);
	background: #fff;
	color: var(--jm-primary) !important;
}

.jm-button-block {
	width: 100%;
}

.jm-hero-search .jm-button {
	margin-top: 18px;
}

.jm-search-all-link {
	display: block;
	margin-top: 13px;
	font-size: .86rem;
	font-weight: 700;
	text-align: center;
	text-decoration: underline !important;
	text-underline-offset: 3px;
}

.jm-section {
	padding: 76px 0;
}

.jm-section-white {
	background: #fff;
}

.jm-section-soft {
	background: var(--jm-soft);
}

.jm-section-heading,
.jm-results-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 30px;
}

.jm-section-heading h2,
.jm-results-heading h2 {
	margin-bottom: 6px;
}

.jm-section-heading p:not(.jm-eyebrow),
.jm-results-heading p {
	margin-bottom: 0;
	color: var(--jm-muted);
}

.jm-text-link {
	display: inline-flex;
	align-items: center;
	font-size: .9rem;
	font-weight: 750;
	text-decoration: underline !important;
	text-underline-offset: 4px;
}

.jm-link-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.jm-link-card {
	display: grid;
	grid-template-columns: 42px 1fr;
	align-items: center;
	min-height: 98px;
	padding: 17px;
	border: 1px solid var(--jm-line);
	border-radius: 17px;
	background: #fff;
	color: var(--jm-ink) !important;
	box-shadow: 0 5px 16px rgba(21, 61, 59, .04);
	transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.jm-link-card:hover {
	transform: translateY(-2px);
	border-color: var(--jm-primary);
	box-shadow: 0 9px 22px rgba(21, 61, 59, .09);
}

.jm-link-card strong,
.jm-link-card small {
	grid-column: 2;
}

.jm-link-card small {
	color: var(--jm-muted);
	font-size: .74rem;
}

.jm-link-icon,
.jm-condition-icon {
	display: grid;
	width: 40px;
	height: 40px;
	grid-row: 1 / span 2;
	place-items: center;
	border-radius: 11px;
	background: var(--jm-secondary);
	color: var(--jm-primary);
}

.jm-condition-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.jm-condition-row > a {
	display: flex;
	min-height: 130px;
	flex-direction: column;
	justify-content: center;
	padding: 22px;
	border: 1px solid #d5e8e4;
	border-radius: 17px;
	background: #fff;
	box-shadow: 0 5px 16px rgba(21, 61, 59, .04);
}

.jm-condition-row > a:hover {
	border-color: var(--jm-primary);
	box-shadow: 0 10px 24px rgba(21, 61, 59, .09);
}

.jm-condition-row span {
	color: var(--jm-ink);
	font-weight: 750;
}

.jm-condition-row small {
	display: block;
	margin-top: 7px;
	color: var(--jm-muted);
	font-size: .78rem;
	line-height: 1.6;
}

.jm-service-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.jm-service-card {
	position: relative;
	display: flex;
	overflow: hidden;
	min-width: 0;
	flex-direction: column;
	border: 1px solid var(--jm-line);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 10px 28px rgba(38, 64, 60, .08);
	transition: transform .2s ease, box-shadow .2s ease;
}

.jm-service-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 36px rgba(38, 64, 60, .12);
}

.jm-card-image {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 3 / 2;
	background: linear-gradient(135deg, #e4f2ef, #f7f0df);
}

.jm-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s ease;
}

.jm-service-card:hover .jm-card-image img {
	transform: scale(1.025);
}

.jm-card-placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
	color: rgba(23, 107, 104, .45);
}

.jm-card-placeholder svg {
	width: 55px;
	height: 55px;
}

.jm-pr-label {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 2;
	padding: 3px 9px;
	border: 1px solid rgba(85, 59, 0, .18);
	border-radius: 5px;
	background: #f3c85b;
	color: #4c3600;
	font-size: .72rem;
	font-weight: 800;
	line-height: 1.4;
}

.jm-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 18px;
}

.jm-card-status {
	display: flex;
	justify-content: flex-end;
	min-height: 25px;
}

.jm-verification {
	display: inline-flex;
	width: fit-content;
	align-items: center;
	padding: 3px 8px;
	border: 1px solid #c8ded9;
	border-radius: 999px;
	background: #f2faf8;
	color: #245f5b;
	font-size: .68rem;
	font-weight: 750;
}

.jm-service-card h3 {
	margin: 8px 0;
	font-size: 1.18rem;
}

.jm-service-card h3 a {
	color: var(--jm-ink) !important;
}

.jm-service-card h3 a:hover {
	color: var(--jm-primary) !important;
}

.jm-card-description {
	display: -webkit-box;
	overflow: hidden;
	min-height: 4.7em;
	color: #536966;
	font-size: .86rem;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.jm-card-keyfacts {
	display: grid;
	grid-template-columns: 1fr 1.25fr;
	gap: 8px;
	margin: 4px 0 12px;
	padding: 12px;
	border-radius: 13px;
	background: var(--jm-soft);
}

.jm-card-keyfacts small,
.jm-card-keyfacts strong {
	display: block;
}

.jm-card-keyfacts small {
	color: var(--jm-muted);
	font-size: .67rem;
}

.jm-card-keyfacts strong {
	margin-top: 2px;
	color: var(--jm-ink);
	font-size: .82rem;
	line-height: 1.45;
}

.jm-tag-list,
.jm-qualification-list {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	gap: 6px;
	list-style: none;
}

.jm-tag-list li {
	padding: 3px 7px;
	border: 1px solid #d7e3e1;
	border-radius: 999px;
	background: #fdfefe;
	color: #506562;
	font-size: .68rem;
	font-weight: 650;
}

.jm-card-concerns {
	margin: 12px 0 14px !important;
	color: #5b716e;
	font-size: .75rem;
}

.jm-card-concerns span {
	display: block;
	color: #344e4c;
	font-weight: 750;
}

.jm-card-actions {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(118px, .72fr);
	margin-top: auto;
	gap: 7px;
}

.jm-card-actions .jm-button {
	min-width: 0;
	padding-inline: 10px;
}

.jm-card-actions .jm-button-ghost {
	width: auto;
	padding: 8px 10px;
}

.jm-card-actions .jm-button-ghost svg {
	width: 18px;
	height: 18px;
	margin-right: 5px;
}

.jm-service-card-selectable {
	padding-top: 0;
}

.jm-compare-select {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 5;
}

.jm-compare-select input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.jm-compare-select span {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: 7px 11px;
	border: 1px solid rgba(31, 78, 73, .22);
	border-radius: 999px;
	background: rgba(255, 255, 255, .94);
	color: #365552;
	font-size: .74rem;
	font-weight: 750;
	box-shadow: 0 4px 14px rgba(24, 55, 52, .12);
}

.jm-compare-select svg {
	margin-right: 5px;
}

.jm-compare-select input:checked + span {
	border-color: var(--jm-primary);
	background: var(--jm-primary);
	color: #fff;
}

.jm-compare-select input:focus-visible + span {
	outline: 3px solid #d39216;
	outline-offset: 2px;
}

.jm-empty-inline,
.jm-empty-state {
	padding: 42px;
	border: 1px dashed #b8cfcc;
	border-radius: 14px;
	background: var(--jm-soft);
	text-align: center;
}

.jm-empty-inline h3,
.jm-empty-state h2,
.jm-empty-state h3 {
	margin-bottom: 8px;
}

.jm-empty-inline p,
.jm-empty-state p {
	max-width: 660px;
	margin-right: auto;
	margin-left: auto;
	color: var(--jm-muted);
}

.jm-empty-state > svg {
	width: 52px;
	height: 52px;
	margin-bottom: 15px;
	color: #86aaa6;
}

.jm-section-guide {
	background: var(--jm-primary);
}

.jm-guide-callout {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.jm-guide-callout h2,
.jm-guide-callout p {
	color: #fff !important;
}

.jm-guide-callout .jm-eyebrow {
	color: #cfecea !important;
}

.jm-guide-callout > div {
	max-width: 740px;
}

.jm-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.jm-feature-card {
	overflow: hidden;
	border: 1px solid var(--jm-line);
	border-radius: 13px;
	background: #fff;
	box-shadow: 0 8px 22px rgba(21, 61, 59, .05);
}

.jm-feature-image {
	display: block;
	aspect-ratio: 16 / 9;
	background: linear-gradient(135deg, #dff1ed, #f9f3e6);
}

.jm-feature-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.jm-feature-image span {
	display: grid;
	height: 100%;
	place-items: center;
	color: rgba(23, 107, 104, .42);
}

.jm-feature-image svg {
	width: 52px;
	height: 52px;
}

.jm-feature-card > div {
	padding: 19px;
}

.jm-feature-card h3 a {
	color: var(--jm-ink) !important;
}

.jm-feature-card p:not(.jm-eyebrow) {
	color: var(--jm-muted);
	font-size: .86rem;
}

.jm-page-hero {
	padding: 52px 0 48px;
	border-bottom: 1px solid #dceae7;
	background: linear-gradient(135deg, #eef8f6 0%, #fbfcfb 68%, #fff7e8 100%);
}

.jm-page-hero h1 {
	max-width: 900px;
	margin-bottom: 16px;
	font-size: clamp(1.9rem, 3.8vw, 3rem);
}

.jm-page-hero .jm-shell > p:not(.jm-eyebrow) {
	max-width: 800px;
	margin-bottom: 0;
	color: #4f6663;
}

.jm-breadcrumb {
	display: flex;
	overflow: hidden;
	align-items: center;
	margin-bottom: 24px;
	gap: 8px;
	color: #6b7e7b;
	font-size: .75rem;
	white-space: nowrap;
}

.jm-breadcrumb a,
.jm-breadcrumb span:last-child {
	overflow: hidden;
	max-width: 55vw;
	text-overflow: ellipsis;
}

.jm-search-area {
	padding: 28px 0;
	border-bottom: 1px solid var(--jm-line);
	background: #f5f8f7;
}

.jm-search-form {
	padding: 22px;
	box-shadow: 0 9px 26px rgba(21, 61, 59, .06);
}

.jm-search-main {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1.4fr auto;
	align-items: end;
	gap: 14px;
}

.jm-search-main .jm-fieldset {
	margin: 0;
}

.jm-search-main .jm-quick-flags {
	grid-column: 1 / 4;
}

.jm-search-submit {
	grid-column: 4;
	grid-row: 1 / span 2;
	min-height: 52px;
}

.jm-search-details {
	margin-top: 16px;
	border-top: 1px solid var(--jm-line);
}

.jm-search-details summary {
	width: fit-content;
	padding: 13px 4px 0;
	color: var(--jm-primary);
	font-size: .85rem;
	font-weight: 750;
}

.jm-search-detail-grid {
	display: grid;
	grid-template-columns: 1fr 1.25fr 1fr;
	gap: 28px;
	padding-top: 17px;
}

.jm-check-stack {
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: .86rem;
}

.jm-check-stack label {
	display: flex;
	align-items: flex-start;
	gap: 7px;
}

.jm-check-stack input {
	width: 17px;
	height: 17px;
	margin-top: 4px;
	accent-color: var(--jm-primary);
}

.jm-check-scroll {
	max-height: 150px;
	overflow: auto;
	padding-right: 8px;
}

.jm-search-detail-grid .jm-field + .jm-field {
	margin-top: 14px;
}

.jm-active-filters {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 30px;
	gap: 7px;
}

.jm-active-filters > span {
	margin-right: 3px;
	color: var(--jm-muted);
	font-size: .78rem;
}

.jm-active-filters b {
	padding: 4px 9px;
	border: 1px solid #c9deda;
	border-radius: 999px;
	background: var(--jm-soft);
	color: #2d5a56;
	font-size: .73rem;
}

.jm-active-filters a {
	margin-left: 6px;
	font-size: .78rem;
	font-weight: 700;
	text-decoration: underline !important;
}

.jm-pr-section {
	margin-bottom: 58px;
	padding: 24px;
	border: 1px solid #ead6a6;
	border-radius: 14px;
	background: #fffaf0;
}

.jm-pr-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	gap: 20px;
}

.jm-pr-heading span {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 4px;
	background: #f3c85b;
	color: #4c3600;
	font-size: .7rem;
	font-weight: 800;
}

.jm-pr-heading h2 {
	margin: 6px 0 0;
	font-size: 1.3rem;
}

.jm-pr-heading > p {
	max-width: 430px;
	margin: 0;
	color: #71674e;
	font-size: .76rem;
	text-align: right;
}

.jm-service-grid-pr .jm-service-card {
	border-color: #e6d29f;
}

.jm-results-heading p strong {
	margin-right: 3px;
	color: var(--jm-primary);
	font-size: 1.5rem;
}

.jm-order-note {
	margin-top: -18px !important;
	margin-bottom: 26px !important;
	color: var(--jm-muted);
	font-size: .76rem;
}

.jm-pagination {
	display: flex;
	justify-content: center;
	margin-top: 42px;
	gap: 5px;
}

.jm-pagination .page-numbers {
	display: inline-grid;
	min-width: 42px;
	height: 42px;
	place-items: center;
	padding: 0 10px;
	border: 1px solid var(--jm-line);
	border-radius: 7px;
	background: #fff;
	color: #395552;
	font-size: .86rem;
	font-weight: 700;
}

.jm-pagination .page-numbers.current,
.jm-pagination .page-numbers:hover {
	border-color: var(--jm-primary);
	background: var(--jm-primary);
	color: #fff;
}

.jm-concern-list,
.jm-condition-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.jm-concern-list > a,
.jm-condition-list > a {
	display: grid;
	align-items: center;
	min-height: 112px;
	padding: 18px;
	border: 1px solid var(--jm-line);
	border-radius: 11px;
	background: #fff;
	color: var(--jm-ink) !important;
	box-shadow: 0 5px 16px rgba(21, 61, 59, .04);
}

.jm-concern-list > a {
	grid-template-columns: 44px 1fr;
	gap: 13px;
}

.jm-condition-list > a {
	grid-template-columns: 48px 1fr;
	gap: 15px;
}

.jm-concern-list > a:hover,
.jm-condition-list > a:hover {
	border-color: var(--jm-primary);
	box-shadow: 0 10px 24px rgba(21, 61, 59, .09);
}

.jm-concern-list strong,
.jm-condition-list strong {
	display: block;
}

.jm-concern-list small,
.jm-condition-list small {
	display: block;
	margin-top: 4px;
	color: var(--jm-muted);
	font-size: .78rem;
}

.jm-concern-list b {
	color: var(--jm-primary);
	font-size: .78rem;
}

.jm-page-callout {
	margin-top: 42px;
	padding: 30px;
	border-radius: 14px;
	background: var(--jm-soft);
}

.jm-page-callout h2 {
	margin-bottom: 9px;
	font-size: 1.35rem;
}

.jm-detail-hero,
.jm-profile-hero {
	padding: 32px 0 44px;
	border-bottom: 1px solid #dceae7;
	background: linear-gradient(135deg, #f0f8f6, #fff 62%, #fff8ea);
}

.jm-detail-hero-grid {
	display: grid;
	grid-template-columns: minmax(290px, .8fr) minmax(0, 1.2fr);
	align-items: center;
	gap: 36px;
}

.jm-detail-image {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--jm-line);
	border-radius: 15px;
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, #dfefec, #faf1dd);
	box-shadow: 0 14px 34px rgba(21, 61, 59, .09);
}

.jm-detail-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.jm-detail-image > span {
	display: grid;
	height: 100%;
	place-items: center;
	color: rgba(23, 107, 104, .43);
}

.jm-detail-image > span svg {
	width: 72px;
	height: 72px;
}

.jm-detail-title h1 {
	margin: 10px 0 16px;
	font-size: clamp(2rem, 4vw, 3.25rem);
}

.jm-detail-lead {
	max-width: 760px;
	color: #4b6562;
	font-size: 1.03rem;
}

.jm-detail-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 24px;
	gap: 9px;
}

.jm-detail-favorite-note {
	margin: 12px 0 0 !important;
	color: var(--jm-muted);
	font-size: .78rem;
}

.jm-detail-layout,
.jm-profile-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 310px;
	align-items: start;
	gap: 44px;
}

.jm-detail-main {
	min-width: 0;
}

.jm-detail-section + .jm-detail-section {
	margin-top: 52px;
}

.jm-detail-section > h2,
.jm-prose > h2,
.jm-prose section > h2 {
	margin-bottom: 23px;
	padding: 11px 15px;
	border-left: 5px solid var(--jm-primary);
	border-radius: 0 7px 7px 0;
	background: var(--jm-soft) !important;
	color: var(--jm-ink) !important;
	font-size: 1.5rem;
}

.jm-detail-section > h3,
.jm-prose > h3,
.jm-prose section > h3 {
	margin: 30px 0 13px;
	padding-bottom: 8px;
	border-bottom: 2px solid #dbe9e7;
	color: var(--jm-ink) !important;
	background: transparent !important;
}

.jm-prose {
	color: #314947;
}

.jm-prose p,
.jm-prose ul,
.jm-prose ol,
.jm-prose blockquote,
.jm-prose table {
	margin-bottom: 1.5em;
}

.jm-prose a {
	font-weight: 650;
	text-decoration: underline !important;
	text-underline-offset: 3px;
}

.jm-prose ul,
.jm-prose ol {
	padding-left: 1.5em;
}

.jm-prose blockquote {
	margin-left: 0;
	padding: 18px 20px;
	border-left: 4px solid var(--jm-primary);
	background: var(--jm-soft);
}

.jm-prose table {
	width: 100%;
	border-collapse: collapse;
}

.jm-prose th,
.jm-prose td {
	padding: 10px;
	border: 1px solid var(--jm-line);
	text-align: left;
}

.jm-prose th {
	background: var(--jm-soft);
	color: var(--jm-ink);
}

.jm-detail-list {
	margin: 0;
	border-top: 1px solid var(--jm-line);
}

.jm-detail-list > div {
	display: grid;
	grid-template-columns: 180px 1fr;
	border-bottom: 1px solid var(--jm-line);
}

.jm-detail-list dt,
.jm-detail-list dd {
	margin: 0;
	padding: 15px 17px;
}

.jm-detail-list dt {
	background: var(--jm-soft);
	color: #395451;
	font-size: .84rem;
	font-weight: 750;
}

.jm-detail-list dd {
	color: #2e4644;
}

.jm-detail-list dd span {
	display: block;
	margin-top: 3px;
	color: var(--jm-muted);
	font-size: .78rem;
}

.jm-feature-checks {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 9px;
}

.jm-feature-checks > div {
	display: flex;
	align-items: center;
	min-height: 48px;
	padding: 11px 13px;
	border: 1px solid var(--jm-line);
	border-radius: 8px;
	gap: 9px;
}

.jm-feature-checks .is-available {
	border-color: #bddbd5;
	background: #f0faf7;
	color: #225e59;
}

.jm-feature-checks .is-unavailable {
	background: #fafbfb;
	color: #8a9695;
}

.jm-feature-checks span {
	display: inline-flex;
	width: auto;
	min-width: 42px;
	height: 22px;
	align-items: center;
	justify-content: center;
	padding: 0 6px;
	border-radius: 999px;
	background: rgba(23, 107, 104, .1);
	font-size: .62rem;
	font-weight: 750;
}

.jm-small-note {
	margin-top: 13px !important;
	color: var(--jm-muted);
	font-size: .76rem;
}

.jm-tag-list-large li,
.jm-qualification-list li {
	padding: 6px 10px;
	font-size: .79rem;
}

.jm-qualification-list li {
	border: 1px solid #c5dbd7;
	border-radius: 6px;
	background: var(--jm-soft);
	color: #265c58;
	font-weight: 750;
}

.jm-detail-aside {
	position: sticky;
	top: 102px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.admin-bar .jm-detail-aside {
	top: 134px;
}

.jm-aside-panel,
.jm-aside-note {
	padding: 21px;
	border: 1px solid var(--jm-line);
	border-radius: 12px;
	background: #fff;
}

.jm-aside-panel {
	box-shadow: 0 8px 24px rgba(21, 61, 59, .06);
}

.jm-aside-panel h2,
.jm-aside-note h2 {
	margin-bottom: 15px;
	font-size: 1.05rem;
}

.jm-aside-panel dl {
	margin: 0 0 18px;
}

.jm-aside-panel dl > div {
	padding: 9px 0;
	border-bottom: 1px solid #e5edec;
}

.jm-aside-panel dt {
	color: var(--jm-muted);
	font-size: .69rem;
}

.jm-aside-panel dd {
	margin: 2px 0 0;
	color: var(--jm-ink);
	font-size: .85rem;
	font-weight: 650;
}

.jm-aside-note {
	background: #fffaf0;
	color: #635c4d;
	font-size: .78rem;
}

.jm-aside-note p:last-child {
	margin-bottom: 0;
}

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

.jm-counselor-card {
	display: grid;
	grid-template-columns: 92px 1fr;
	padding: 17px;
	border: 1px solid var(--jm-line);
	border-radius: 11px;
	background: #fff;
	gap: 16px;
}

.jm-counselor-grid-index {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.jm-counselor-grid-index .jm-counselor-card {
	grid-template-columns: 78px 1fr;
}

.jm-counselor-photo {
	display: block;
	overflow: hidden;
	width: 92px;
	height: 92px;
	border-radius: 50%;
	background: var(--jm-secondary);
}

.jm-counselor-grid-index .jm-counselor-photo {
	width: 78px;
	height: 78px;
}

.jm-counselor-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.jm-counselor-photo span {
	display: grid;
	height: 100%;
	place-items: center;
	color: var(--jm-primary);
	font-size: 1.8rem;
	font-weight: 800;
}

.jm-counselor-card h3 {
	margin-bottom: 3px;
}

.jm-counselor-card h3 a {
	color: var(--jm-ink) !important;
}

.jm-counselor-role,
.jm-counselor-qualifications {
	margin-bottom: 3px !important;
	color: var(--jm-primary);
	font-size: .71rem;
	font-weight: 750;
}

.jm-counselor-card > div > p:not(.jm-counselor-role):not(.jm-counselor-qualifications) {
	display: -webkit-box;
	overflow: hidden;
	margin-bottom: 7px;
	color: var(--jm-muted);
	font-size: .78rem;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.jm-profile-hero-grid {
	display: grid;
	grid-template-columns: 220px 1fr;
	align-items: center;
	gap: 38px;
}

.jm-profile-photo {
	overflow: hidden;
	width: 220px;
	height: 220px;
	border: 5px solid #fff;
	border-radius: 50%;
	background: var(--jm-secondary);
	box-shadow: 0 12px 32px rgba(21, 61, 59, .13);
}

.jm-profile-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.jm-profile-photo span {
	display: grid;
	height: 100%;
	place-items: center;
	color: var(--jm-primary);
	font-size: 4.4rem;
	font-weight: 800;
}

.jm-profile-role,
.jm-profile-experience {
	color: var(--jm-muted);
}

.jm-profile-role {
	margin-bottom: 4px !important;
	font-weight: 750;
}

.jm-profile-hero h1 {
	margin-bottom: 13px;
}

.jm-dynamic-loading {
	padding: 70px 20px;
	text-align: center;
}

.jm-dynamic-loading span {
	display: inline-block;
	width: 38px;
	height: 38px;
	border: 4px solid #d8e6e4;
	border-top-color: var(--jm-primary);
	border-radius: 50%;
	animation: jm-spin .8s linear infinite;
}

.jm-dynamic-loading p {
	margin-top: 12px;
	color: var(--jm-muted);
	font-size: .84rem;
}

@keyframes jm-spin {
	to { transform: rotate(360deg); }
}

.jm-favorites-actions {
	position: sticky;
	bottom: 18px;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 32px;
	padding: 20px;
	border: 1px solid #c9ddd8;
	border-radius: 16px;
	background: rgba(255, 255, 255, .96);
	box-shadow: 0 12px 35px rgba(25, 69, 65, .16);
	gap: 20px;
}

.jm-favorites-actions p {
	margin: 0;
	color: var(--jm-muted);
	font-size: .76rem;
}

.jm-favorites-actions strong {
	display: block;
	margin-bottom: 3px;
	color: var(--jm-ink);
}

.jm-favorites-actions .jm-button:disabled {
	border-color: #b9c7c4;
	background: #b9c7c4;
	box-shadow: none;
	cursor: not-allowed;
	transform: none;
}

.jm-favorite-howto {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 16px;
	margin-bottom: 26px;
	padding: 16px 18px;
	border-radius: 15px;
	background: #fff4ee;
	color: #536764;
}

.jm-favorite-howto strong {
	padding: 5px 10px;
	border-radius: 999px;
	background: #e98667;
	color: #fff;
	font-size: .78rem;
}

.jm-favorite-howto p,
.jm-browser-storage-note {
	margin: 0;
	font-size: .8rem;
}

.jm-browser-storage-note {
	margin-top: 22px;
	color: var(--jm-muted);
	text-align: center;
}

.jm-compare-back {
	margin-bottom: 24px;
}

.jm-compare-services {
	display: grid;
	grid-template-columns: repeat(var(--jm-compare-count), minmax(0, 1fr));
	gap: 14px;
	margin-bottom: 28px;
}

.jm-compare-service-head {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--jm-line);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 7px 20px rgba(21, 61, 59, .05);
}

.jm-compare-service-head img,
.jm-compare-service-placeholder {
	width: 100%;
	aspect-ratio: 16 / 8;
	object-fit: cover;
	background: var(--jm-secondary);
}

.jm-compare-service-placeholder {
	display: grid;
	place-items: center;
	color: var(--jm-primary);
}

.jm-compare-service-head > div {
	padding: 14px;
}

.jm-compare-service-head h2 {
	margin-bottom: 8px;
	font-size: 1rem;
}

.jm-compare-service-head h2 a {
	color: var(--jm-ink) !important;
}

.jm-compare-remove {
	position: absolute;
	top: 8px;
	right: 8px;
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border: 1px solid #cddbd9;
	border-radius: 50%;
	background: rgba(255, 255, 255, .95);
	color: #4a6260;
	font-weight: 800;
}

.jm-compare-rows {
	border: 1px solid var(--jm-line);
	border-radius: 12px;
	background: #fff;
}

.jm-compare-row {
	display: grid;
	grid-template-columns: 155px repeat(var(--jm-compare-count), minmax(0, 1fr));
	border-bottom: 1px solid var(--jm-line);
}

.jm-compare-row:last-child {
	border-bottom: 0;
}

.jm-compare-label,
.jm-compare-value {
	padding: 14px;
}

.jm-compare-label {
	background: var(--jm-soft);
	color: #37524f;
	font-size: .78rem;
	font-weight: 750;
}

.jm-compare-value {
	border-left: 1px solid var(--jm-line);
	color: #304a47;
	font-size: .84rem;
}

.jm-compare-value strong {
	color: var(--jm-primary);
}

.jm-compare-help {
	margin-top: 36px;
	padding: 25px;
	border-radius: 12px;
	background: var(--jm-soft);
}

.jm-compare-help h2 {
	margin-bottom: 8px;
	font-size: 1.2rem;
}

.jm-article-header {
	padding: 52px 0 0;
	background: linear-gradient(135deg, #eef8f6, #fff 62%, #fff7e8);
}

.jm-article-shell {
	max-width: 880px;
}

.jm-article-header h1 {
	margin-bottom: 16px;
	font-size: clamp(2rem, 4vw, 3.2rem);
}

.jm-article-lead {
	color: #506965;
	font-size: 1.05rem;
}

.jm-article-date {
	color: var(--jm-muted);
	font-size: .77rem;
}

.jm-article-image {
	overflow: hidden;
	margin-top: 32px;
	border-radius: 15px;
	box-shadow: 0 15px 36px rgba(21, 61, 59, .1);
}

.jm-article-image img {
	width: 100%;
}

.jm-article-content {
	padding: 64px 0;
}

.jm-article-back {
	display: flex;
	justify-content: center;
	padding: 0 0 70px;
	gap: 10px;
}

.jm-guide-page > .jm-article-shell {
	padding-top: 50px;
	padding-bottom: 70px;
}

.jm-guide-index {
	margin-bottom: 50px;
	padding: 25px 28px;
	border: 1px solid var(--jm-line);
	border-radius: 12px;
	background: var(--jm-soft);
}

.jm-guide-index h2 {
	margin-bottom: 12px;
	font-size: 1.15rem;
}

.jm-guide-index ol {
	margin: 0;
	padding-left: 1.35em;
}

.jm-guide-index a {
	font-weight: 650;
	text-decoration: underline !important;
}

.jm-guide-content section {
	padding-top: 12px;
	margin-bottom: 50px;
	scroll-margin-top: 110px;
}

.jm-safety-box {
	margin-bottom: 20px;
	padding: 21px;
	border: 2px solid #d4a6a6;
	border-radius: 10px;
	background: #fff7f7;
}

.jm-safety-box h3 {
	margin-top: 0 !important;
	border-color: #d4a6a6 !important;
	color: #713434 !important;
}

.jm-reference-links {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 0 !important;
	gap: 8px 16px;
}

.jm-reference-links a {
	font-size: .76rem;
}

.jm-guide-next {
	padding: 31px;
	border-radius: 14px;
	background: var(--jm-primary);
	text-align: center;
}

.jm-guide-next h2,
.jm-guide-next p {
	color: #fff !important;
}

.jm-guide-next .jm-button {
	border-color: #fff;
	background: #fff;
	color: var(--jm-primary) !important;
}

.jm-not-found {
	margin: 50px auto;
}

.jm-not-found h1 {
	font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.jm-not-found > div {
	display: flex;
	justify-content: center;
	gap: 9px;
}

.jm-footer {
	padding: 55px 0 20px;
	background: #123e3b;
	color: #d8e8e6;
}

.jm-footer-grid {
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	gap: 60px;
}

.jm-brand-footer,
.jm-brand-footer .jm-brand-copy strong {
	color: #fff !important;
}

.jm-brand-footer .jm-brand-mark {
	background: #fff;
	color: var(--jm-primary);
}

.jm-brand-footer .jm-brand-copy small {
	color: #bdd5d2;
}

.jm-footer-operator {
	margin: 18px 0 6px !important;
	font-size: .86rem;
	font-weight: 700;
}

.jm-footer-note {
	max-width: 600px;
	color: #aac5c1;
	font-size: .75rem;
}

.jm-footer-links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.jm-footer-links h2 {
	margin-bottom: 13px;
	color: #fff !important;
	font-size: .9rem;
}

.jm-footer-links a {
	display: block;
	margin-bottom: 8px;
	color: #c7dcda;
	font-size: .78rem;
}

.jm-footer-links a:hover {
	color: #fff;
	text-decoration: underline;
}

.jm-footer-bottom {
	margin-top: 38px;
	padding-top: 17px;
	border-top: 1px solid rgba(255, 255, 255, .12);
	color: #9dbbb7;
	font-size: .7rem;
}

.jm-footer-bottom p {
	margin: 0;
}

.jm-live-region {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 9000;
	max-width: min(360px, calc(100vw - 36px));
	padding: 11px 16px;
	border-radius: 8px;
	background: #163e3c;
	color: #fff;
	font-size: .82rem;
	box-shadow: 0 8px 26px rgba(0, 0, 0, .2);
	opacity: 0;
	transform: translateY(12px);
	pointer-events: none;
	transition: opacity .2s ease, transform .2s ease;
}

.jm-live-region.is-visible {
	opacity: 1;
	transform: none;
}

@media (max-width: 1080px) {
	.jm-desktop-nav {
		display: none;
	}

	.jm-header-actions {
		margin-left: auto;
	}

	.jm-service-grid,
	.jm-counselor-grid-index {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.jm-hero-grid,
	.jm-detail-hero-grid,
	.jm-detail-layout,
	.jm-profile-layout,
	.jm-footer-grid {
		grid-template-columns: 1fr;
	}

	.jm-hero-grid {
		gap: 38px;
	}

	.jm-search-main {
		grid-template-columns: 1fr 1fr;
	}

	.jm-search-main .jm-fieldset,
	.jm-search-main .jm-quick-flags,
	.jm-search-submit {
		grid-column: auto;
		grid-row: auto;
	}

	.jm-search-main .jm-quick-flags {
		align-self: end;
		padding-bottom: 4px;
	}

	.jm-search-submit {
		grid-column: 2;
	}

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

	.jm-link-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.jm-condition-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.jm-detail-aside {
		position: static;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.jm-counselor-grid {
		grid-template-columns: 1fr;
	}

	.jm-footer-grid {
		gap: 35px;
	}
}

@media (max-width: 700px) {
	body.jm-app-body {
		padding-bottom: 66px;
		font-size: 15px;
	}

	.admin-bar .jm-header {
		top: 46px;
	}

	.jm-shell {
		width: min(100% - 28px, 1160px);
	}

	.jm-header-inner {
		min-height: 62px;
	}

	.jm-brand-mark {
		width: 36px;
		height: 36px;
		border-radius: 11px 11px 11px 4px;
	}

	.jm-brand-copy strong {
		font-size: 1rem;
	}

	.jm-brand-copy small,
	.jm-header-actions {
		display: none;
	}

	.jm-mobile-nav {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 8500;
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		min-height: 66px;
		padding-bottom: env(safe-area-inset-bottom);
		border-top: 1px solid #cbdcda;
		background: rgba(255, 255, 255, .98);
		box-shadow: 0 -5px 22px rgba(21, 61, 59, .09);
	}

	.jm-mobile-nav a {
		position: relative;
		display: flex;
		align-items: center;
		flex-direction: column;
		justify-content: center;
		color: #647774;
		font-size: .65rem;
		font-weight: 700;
	}

	.jm-mobile-nav a[aria-current="page"] {
		color: var(--jm-primary);
	}

	.jm-mobile-nav svg {
		width: 22px;
		height: 22px;
		margin-bottom: 2px;
	}

	.jm-mobile-nav b {
		top: 5px;
		right: calc(50% - 24px);
	}

	.jm-live-region {
		right: 12px;
		bottom: 78px;
		left: 12px;
		max-width: none;
	}

	.jm-hero {
		padding: 45px 0 50px;
	}

	.jm-hero-copy h1,
	.jm-page-hero h1,
	.jm-detail-title h1 {
		font-size: 2rem;
	}

	.jm-hero-search {
		padding: 20px;
	}

	.jm-hero-visual {
		border-width: 4px;
		border-radius: 17px 17px 17px 7px;
	}

	.jm-hero-visual figcaption {
		display: none;
	}

	.jm-section {
		padding: 52px 0;
	}

	.jm-section-heading,
	.jm-results-heading,
	.jm-pr-heading,
	.jm-guide-callout,
	.jm-favorites-actions {
		align-items: flex-start;
		flex-direction: column;
	}

	.jm-favorites-actions {
		bottom: 78px;
	}

	.jm-favorite-howto {
		grid-template-columns: 1fr;
		gap: 9px;
	}

	.jm-pr-heading > p {
		text-align: left;
	}

	.jm-link-grid,
	.jm-condition-row,
	.jm-service-grid,
	.jm-feature-grid,
	.jm-concern-list,
	.jm-condition-list,
	.jm-counselor-grid-index,
	.jm-search-main,
	.jm-search-detail-grid,
	.jm-detail-aside {
		grid-template-columns: 1fr;
	}

	.jm-search-main .jm-fieldset,
	.jm-search-main .jm-quick-flags,
	.jm-search-submit {
		grid-column: 1;
	}

	.jm-search-form {
		padding: 16px;
		border-radius: 12px;
	}

	.jm-search-main {
		gap: 17px;
	}

	.jm-pr-section {
		padding: 16px;
	}

	.jm-card-description {
		min-height: 0;
	}

	.jm-page-hero {
		padding: 36px 0 34px;
	}

	.jm-breadcrumb {
		margin-bottom: 18px;
	}

	.jm-detail-hero-grid {
		gap: 24px;
	}

	.jm-detail-actions .jm-button {
		width: 100%;
	}

	.jm-detail-list > div {
		grid-template-columns: 1fr;
	}

	.jm-detail-list dt {
		padding-bottom: 6px;
	}

	.jm-detail-list dd {
		padding-top: 7px;
	}

	.jm-feature-checks {
		grid-template-columns: 1fr;
	}

	.jm-profile-hero-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.jm-profile-photo {
		width: 160px;
		height: 160px;
		margin: auto;
	}

	.jm-profile-hero .jm-qualification-list {
		justify-content: center;
	}

	.jm-counselor-card,
	.jm-counselor-grid-index .jm-counselor-card {
		grid-template-columns: 70px 1fr;
	}

	.jm-counselor-photo,
	.jm-counselor-grid-index .jm-counselor-photo {
		width: 70px;
		height: 70px;
	}

	.jm-empty-inline,
	.jm-empty-state {
		padding: 31px 18px;
	}

	.jm-compare-services {
		display: flex;
		overflow-x: auto;
		padding: 3px 2px 10px;
		scroll-snap-type: x mandatory;
	}

	.jm-compare-service-head {
		min-width: min(78vw, 300px);
		scroll-snap-align: start;
	}

	.jm-compare-rows {
		border: 0;
		background: transparent;
	}

	.jm-compare-row {
		display: block;
		margin-bottom: 13px;
		border: 1px solid var(--jm-line);
		border-radius: 9px;
		background: #fff;
	}

	.jm-compare-label {
		display: block;
		border-radius: 8px 8px 0 0;
	}

	.jm-compare-value {
		display: grid;
		grid-template-columns: minmax(100px, 38%) 1fr;
		border-top: 1px solid var(--jm-line);
		border-left: 0;
		gap: 9px;
	}

	.jm-compare-value::before {
		color: var(--jm-muted);
		font-size: .72rem;
		font-weight: 700;
		content: attr(data-service-title);
	}

	.jm-article-header {
		padding-top: 36px;
	}

	.jm-article-content {
		padding: 48px 0;
	}

	.jm-article-back,
	.jm-not-found > div {
		flex-direction: column;
	}

	.jm-article-back .jm-button,
	.jm-not-found .jm-button {
		width: 100%;
	}

	.jm-guide-index,
	.jm-guide-next {
		padding: 22px;
	}

	.jm-footer {
		padding-bottom: 25px;
	}

	.jm-footer-links {
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.jm-app *,
	.jm-app *::before,
	.jm-app *::after {
		scroll-behavior: auto !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
}
