/* Shared layout primitives + self-hosted fonts for wp-srg-blocks.
   Loaded as a dependency of every block's style.css via block-loader.php.
   Keep visual concerns (color, typography sizing) inside individual blocks —
   this file is for primitives and font registration only. */

.containerBlocks {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
	width: 100%;
}

/* Artifex Hand CF — self-hosted from assets/fonts/.
   Reference in block CSS as: font-family: "Artifex Hand CF", serif; */

@font-face {
	font-family: "Artifex Hand CF";
	src: url("fonts/Artifex Hand CF Light/Artifex Hand CF Light.otf") format("opentype");
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Artifex Hand CF";
	src: url("fonts/Artifex Hand CF Regular/Artifex Hand CF Regular.otf") format("opentype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Artifex Hand CF";
	src: url("fonts/Artifex Hand CF Regular Italic/Artifex Hand CF Regular Italic.otf") format("opentype");
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "Artifex Hand CF";
	src: url("fonts/Artifex Hand CF Bold/Artifex Hand CF Bold.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Artifex Hand CF";
	src: url("fonts/Artifex Hand CF Bold Italic/Artifex Hand CF Bold Italic.otf") format("opentype");
	font-weight: 700;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "Artifex Hand CF";
	src: url("fonts/Artifex Hand CF Extra Bold/Artifex Hand CF Extra Bold.otf") format("opentype");
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Artifex Hand CF";
	src: url("fonts/Artifex Hand CF Heavy/Artifex Hand CF Heavy.ttf") format("truetype");
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}
