/* =============================================
   03_WIDGETS / w-errorblock
   Блок ошибки (404 и т.п.).
   ============================================= */

.errorblock__body {
	border-radius: 20px;
	background-color: var(--whiteColor);
	margin: 0 auto;
	text-align: center;
}
.errorblock__top {
	font-weight: 700;
	color: var(--greenColor4);
}
.errorblock__title {
	font-weight: 600;
}
.errorblock__title:not(:last-child) {
	margin-bottom: 4px;
}

/* ── Responsive ── */

@media (max-width: 63.99875em) {
	.errorblock {
		padding: 30px 0;
	}
	.errorblock__body {
		padding: 20px;
	}
	.errorblock__top {
		font-size: 80px;
		line-height: 120%;
	}
	.errorblock__top:not(:last-child) {
		margin-bottom: 10px;
	}
	.errorblock__title {
		font-size: 24px;
		line-height: 120.833333%;
	}
	.errorblock__text {
		max-width: 196px;
		margin-left: auto;
		margin-right: auto;
	}
	.errorblock__text:not(:last-child) {
		margin-bottom: 10px;
	}
}
@media (min-width: 63.99875em) {
	.errorblock {
		padding: 50px 0;
	}
	.errorblock__body {
		padding: 40px;
		max-width: 649px;
	}
	.errorblock__top {
		font-size: 128px;
		line-height: 120.3125%;
	}
	.errorblock__top:not(:last-child) {
		margin-bottom: 20px;
	}
	.errorblock__title {
		font-size: 40px;
		line-height: 120%;
	}
	.errorblock__text:not(:last-child) {
		margin-bottom: 20px;
	}
}
@media (min-width: 74.99875em) {
	.errorblock {
		padding: 60px 0;
	}
}
