:root {
	--ink: #261b2d;
	--muted: #746878;
	--plum: #6f3f72;
	--rose: #d8669a;
	--iris: #8170bb;
	--mint: #3f8f83;
	--mint-soft: #e8f5f1;
	--amber: #a66c27;
	--amber-soft: #fff4df;
	--paper: #fff9fc;
	--lavender: #f5f1fa;
	--white: #ffffff;
	--border: #e8d8e9;
	--content: 1120px;
	--reading: 760px;
	--focus: #26776d;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 84px;
	letter-spacing: 0;
}

body {
	margin: 0;
	min-width: 280px;
	overflow-x: clip;
	background: var(--white);
	color: var(--ink);
	font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic UI", "Yu Gothic", Meiryo, sans-serif;
	font-size: 16px;
	line-height: 1.8;
	letter-spacing: 0;
	-webkit-font-smoothing: antialiased;
}

img,
svg {
	display: block;
	max-width: 100%;
}

a {
	color: var(--plum);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
}

a:hover {
	color: #4e2752;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
	outline: 3px solid var(--focus);
	outline-offset: 3px;
}

button,
input,
select,
textarea {
	font: inherit;
}

h1,
h2,
h3,
p,
li,
summary,
figcaption {
	overflow-wrap: anywhere;
}

h1,
h2,
h3 {
	margin-top: 0;
	line-height: 1.35;
	letter-spacing: 0;
}

h1 {
	font-size: 48px;
}

h2 {
	font-size: 30px;
}

h3 {
	font-size: 21px;
}

p {
	margin-top: 0;
}

.section-inner,
.article-width {
	width: min(100% - 36px, var(--content));
	margin-inline: auto;
}

.reading-width,
.article-width {
	max-width: var(--reading);
}

.section {
	padding-block: 64px;
}

.section--lavender {
	background: var(--lavender);
}

.section-heading {
	margin-bottom: 28px;
}

.section-heading h2 {
	margin-bottom: 0;
}

.section-heading--row {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
}

.eyebrow {
	margin-bottom: 8px;
	color: var(--rose);
	font-size: 14px;
	font-weight: 800;
}

.eyebrow--mint {
	color: var(--mint);
}

.eyebrow--amber {
	color: var(--amber);
}

.text-link {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	font-weight: 700;
}

.visually-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.skip-link {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 1000;
	min-height: 44px;
	padding: 9px 16px;
	transform: translateY(-140%);
	background: var(--ink);
	color: var(--white);
	font-weight: 700;
}

.skip-link:focus {
	transform: translateY(0);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid var(--border);
	background: rgba(255, 255, 255, 0.96);
}

.site-header__inner {
	position: relative;
	display: flex;
	width: min(100% - 32px, var(--content));
	min-height: 68px;
	margin-inline: auto;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.site-brand {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	color: var(--ink);
	font-size: 22px;
	font-weight: 850;
	text-decoration: none;
}

.site-brand::after {
	width: 8px;
	height: 8px;
	margin: 2px 0 0 7px;
	border-radius: 50%;
	background: var(--rose);
	content: "";
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 6px;
}

.site-nav a {
	display: inline-flex;
	min-height: 44px;
	padding-inline: 12px;
	align-items: center;
	color: var(--ink);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.site-nav a:hover {
	color: var(--plum);
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 10px;
	align-items: center;
	justify-content: center;
	border: 0;
	background: transparent;
	color: var(--ink);
	cursor: pointer;
}

.nav-toggle__icon {
	display: grid;
	width: 22px;
	gap: 5px;
}

.nav-toggle__icon span {
	display: block;
	height: 2px;
	background: currentColor;
}

.ailog-hero {
	position: relative;
	isolation: isolate;
	display: block;
	min-height: min(720px, calc(100svh - 108px));
	overflow: hidden;
	background-color: var(--paper);
	background-image: url("../onboarding-hero.webp");
	background-position: center;
	background-size: cover;
}

.ailog-hero::before {
	position: absolute;
	z-index: -1;
	inset: 0;
	background: linear-gradient(90deg, rgba(255, 249, 252, 0.98) 0%, rgba(255, 249, 252, 0.94) 44%, rgba(255, 249, 252, 0.68) 66%, rgba(255, 249, 252, 0.38) 100%);
	content: "";
}

.ailog-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	min-height: inherit;
	padding-block: 58px;
	align-items: center;
}

.ailog-hero__copy {
	position: relative;
	z-index: 2;
	max-width: 650px;
}

.ailog-hero h1 {
	margin-bottom: 12px;
	font-size: 64px;
	font-weight: 850;
}

.ailog-hero__support {
	max-width: 620px;
	margin-bottom: 18px;
	font-size: 21px;
	font-weight: 650;
	line-height: 1.7;
}

.ailog-hero__outcomes {
	display: grid;
	padding: 0;
	margin: 0 0 22px;
	gap: 5px;
	list-style: none;
}

.ailog-hero__outcomes li {
	position: relative;
	padding-left: 25px;
	font-size: 15px;
	font-weight: 750;
}

.ailog-hero__outcomes li::before {
	position: absolute;
	top: 0.75em;
	left: 2px;
	width: 10px;
	height: 10px;
	border: 2px solid var(--white);
	border-radius: 50%;
	background: var(--rose);
	box-shadow: 0 0 0 1px rgba(111, 63, 114, 0.18);
	content: "";
	transform: translateY(-50%);
}

.ailog-hero__outcomes li:nth-child(2)::before {
	background: var(--iris);
}

.ailog-hero__outcomes li:nth-child(3)::before {
	background: var(--mint);
}

.ailog-hero__visual {
	position: absolute;
	top: 0;
	right: -18px;
	bottom: 0;
	width: 500px;
	pointer-events: none;
}

.hero-phone {
	position: absolute;
	padding: 7px;
	border: 1px solid rgba(255, 255, 255, 0.62);
	border-radius: 40px;
	background: #211827;
	box-shadow: 0 30px 70px rgba(63, 31, 69, 0.24);
}

.hero-phone img {
	width: 100%;
	height: auto;
	border-radius: 32px;
	object-fit: contain;
}

.hero-phone--report {
	right: 0;
	bottom: -185px;
	width: 310px;
	transform: rotate(2deg);
}

.hero-phone--coach {
	right: 270px;
	bottom: -238px;
	width: 226px;
	opacity: 0.92;
	transform: rotate(-5deg);
}

.hero-screen-link {
	display: inline-flex;
	min-height: 60px;
	margin-left: 16px;
	align-items: center;
	font-size: 14px;
	font-weight: 750;
}

.app-store-link {
	display: inline-flex;
	min-width: 176px;
	min-height: 60px;
	align-items: center;
	justify-content: center;
}

.app-store-link img {
	width: 174px;
	height: auto;
}

.app-store-link--hero {
	justify-content: flex-start;
}

.app-store-action {
	display: inline-flex;
	align-items: center;
	flex-direction: column;
	gap: 2px;
}

.app-store-action--hero {
	align-items: flex-start;
}

.app-store-age {
	margin: 0;
	color: var(--muted);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.5;
}

.intro-section {
	padding-top: 54px;
}

.intro-section__inner {
	display: grid;
	gap: 28px;
}

.intro-section__heading h2 {
	margin-bottom: 0;
}

.intro-section__copy p {
	font-size: 18px;
	line-height: 2;
}

.intro-section__copy p:last-child {
	margin-bottom: 0;
}

.feature-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.feature-card {
	padding: 24px;
	border: 1px solid var(--border);
	border-radius: 8px;
	background: var(--white);
}

.feature-card__number {
	margin-bottom: 14px !important;
	color: var(--rose) !important;
	font-size: 13px;
	font-weight: 850;
}

.feature-card:nth-child(3n + 2) .feature-card__number {
	color: var(--iris) !important;
}

.feature-card:nth-child(3n) .feature-card__number {
	color: var(--mint) !important;
}

.feature-card h3 {
	margin-bottom: 10px;
}

.feature-card p {
	margin-bottom: 0;
	color: var(--muted);
}

.section-heading__support {
	max-width: 720px;
	margin: 12px 0 0;
	color: var(--muted);
}

.product-tour {
	border-top: 1px solid var(--border);
}

.product-step {
	display: grid;
	padding-block: 58px;
	align-items: center;
	border-bottom: 1px solid var(--border);
	gap: 34px;
}

.product-step__copy {
	max-width: 520px;
}

.product-step__number {
	margin-bottom: 10px;
	color: var(--rose);
	font-size: 13px;
	font-weight: 850;
}

.product-step:nth-child(2) .product-step__number {
	color: var(--iris);
}

.product-step:nth-child(3) .product-step__number {
	color: var(--mint);
}

.product-step__copy h3 {
	margin-bottom: 14px;
	font-size: 28px;
}

.product-step__copy > p:last-child {
	margin-bottom: 0;
	color: var(--muted);
	font-size: 17px;
	line-height: 2;
}

.device-figure {
	width: 100%;
	margin: 0;
	text-align: center;
}

.device-shot {
	width: min(78vw, 310px);
	padding: 7px;
	margin-inline: auto;
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 42px;
	background: #211827;
	box-shadow: 0 22px 54px rgba(38, 27, 45, 0.18);
}

.device-shot img {
	width: 100%;
	height: auto;
	max-width: none;
	border-radius: 33px;
	object-fit: contain;
}

.device-figure figcaption {
	margin-top: 14px;
	color: var(--muted);
	font-size: 14px;
	font-weight: 700;
	text-align: center;
}

.step-list {
	display: grid;
	padding: 0;
	margin: 0;
	counter-reset: steps;
	gap: 0;
	list-style: none;
}

.step-list li {
	position: relative;
	padding: 24px 0 24px 62px;
	border-top: 1px solid var(--border);
	counter-increment: steps;
}

.step-list li:last-child {
	border-bottom: 1px solid var(--border);
}

.step-list li::before {
	position: absolute;
	top: 23px;
	left: 0;
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border-radius: 50%;
	background: var(--plum);
	color: var(--white);
	content: counter(steps);
	font-weight: 800;
}

.step-list h3 {
	margin-bottom: 6px;
}

.step-list p {
	margin-bottom: 0;
	color: var(--muted);
}

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

.limits-section__inner {
	display: grid;
	gap: 24px;
}

.limits-section h2 {
	margin-bottom: 0;
}

.check-list,
.plain-list,
.article-bullets {
	padding: 0;
	margin: 0;
	list-style: none;
}

.check-list li,
.plain-list li,
.article-bullets li {
	position: relative;
	padding: 8px 0 8px 32px;
}

.check-list li::before,
.article-bullets li::before {
	position: absolute;
	top: 15px;
	left: 4px;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: var(--mint);
	content: "";
}

.check-list--amber li::before {
	background: var(--amber);
}

.plain-list li::before {
	position: absolute;
	top: 18px;
	left: 6px;
	width: 12px;
	height: 2px;
	background: var(--muted);
	content: "";
}

.fit-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.fit-panel {
	padding: 24px;
	border: 1px solid var(--border);
	border-radius: 8px;
	background: var(--white);
}

.fit-panel--good {
	border-top: 4px solid var(--mint);
}

.fit-panel--not-good {
	border-top: 4px solid var(--amber);
}

.fit-panel h3 {
	margin-bottom: 12px;
}

.faq-list {
	display: grid;
	gap: 12px;
}

.faq-list details {
	border: 1px solid var(--border);
	border-radius: 8px;
	background: var(--white);
}

.faq-list summary {
	position: relative;
	display: flex;
	min-height: 60px;
	padding: 16px 54px 16px 20px;
	align-items: center;
	cursor: pointer;
	font-weight: 750;
	list-style: none;
}

.faq-list summary::-webkit-details-marker {
	display: none;
}

.faq-list summary::after {
	position: absolute;
	top: 50%;
	right: 20px;
	color: var(--plum);
	content: "+";
	font-size: 24px;
	font-weight: 500;
	transform: translateY(-50%);
}

.faq-list details[open] summary::after {
	content: "−";
}

.faq-list details p {
	padding: 0 20px 20px;
	margin-bottom: 0;
	color: var(--muted);
}

.article-card-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.article-card {
	padding: 22px;
	border: 1px solid var(--border);
	border-radius: 8px;
	background: var(--white);
}

.article-card h3 {
	margin-bottom: 10px;
	font-size: 18px;
}

.article-card h3 a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	color: var(--ink);
	text-decoration-color: var(--rose);
}

.article-card p {
	margin-bottom: 0;
	color: var(--muted);
	font-size: 15px;
}

.app-cta {
	padding-block: 54px;
	background: var(--plum);
	color: var(--white);
}

.app-cta__inner {
	display: grid;
	align-items: center;
	gap: 24px;
}

.app-cta__copy {
	max-width: 720px;
}

.app-cta h2 {
	margin-bottom: 10px;
}

.app-cta p {
	margin-bottom: 0;
	color: #fff7fc;
}

.app-cta .app-store-link:focus-visible {
	outline-color: var(--white);
}

.app-cta .app-store-age {
	color: #fff7fc;
}

.preflight {
	padding-block: 32px;
	border-bottom: 1px solid #cfe6df;
	background: var(--mint-soft);
}

.preflight__inner {
	display: grid;
	gap: 8px;
}

.preflight h2 {
	margin-bottom: 0;
	font-size: 18px;
}

.preflight__copy {
	display: grid;
	min-width: 0;
	gap: 8px;
}

.preflight p {
	margin-bottom: 0;
	color: #415d58;
	font-size: 14px;
}

.preflight a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	font-size: 14px;
	font-weight: 700;
}

.site-footer {
	padding-block: 42px;
	background: var(--ink);
	color: #f9edf7;
}

.site-footer__inner {
	display: grid;
	gap: 20px;
}

.site-footer__brand {
	font-size: 24px;
	font-weight: 850;
}

.site-footer__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 18px;
}

.site-footer__nav a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	color: var(--white);
}

.trademark-credit,
.site-footer__copyright {
	max-width: 900px;
	margin-bottom: 0;
	color: #d8c9d7;
	font-size: 12px;
}

.empty-state {
	min-height: 60svh;
	padding-block: 80px;
}

.empty-state__inner {
	padding: 32px;
	border-left: 4px solid var(--amber);
	background: var(--amber-soft);
}

.empty-state__inner h1,
.empty-state__inner h2 {
	margin-bottom: 12px;
}

.archive-hero {
	padding-block: 64px;
	border-bottom: 1px solid var(--border);
	background: var(--paper);
}

.archive-hero__inner {
	max-width: 820px;
}

.archive-hero h1 {
	margin-bottom: 16px;
}

.archive-hero p:last-child {
	max-width: 700px;
	margin-bottom: 0;
	color: var(--muted);
	font-size: 18px;
}

.article-list-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}

.archive-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	justify-content: space-between;
	border: 1px solid var(--border);
	border-radius: 8px;
	background: var(--white);
}

.archive-card__body {
	padding: 24px 24px 6px;
}

.archive-card__label {
	margin-bottom: 8px;
	color: var(--mint);
	font-size: 13px;
	font-weight: 800;
}

.archive-card h2 {
	margin-bottom: 12px;
	font-size: 22px;
}

.archive-card h2 a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	color: var(--ink);
	text-decoration-color: var(--rose);
}

.archive-card__body > p:last-child {
	margin-bottom: 0;
	color: var(--muted);
}

.archive-card__link {
	display: inline-flex;
	min-height: 52px;
	padding: 8px 24px;
	align-items: center;
	font-weight: 750;
}

.article-header {
	padding-block: 34px 48px;
	border-bottom: 1px solid var(--border);
	background: var(--paper);
}

.breadcrumbs {
	margin-bottom: 32px;
}

.breadcrumbs ol {
	display: flex;
	padding: 0;
	margin: 0;
	flex-wrap: wrap;
	gap: 4px 10px;
	list-style: none;
}

.breadcrumbs li {
	color: var(--muted);
	font-size: 13px;
}

.breadcrumbs li:not(:last-child)::after {
	margin-left: 10px;
	color: #aa9baa;
	content: "/";
}

.breadcrumbs a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
}

.article-header h1 {
	margin-bottom: 20px;
	font-size: 36px;
}

.article-byline {
	display: flex;
	margin-bottom: 26px;
	flex-wrap: wrap;
	gap: 6px 18px;
	color: var(--muted);
	font-size: 13px;
}

.article-lead p {
	font-size: 18px;
	line-height: 2;
}

.article-lead p:last-child {
	margin-bottom: 0;
}

.article-body {
	padding-block: 54px;
}

.quick-answer {
	padding: 24px;
	margin-bottom: 54px;
	border: 1px solid #cfe6df;
	border-left: 5px solid var(--mint);
	border-radius: 8px;
	background: var(--mint-soft);
}

.quick-answer__label {
	margin-bottom: 8px;
	color: var(--mint);
	font-size: 13px;
	font-weight: 850;
}

.quick-answer p:last-child {
	margin-bottom: 0;
	font-size: 18px;
	font-weight: 650;
}

.article-section {
	margin-bottom: 56px;
}

.article-section h2 {
	padding-bottom: 12px;
	margin-bottom: 22px;
	border-bottom: 2px solid var(--border);
}

.article-section p,
.article-bullets li {
	font-size: 17px;
	line-height: 2;
}

.article-bullets {
	padding: 18px 20px;
	margin-top: 22px;
	border-left: 3px solid var(--iris);
	background: var(--lavender);
}

.article-bullets li::before {
	background: var(--iris);
}

.article-fit-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.article-fit {
	padding: 22px;
	border: 1px solid var(--border);
	border-radius: 8px;
}

.article-fit--good {
	border-top: 4px solid var(--mint);
	background: #fbfffd;
}

.article-fit--not-good {
	border-top: 4px solid var(--amber);
	background: #fffdf8;
}

.article-fit h3 {
	margin-bottom: 8px;
}

.article-fit p {
	margin-bottom: 0;
	font-size: 15px;
}

.app-cta--article {
	margin-bottom: 0;
}

.article-faq {
	background: var(--lavender);
}

.article-disclaimer {
	padding-top: 22px;
	margin: 24px 0 0;
	border-top: 1px solid var(--border);
	color: var(--muted);
	font-size: 13px;
}

.related-section {
	border-top: 1px solid var(--border);
}

@media (min-width: 620px) {
	.section-inner,
	.article-width {
		width: min(100% - 64px, var(--content));
	}

	.feature-grid,
	.fit-grid,
	.article-fit-grid,
	.article-list-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.limits-section__inner,
	.app-cta__inner {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.app-cta__inner {
		gap: 48px;
	}

	.preflight__inner {
		grid-template-columns: auto minmax(0, 1fr) auto;
		align-items: start;
		gap: 20px;
	}

	.preflight a {
		justify-self: end;
	}

	.article-header h1 {
		font-size: 44px;
	}
}

@media (min-width: 900px) {
	.section {
		padding-block: 84px;
	}

	.intro-section__inner {
		grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
		align-items: start;
		gap: 80px;
	}

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

	.product-step {
		grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
		padding-block: 78px;
		gap: 84px;
	}

	.product-step:nth-child(even) .product-step__copy {
		order: 2;
	}

	.product-step:nth-child(even) .device-figure {
		order: 1;
	}

	.article-list-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 899px) {
	.ailog-hero::before {
		background: linear-gradient(90deg, rgba(255, 249, 252, 0.98) 0%, rgba(255, 249, 252, 0.92) 62%, rgba(255, 249, 252, 0.58) 100%);
	}

	.ailog-hero__visual {
		right: -96px;
		opacity: 0.42;
	}

	.hero-phone--coach {
		display: none;
	}
}

@media (max-width: 719px) {
	.js .nav-toggle {
		display: inline-flex;
	}

	.site-header__inner {
		flex-wrap: wrap;
	}

	.site-nav {
		width: 100%;
		padding-bottom: 10px;
		flex-wrap: wrap;
	}

	.js .site-nav {
		position: absolute;
		top: calc(100% + 1px);
		right: 0;
		display: none;
		width: min(280px, calc(100vw - 32px));
		padding: 8px;
		border: 1px solid var(--border);
		border-radius: 8px;
		background: var(--white);
		box-shadow: 0 14px 30px rgba(38, 27, 45, 0.16);
	}

	.js .site-nav.is-open {
		display: grid;
	}

	.js .site-nav a {
		width: 100%;
	}

	.ailog-hero {
		min-height: min(700px, calc(100svh - 92px));
	}

	.ailog-hero__inner {
		padding-block: 42px 174px;
		align-items: flex-start;
	}

	.ailog-hero__visual {
		right: -96px;
		bottom: -40px;
		width: 330px;
		opacity: 0.35;
	}

	.hero-phone--report {
		bottom: -270px;
		width: 250px;
	}

	.ailog-hero h1 {
		font-size: 52px;
	}

	.ailog-hero__support {
		font-size: 18px;
	}

	.ailog-hero__outcomes li {
		font-size: 14px;
	}

	.hero-screen-link {
		min-height: 44px;
		margin: 8px 0 0;
	}

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

	.archive-hero {
		padding-block: 48px;
	}
}

@media (max-width: 399px) {
	.section-inner,
	.article-width {
		width: min(100% - 28px, var(--content));
	}

	.ailog-hero h1 {
		font-size: 44px;
	}

	.ailog-hero__support {
		font-size: 17px;
	}

	h2 {
		font-size: 27px;
	}

	.article-header h1 {
		font-size: 32px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

@media print {
	.site-header,
	.app-cta,
	.preflight,
	.site-footer,
	.related-section {
		display: none;
	}

	body {
		color: #000000;
	}

	a {
		color: inherit;
	}
}
