.mew-doc {
	--mew-teal: #2a9d8f;
	--mew-teal-soft: #eaf6f4;
	--mew-slate: #264653;
	--mew-yellow: #ffec1f;
	--mew-clay: #c05621;
	--mew-clay-soft: #fdf3ea;
	--mew-sand: #f7f4ed;
	--mew-line: #e6e1d5;
	--mew-muted: #5d6b6c;
}

.mew-doc p,
.mew-doc li {
	font-size: 18px !important;
	line-height: 1.62 !important;
}

.mew-doc > p.mew-lead {
	font-size: 21px !important;
	line-height: 1.6 !important;
	color: var(--mew-slate);
	border-left: 5px solid var(--mew-teal);
	padding-left: 22px;
	margin-bottom: 30px;
}

.mew-doc h2 {
	margin-top: 1.5em;
	margin-bottom: .55em;
	padding-bottom: .3em;
	border-bottom: 2px solid var(--mew-line);
	position: relative;
}

.mew-doc h2::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 64px;
	height: 4px;
	background: var(--mew-teal);
}

.mew-doc h3 {
	color: var(--mew-slate);
	margin-top: 1.5em;
	margin-bottom: .45em;
}

.mew-key {
	background: var(--mew-sand);
	border: 1px solid var(--mew-line);
	border-radius: 18px;
	padding: 26px 30px;
	margin: 0 0 34px;
}

.mew-key__title {
	font-size: 12px !important;
	letter-spacing: .16em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--mew-teal);
	margin: 0 0 14px;
}

.mew-key ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mew-key li {
	position: relative;
	padding-left: 28px;
	margin: 0 0 10px;
	font-size: 17px !important;
	line-height: 1.55;
	color: var(--mew-slate);
}

.mew-key li:last-child {
	margin-bottom: 0;
}

.mew-key li::before {
	content: "";
	position: absolute;
	left: 2px;
	top: 10px;
	width: 9px;
	height: 9px;
	background: var(--mew-teal);
	border-radius: 2px;
	transform: rotate(45deg);
}

.mew-steps {
	list-style: none;
	counter-reset: mewstep;
	padding-left: 0;
	margin: 22px 0 28px;
}

.mew-steps > li {
	counter-increment: mewstep;
	position: relative;
	padding-left: 56px;
	margin-bottom: 16px;
	min-height: 34px;
}

.mew-steps > li::before {
	content: counter(mewstep);
	position: absolute;
	left: 0;
	top: 0;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--mew-teal);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	line-height: 34px;
	text-align: center;
}

.mew-check,
.mew-flags {
	list-style: none;
	padding-left: 0;
	margin: 20px 0 26px;
}

.mew-check > li,
.mew-flags > li {
	position: relative;
	padding-left: 38px;
	margin-bottom: 12px;
}

.mew-check > li::before {
	content: "";
	position: absolute;
	left: 7px;
	top: 6px;
	width: 8px;
	height: 15px;
	border: solid var(--mew-teal);
	border-width: 0 3px 3px 0;
	transform: rotate(45deg);
}

.mew-flags > li::before {
	content: "!";
	position: absolute;
	left: 0;
	top: 3px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--mew-clay-soft);
	color: var(--mew-clay);
	border: 2px solid var(--mew-clay);
	font-size: 14px;
	font-weight: 700;
	line-height: 21px;
	text-align: center;
}

.mew-call {
	border-radius: 16px;
	padding: 22px 26px;
	margin: 30px 0;
}

.mew-call p:last-child {
	margin-bottom: 0;
}

.mew-call__label {
	display: block;
	font-size: 12px !important;
	letter-spacing: .14em;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 8px;
}

.mew-call--rule {
	background: var(--mew-teal-soft);
	border-left: 6px solid var(--mew-teal);
}

.mew-call--rule .mew-call__label {
	color: var(--mew-teal);
}

.mew-call--warn {
	background: var(--mew-clay-soft);
	border-left: 6px solid var(--mew-clay);
}

.mew-call--warn .mew-call__label {
	color: var(--mew-clay);
}

.mew-pull {
	margin: 36px 0;
	padding: 4px 0 4px 30px;
	border-left: 6px solid var(--mew-yellow);
}

.mew-pull p {
	font-size: 23px !important;
	line-height: 1.45 !important;
	font-weight: 600;
	color: var(--mew-slate);
	margin: 0;
}

.mew-example {
	background: var(--mew-sand);
	border-top: 4px solid var(--mew-teal);
	border-radius: 4px 4px 16px 16px;
	padding: 22px 26px;
	margin: 18px 0 26px;
}

.mew-example p {
	margin: 0;
	color: var(--mew-slate);
}

.mew-table {
	overflow-x: auto;
	margin: 28px 0 32px;
	border: 1px solid var(--mew-line);
	border-radius: 16px;
	-webkit-overflow-scrolling: touch;
}

.mew-table table {
	width: 100%;
	min-width: 640px;
	margin: 0;
	border: 0;
	border-collapse: collapse;
	font-size: 16px !important;
}

.mew-table th {
	background: var(--mew-slate);
	color: #fff;
	text-align: left;
	font-weight: 600;
	padding: 15px 18px;
	border: 0;
	line-height: 1.4;
}

.mew-table td {
	padding: 14px 18px;
	border: 0;
	border-top: 1px solid var(--mew-line);
	vertical-align: top;
	line-height: 1.5;
}

.mew-table tbody tr:nth-child(even) {
	background: #fbf9f5;
}

.mew-table td:first-child {
	font-weight: 600;
	color: var(--mew-slate);
}

.mew-doc figure {
	margin: 34px 0;
}

.mew-doc figure img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 16px;
}

.mew-doc figcaption {
	margin-top: 12px;
	padding-left: 16px;
	border-left: 3px solid var(--mew-teal);
	font-size: 15px !important;
	line-height: 1.5;
	color: var(--mew-muted);
}

.mew-faq {
	border: 1px solid var(--mew-line);
	border-radius: 14px;
	background: #fff;
	margin: 0 0 12px;
	overflow: hidden;
}

.mew-faq > summary {
	display: block;
	list-style: none;
	cursor: pointer;
	padding: 19px 62px 19px 24px;
	font-size: 18px !important;
	font-weight: 600;
	line-height: 1.45;
	color: var(--mew-slate);
	position: relative;
	transition: background .18s ease;
}

.mew-faq > summary::-webkit-details-marker {
	display: none;
}

.mew-faq > summary:hover {
	background: var(--mew-sand);
}

.mew-faq > summary::before,
.mew-faq > summary::after {
	content: "";
	position: absolute;
	right: 24px;
	top: 50%;
	background: var(--mew-teal);
	transition: transform .2s ease, opacity .2s ease;
}

.mew-faq > summary::before {
	width: 16px;
	height: 3px;
	margin-top: -1px;
}

.mew-faq > summary::after {
	width: 3px;
	height: 16px;
	margin-top: -8px;
	margin-right: 6px;
}

.mew-faq[open] > summary {
	background: var(--mew-sand);
	border-bottom: 1px solid var(--mew-line);
}

.mew-faq[open] > summary::after {
	transform: rotate(90deg);
	opacity: 0;
}

.mew-faq__a {
	padding: 20px 24px 6px;
}

.mew-faq__a p:last-child {
	margin-bottom: 14px;
}

@media (prefers-reduced-motion: reduce) {
	.mew-faq > summary,
	.mew-faq > summary::before,
	.mew-faq > summary::after {
		transition: none;
	}
}

@media (max-width: 767px) {
	.mew-doc p,
	.mew-doc li {
		font-size: 17px !important;
	}

	.mew-doc > p.mew-lead {
		font-size: 19px !important;
		padding-left: 16px;
	}

	.mew-key,
	.mew-call,
	.mew-example {
		padding: 20px 18px;
	}

	.mew-pull {
		padding-left: 20px;
	}

	.mew-pull p {
		font-size: 20px !important;
	}

	.mew-faq > summary {
		font-size: 17px !important;
		padding: 16px 54px 16px 18px;
	}

	.mew-faq__a {
		padding: 16px 18px 4px;
	}
}
