/* Westhead Creations — shared block styles (print-specimen edition).
   Serif everywhere, paper ground, cyan + magenta process accents, hierarchy from type and whitespace. */
:root {
	--wc-bg: #f3f2f2;
	--wc-text: #201e1d;
	--wc-neutral-300: #d8d6d5;
	--wc-neutral-400: #bcb9b8;
	--wc-neutral-500: #8f8b89;
	--wc-neutral-600: #6f6b69;
	--wc-neutral-700: #55514f;
	--wc-accent: #0088b0;
	/* process cyan — interactive */
	--wc-accent-100: #e3f2f7;
	--wc-accent-200: #c2e4ee;
	--wc-accent-300: #93cfe0;
	--wc-accent-700: #00607d;
	--wc-accent-2: #d6006c;
	/* process magenta — the rarer spot */
	--wc-accent-2-200: #f7c2dc;
	--wc-serif: 'Source Serif 4', Georgia, serif;
}

body {
	background: var(--wc-bg);
	color: var(--wc-text);
	font-family: var(--wc-serif);
}

.wc-block a:not(.wc-btn) {
	color: var(--wc-accent);
	text-decoration: none;
}

.wc-block a:not(.wc-btn):hover {
	color: var(--wc-accent-700);
}

.wc-block :focus-visible {
	outline: 2px solid var(--wc-accent);
	outline-offset: 2px;
}

.wc-block ::selection {
	background: var(--wc-accent-200);
}

.wc-block {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 40px 128px;
	font-family: var(--wc-serif);
}

/* Section head: CMYK plate numeral beside the heading */
.wc-plate-head {
	display: flex;
	align-items: baseline;
	gap: 20px;
	margin-bottom: 48px;
}

.wc-plate-num {
	font-family: var(--wc-serif);
	font-size: 56px;
	font-weight: 700;
	line-height: 1;
	text-shadow: 2px 1px 0 var(--wc-accent-200), -2px -1px 0 var(--wc-accent-2-200);
}

.wc-section-heading {
	font-family: var(--wc-serif);
	font-size: clamp(30px, 4vw, 42px);
	font-weight: 700;
	letter-spacing: -0.015em;
	margin: 0;
	text-wrap: balance;
}

.wc-section-sub {
	color: var(--wc-neutral-700);
	font-size: 16px;
	margin: 4px 0 0;
	font-style: italic;
}

.wc-kicker {
	font-size: 13px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--wc-accent-2);
	margin: 0 0 24px;
}

/* Rubber-stamp accent (rotated outline chip) */
.wc-stamp {
	display: inline-block;
	transform: rotate(6deg);
	border: 2px solid var(--wc-accent-2);
	color: var(--wc-accent-2);
	border-radius: 4px;
	padding: 6px 12px;
	font-family: var(--wc-serif);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: .14em;
	text-transform: uppercase;
	background: var(--wc-bg);
}

.wc-stamp--cyan {
	border-color: var(--wc-accent);
	color: var(--wc-accent-700);
	transform: rotate(-5deg);
}

/* Drop cap */
.wc-dropcap::first-letter {
	float: left;
	font-family: var(--wc-serif);
	font-size: 3.4em;
	line-height: .82;
	font-weight: 700;
	padding: 6px 8px 0 0;
}

/* Registration marks */
.wc-registration {
	display: flex;
	justify-content: space-between;
	color: var(--wc-neutral-400);
	font-size: 14px;
}

/* Buttons */
.wc-btn {
	display: inline-block;
	padding: 12px 24px;
	border-radius: 2px;
	font-weight: 600;
	font-size: 16px;
	font-family: var(--wc-serif);
	text-decoration: none;
	border: 0;
	cursor: pointer;
	transition: background .2s ease, color .2s ease;
}

.wc-btn:disabled {
	cursor: not-allowed;
	opacity: .5;
	pointer-events: none;
}

.wc-btn--primary {
	background: var(--wc-accent);
	color: #fff;
}

.wc-btn--primary:hover {
	background: var(--wc-accent-700);
	color: #fff;
}

.wc-btn--outline {
	background: transparent;
	color: var(--wc-text);
	border: 1px solid var(--wc-text);
}

.wc-btn--outline:hover {
	background: var(--wc-text);
	color: var(--wc-bg);
}

.wc-btn--ghost {
	background: transparent;
	color: var(--wc-neutral-600);
	border: 1px solid var(--wc-neutral-400);
}

.wc-btn--ghost:hover {
	border-color: var(--wc-text);
	color: var(--wc-text);
}

/* Inline "read on" link */
.wc-link-under {
	font-style: italic;
	color: var(--wc-text);
	border-bottom: 1px solid var(--wc-text);
}

.wc-link-under:hover {
	color: var(--wc-accent-700);
	border-bottom-color: var(--wc-accent-700);
}

/* Reveal animation (blocks.js adds .is-revealed) */
[data-wc-reveal] {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .65s ease, transform .65s ease;
}

[data-wc-reveal].is-revealed {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	[data-wc-reveal] {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* Hero */
.wc-hero {
	padding-top: 96px;
}

.wc-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
	gap: 80px;
	align-items: end;
}

.wc-hero__heading {
	font-family: var(--wc-serif);
	font-size: clamp(56px, 7.5vw, 92px);
	line-height: 1.02;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin: 0 0 32px;
	text-wrap: balance;
}

.wc-hero__heading em {
	color: var(--wc-accent-2);
}

.wc-hero__ctas {
	display: flex;
	align-items: center;
	gap: 32px;
	flex-wrap: wrap;
}

.wc-hero__intro {
	font-size: 18px;
	line-height: 1.7;
	color: var(--wc-neutral-700);
	margin: 48px 0 0;
	max-width: 46ch;
}

.wc-hero__media {
	margin: 0;
	position: relative;
}

.wc-hero__media img {
	width: 100%;
	display: block;
}

.wc-hero__media .wc-stamp {
	position: absolute;
	top: -18px;
	right: -10px;
	opacity: .85;
}

.wc-hero .wc-registration {
	margin-top: 48px;
}

/* Trust badges become part of the hero's registration rail */
.wc-trust-badges {
	list-style: none;
	margin: 64px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	border-top: 1px solid var(--wc-neutral-300);
	border-bottom: 1px solid var(--wc-neutral-300);
}

.wc-trust-badges__item {
	padding: 20px 0;
}

.wc-trust-badges__item strong {
	display: block;
	font-family: var(--wc-serif);
	font-size: 30px;
	font-weight: 700;
	color: var(--wc-accent-700);
}

.wc-trust-badges__item span {
	font-size: 15px;
	color: var(--wc-neutral-700);
	font-style: italic;
}

/* Ticker */
.wc-ticker {
	max-width: none;
	padding: 10px 0;
	margin: 0 0 96px;
	border-top: 3px solid var(--wc-text);
	border-bottom: 1px solid var(--wc-text);
	overflow: hidden;
}

.wc-ticker__track {
	display: flex;
	width: max-content;
	animation: wc-ticker 26s linear infinite;
}

.wc-ticker__item {
	display: flex;
	align-items: center;
	gap: 24px;
	padding-right: 24px;
	font-family: var(--wc-serif);
	font-weight: 700;
	font-size: 17px;
	letter-spacing: .08em;
	white-space: nowrap;
}

.wc-ticker__item::after {
	content: '●';
	font-size: 13px;
	color: var(--wc-accent);
}

.wc-ticker__item:nth-child(even)::after {
	color: var(--wc-accent-2);
}

@keyframes wc-ticker {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.wc-ticker__track {
		animation: none;
	}
}

/* Product grid → the price list: two columns of ruled entries with number, name, italic note, price */
.wc-product-grid__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 96px;
}

.wc-product-card {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 12px;
	align-items: baseline;
	padding: 18px 0;
	border-bottom: 1px solid var(--wc-neutral-300);
	color: var(--wc-text);
	transition: color .2s ease;
}

a.wc-product-card:hover {
	color: var(--wc-accent-700);
}

.wc-product-card__no {
	font-size: 13px;
	color: var(--wc-neutral-500);
}

.wc-product-card__title {
	font-family: var(--wc-serif);
	font-size: 20px;
	font-weight: 700;
	margin: 0;
}

.wc-product-card__desc {
	display: block;
	font-size: 14px;
	color: var(--wc-neutral-600);
	font-style: italic;
	margin: 0;
}

.wc-product-card__price {
	font-weight: 600;
	font-size: 15px;
	color: var(--wc-accent-700);
	white-space: nowrap;
}

.wc-product-card__media {
	display: none;
}

/* Tiny thumbnail hint next to product title */
@keyframes wc-hint-bob {
	0%, 100% { transform: translateY(0) scale(1); }
	50%       { transform: translateY(-3px) scale(1.1); }
}

.wc-product-card__img-hint {
	display: inline-block;
	width: 28px;
	height: 28px;
	border-radius: 7px;
	overflow: hidden;
	vertical-align: middle;
	margin-left: 10px;
	opacity: 0.45;
	box-shadow: 0 2px 8px rgba(0,0,0,.2);
	transition: opacity .18s ease, transform .18s ease;
	animation: wc-hint-bob 1.2s ease-in-out 1s 3;
}

.wc-product-card__img-hint img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: blur(1.5px);
	transition: filter .18s ease;
}

.wc-product-card__title:hover .wc-product-card__img-hint {
	opacity: 0;
	transform: scale(0.5);
}

/* Floating hover preview — product title image tooltip */
.wc-hover-preview {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	pointer-events: none;
	width: 240px;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 16px 48px rgba(0,0,0,.22), 0 2px 10px rgba(0,0,0,.12);
	opacity: 0;
	transform: scale(.88) translateY(8px);
	transition: opacity .18s ease, transform .18s ease;
}

.wc-hover-preview.is-visible {
	opacity: 1;
	transform: scale(1) translateY(0);
}

.wc-hover-preview img {
	display: block;
	width: 100%;
	height: auto;
}

.wc-product-card__title[data-hover-img] {
	cursor: default;
}

/* price list is typographic; imagery lives in the showcase */
.wc-product-grid__note {
	margin: 24px 0 0;
	font-size: 14px;
	color: var(--wc-neutral-600);
	font-style: italic;
}

/* Showcase */
.wc-showcase__inner {
	display: grid;
	grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
	gap: 80px;
	align-items: center;
}

.wc-showcase--flip .wc-showcase__inner {
	direction: rtl;
}

.wc-showcase--flip .wc-showcase__inner>* {
	direction: ltr;
}

.wc-showcase__media {
	margin: 0;
	position: relative;
}

.wc-showcase__media img {
	width: 100%;
	display: block;
}

.wc-showcase__media .wc-stamp--cyan {
	position: absolute;
	bottom: -16px;
	left: -10px;
}

.wc-showcase__heading {
	font-family: var(--wc-serif);
	font-size: clamp(30px, 4vw, 42px);
	font-weight: 700;
	margin: 0 0 20px;
	text-wrap: balance;
}

.wc-showcase__heading em,
.wc-showcase__heading span {
	color: var(--wc-accent-2);
	font-style: italic;
}

.wc-showcase__body {
	font-size: 17px;
	line-height: 1.75;
	color: var(--wc-neutral-700);
	margin: 0 0 20px;
	max-width: 50ch;
}

.wc-showcase__features {
	margin: 0 0 32px;
	padding: 0;
	list-style: none;
	font-size: 15.5px;
	line-height: 1.9;
	color: var(--wc-neutral-700);
}

.wc-showcase__features li {
	display: inline;
}

.wc-showcase__features li+li::before {
	content: '  ·  ';
	color: var(--wc-neutral-400);
}

/* Process steps */
.wc-process__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 80px;
}

.wc-process__step {
	position: relative;
}

.wc-process__number {
	font-family: var(--wc-serif);
	font-size: 72px;
	font-weight: 700;
	line-height: 1;
	text-shadow: 2px 1px 0 var(--wc-accent-200), -2px -1px 0 var(--wc-accent-2-200);
}

.wc-process__title {
	font-family: var(--wc-serif);
	font-size: 19px;
	font-weight: 700;
	margin: 14px 0 8px;
}

.wc-process__desc {
	font-size: 15px;
	color: var(--wc-neutral-700);
	line-height: 1.65;
	margin: 0;
}

/* Section head furniture (thick-thin rule pair) */
.wc-rulehead {
	border-top: 6px solid var(--wc-text);
	padding-top: 8px;
	margin-bottom: 48px;
}

.wc-rulehead__inner {
	border-top: 1px solid var(--wc-text);
	padding: 20px 0 0;
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}

.wc-rulehead p {
	color: var(--wc-neutral-700);
	font-size: 15.5px;
	margin: 0;
	max-width: 36ch;
	font-style: italic;
}

/* Quote form */
.wc-quote-form__card {
	max-width: 820px;
}

.wc-quote-form__success {
	font-size: 17px;
}

.wc-quote-form__success em {
	color: var(--wc-accent-2);
}

.wc-quote-form__progress {
	list-style: none;
	display: flex;
	gap: 12px;
	margin: 0 0 48px;
	padding: 0;
}

.wc-quote-form__progress li {
	flex: 1;
	font-size: 13px;
	color: var(--wc-neutral-500);
	padding-top: 10px;
	position: relative;
}

.wc-quote-form__progress li::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--wc-neutral-300);
	transition: background .3s;
}

.wc-quote-form__progress li.is-active {
	color: var(--wc-accent-700);
	font-weight: 600;
	font-style: italic;
}

.wc-quote-form__progress li.is-active::before {
	background: var(--wc-accent);
}

.wc-quote-form__step {
	display: none;
	border: 0;
	margin: 0;
	padding: 0;
}

.wc-quote-form__step.is-active {
	display: block;
	animation: wc-fadeup .35s ease both;
}

@keyframes wc-fadeup {
	from {
		opacity: 0;
		transform: translateY(16px);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

.wc-quote-form__step legend {
	font-family: var(--wc-serif);
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 20px;
	padding: 0;
}

.wc-quote-form__products {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.wc-quote-form__product {
	display: block;
	cursor: pointer;
	position: relative;
}

.wc-quote-form__product input {
	position: absolute;
	opacity: 0;
}

.wc-quote-form__product>span {
	display: block;
	text-align: center;
	border: 1px solid var(--wc-neutral-400);
	border-radius: 2px;
	padding: 16px 8px;
	font-size: 14.5px;
	font-weight: 600;
	transition: all .2s ease;
}

.wc-quote-form__product input:checked+span,
.wc-quote-form__product:hover>span {
	border-color: var(--wc-accent);
	color: var(--wc-accent-700);
	background: var(--wc-accent-100);
	font-style: italic;
}

.wc-quote-form__product-thumb {
	display: block;
	width: 100%;
	height: 64px;
	object-fit: cover;
	border-radius: 2px;
	margin-bottom: 8px;
}

.wc-quote-form__product-name {
	display: block;
}

.wc-quote-form__product-price {
	display: block;
	font-size: 11.5px;
	font-weight: 500;
	font-style: normal;
	opacity: .7;
	margin-top: 4px;
}

.wc-quote-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 20px;
}

.wc-quote-form label {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 14px;
	font-weight: 600;
}

.wc-quote-form input[type="text"],
.wc-quote-form input[type="email"],
.wc-quote-form input[type="number"],
.wc-quote-form select,
.wc-quote-form textarea {
	padding: 12px 14px;
	border: 1px solid var(--wc-neutral-400);
	border-radius: 2px;
	font-size: 15px;
	background: #fff;
	font-family: var(--wc-serif);
}

.wc-quote-form input:focus,
.wc-quote-form select:focus,
.wc-quote-form textarea:focus {
	outline: 2px solid var(--wc-accent);
	outline-offset: 2px;
}

.wc-quote-form__required {
	color: var(--wc-accent-2);
}

.wc-quote-form__required-note {
	font-size: 12px;
	color: var(--wc-neutral-600);
	margin: 10px 0 0;
}

.wc-quote-form input.wc-touched:invalid,
.wc-quote-form select.wc-touched:invalid,
.wc-quote-form textarea.wc-touched:invalid {
	border-color: var(--wc-accent-2);
}

.wc-quote-form__upload {
	align-items: center;
	border: 1px dashed var(--wc-accent);
	border-radius: 2px;
	padding: 72px 20px;
	cursor: pointer;
	background: var(--wc-accent-100);
	color: var(--wc-accent-700);
	transition: background .2s;
}

.wc-quote-form__upload:hover {
	background: var(--wc-accent-200);
}

.wc-quote-form__nav {
	display: flex;
	justify-content: space-between;
	margin-top: 48px;
}

/* About */
.wc-about {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 80px;
	align-items: center;
}

.wc-about--flip {
	direction: rtl;
}

.wc-about--flip>* {
	direction: ltr;
}

.wc-about__content {
	font-size: 17px;
	line-height: 1.8;
	color: var(--wc-neutral-700);
}

.wc-about__content>p:first-child::first-letter {
	float: left;
	font-family: var(--wc-serif);
	font-size: 3.2em;
	line-height: .85;
	font-weight: 700;
	padding: 5px 8px 0 0;
	color: var(--wc-text);
}

.wc-about__media {
	margin: 0;
}

.wc-about__media img {
	width: 100%;
	display: block;
}

/* Testimonials — rotating single quote in the serif's italic voice */
.wc-testimonials__rotator {
	max-width: 860px;
}

.wc-testimonial {
	margin: 0;
	display: none;
}

.wc-testimonial.is-active {
	display: block;
	animation: wc-fadeup .5s ease both;
}

.wc-testimonial__quote {
	margin: 0 0 20px;
	font-family: var(--wc-serif);
	font-style: italic;
	font-size: clamp(24px, 3.6vw, 36px);
	line-height: 1.35;
	font-weight: 400;
}

.wc-testimonial__quote::before {
	content: '“';
}

.wc-testimonial__quote::after {
	content: '”';
}

.wc-testimonial__who {
	font-size: 16px;
}

.wc-testimonial__who span {
	color: var(--wc-neutral-600);
	font-style: italic;
}

.wc-testimonials__dots {
	display: flex;
	gap: 12px;
	margin-top: 32px;
}

.wc-testimonials__dots button {
	width: 28px;
	height: 4px;
	border: 0;
	background: var(--wc-neutral-300);
	cursor: pointer;
	padding: 0;
}

.wc-testimonials__dots button:hover {
	background: var(--wc-accent-300);
}

.wc-testimonials__dots button.is-active {
	background: var(--wc-accent);
}

/* Contact */
.wc-contact {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 80px;
}

.wc-contact__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
	font-size: 16px;
}

.wc-contact__socials {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.wc-contact__social {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	padding: 20px 0;
	border-bottom: 1px solid var(--wc-neutral-300);
	font-family: var(--wc-serif);
	font-weight: 700;
	font-size: 20px;
	color: var(--wc-text);
	text-decoration: none;
	transition: padding-left .2s ease, color .2s ease;
}

.wc-contact__social:hover {
	color: var(--wc-accent-700);
	padding-left: 12px;
	font-style: italic;
}

.wc-contact__social-handle {
	font-weight: 400;
	font-size: 14px;
	color: var(--wc-neutral-600);
	font-style: italic;
}

/* CTA banner */
.wc-cta-banner__rule {
	border-top: 6px solid var(--wc-text);
	padding-top: 8px;
}

.wc-cta-banner__inner {
	border-top: 1px solid var(--wc-text);
	padding-top: 72px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}

.wc-cta-banner__heading {
	font-family: var(--wc-serif);
	font-size: clamp(30px, 4.5vw, 46px);
	font-weight: 700;
	margin: 0 0 8px;
	text-wrap: balance;
}

.wc-cta-banner__heading em {
	color: var(--wc-accent-2);
}

.wc-cta-banner__text {
	font-size: 17px;
	color: var(--wc-neutral-700);
	margin: 0;
	font-style: italic;
}

.wc-cta-banner__mark {
	width: 64px;
	height: 64px;
	flex-shrink: 0;
	border: 1px solid var(--wc-text);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	color: var(--wc-accent-2);
	animation: wc-spin 24s linear infinite;
}

@keyframes wc-spin {
	from {
		transform: rotate(0);
	}

	to {
		transform: rotate(360deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.wc-cta-banner__mark {
		animation: none;
	}
}

@media (max-width: 860px) {
	.wc-block {
		padding: 0 20px 72px;
	}

	.wc-hero {
		padding-top: 48px;
	}

	.wc-hero__inner,
	.wc-showcase__inner,
	.wc-about,
	.wc-contact {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.wc-product-grid__grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.wc-trust-badges {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.wc-process__list {
		grid-template-columns: 1fr 1fr;
		gap: 48px 32px;
	}

	.wc-quote-form__products {
		grid-template-columns: repeat(2, 1fr);
	}

	.wc-quote-form__row {
		grid-template-columns: 1fr;
	}

	.wc-plate-head {
		gap: 14px;
		margin-bottom: 32px;
	}

	.wc-plate-num {
		font-size: 40px;
	}

	.wc-hero__media .wc-stamp {
		right: 0;
	}
}

@media (max-width: 560px) {
	.wc-process__list {
		grid-template-columns: 1fr;
	}

	.wc-quote-form__products {
		grid-template-columns: 1fr 1fr;
	}

	.wc-cta-banner__mark {
		display: none;
	}

	.wc-rulehead p {
		display: none;
	}
}

/* 404 */
.wc-404 {
	padding-top: 96px;
	text-align: center;
}

.wc-404__inner {
	max-width: 640px;
	margin: 0 auto;
}

.wc-404 .wc-kicker {
	text-align: center;
}

.wc-404__code {
	font-family: var(--wc-serif);
	font-weight: 700;
	font-size: clamp(96px, 18vw, 200px);
	line-height: 1;
	margin: 0 0 8px;
	text-shadow: 4px 2px 0 var(--wc-accent-200), -4px -2px 0 var(--wc-accent-2-200);
}

.wc-404 .wc-section-heading {
	margin: 0 0 20px;
}

.wc-404__text {
	font-size: 17px;
	line-height: 1.7;
	color: var(--wc-neutral-700);
	margin: 0 0 40px;
}

.wc-404 .wc-registration {
	margin-top: 96px;
}

@media (max-width: 860px) {
	.wc-404 {
		padding-top: 48px;
	}

	.wc-404 .wc-registration {
		margin-top: 48px;
	}
}