/* GRZ Gaming core CSS v1.5.63.
 * Deterministic source order matches the former WordPress dependency chain.
 * Regenerate with audit-tools/build-core-css.mjs; edit the source files.
 */

/* ===== BEGIN SOURCE: assets/css/tokens.css ===== */
/*  GRZ Gaming — tokens canonical stylesheet.  */
:root {
	--grz-blue: #0868f2;
	--grz-blue-dark: #064ec4;
	--grz-blue-deep: #05388e;
	--grz-blue-soft: #eaf3ff;
	--grz-blue-mist: #f2f7ff;
	--grz-red: #f23d4f;
	--grz-ink: #111827;
	--grz-ink-soft: #26324a;
	--grz-muted: #667085;
	--grz-muted-light: #98a2b3;
	--grz-line: #dde6f2;
	--grz-line-strong: #cbd8e8;
	--grz-surface: #ffffff;
	--grz-canvas: #f6f9fd;
	--grz-success: #12a66a;
	--grz-shadow-xs: 0 1px 2px rgba(16, 36, 71, 0.05);
	--grz-shadow-sm: 0 8px 24px rgba(16, 36, 71, 0.08);
	--grz-shadow-md: 0 20px 55px rgba(18, 43, 84, 0.11);
	--grz-shadow-blue: 0 12px 30px rgba(8, 104, 242, 0.22);
	--grz-radius-sm: 6px;
	--grz-radius-md: 8px;
	--grz-radius-lg: 12px;
	--grz-radius-xl: 16px;
	--grz-container: 1440px;
	--grz-container-inner: 1392px;
	--grz-content: 1180px;
	--grz-gutter: 24px;
	--grz-transition: 180ms cubic-bezier(0.2, 0.7, 0.2, 1);
	--grz-font: Arial, "Helvetica Neue", Helvetica, sans-serif;
}
/* ===== END SOURCE: assets/css/tokens.css ===== */

/* ===== BEGIN SOURCE: assets/css/base.css ===== */
/*  GRZ Gaming — base canonical stylesheet.  */
*,
*::before,
*::after {
	box-sizing: border-box;
}
html {
	font-size: 16px;
	overflow-x: clip;
	-webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: no-preference) {
	html {
		scroll-behavior: smooth;
	}
}
body {
	margin: 0;
	background: var(--grz-canvas);
	color: var(--grz-ink);
	font-family: var(--grz-font);
	font-size: 1rem;
	line-height: 1.6;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}
body.grz-drawer-open {
	overflow: hidden;
}
img,
svg,
video {
	max-width: 100%;
	height: auto;
}
button,
input,
select,
textarea {
	font: inherit;
}
button,
[type="button"],
[type="submit"] {
	cursor: pointer;
}
button:disabled,
[type="button"]:disabled,
[type="submit"]:disabled {
	cursor: not-allowed;
}
a {
	color: var(--grz-blue);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}
a:hover {
	color: var(--grz-blue-dark);
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.65em;
	color: var(--grz-ink);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.15;
}
p {
	margin: 0 0 1.25em;
}
ul,
ol {
	margin: 0 0 1.5em;
	padding-inline-start: 1.25em;
}
select {
	width: 100%;
	min-height: 46px;
	border: 1px solid var(--grz-line-strong);
	border-radius: var(--grz-radius-sm);
	background: var(--grz-surface);
	color: var(--grz-ink);
	padding: 0.75rem 0.9rem;
	outline: none;
	transition: border-color var(--grz-transition), box-shadow var(--grz-transition);
}
textarea {
	width: 100%;
	border: 1px solid var(--grz-line-strong);
	border-radius: var(--grz-radius-sm);
	background: var(--grz-surface);
	color: var(--grz-ink);
	padding: 0.75rem 0.9rem;
	outline: none;
	transition: border-color var(--grz-transition), box-shadow var(--grz-transition);
}
input:where(:not([type="checkbox"], [type="radio"], [type="range"], [type="file"], [type="submit"], [type="button"], [type="reset"], [type="image"], [type="color"], [type="hidden"])) {
	width: 100%;
	min-height: 46px;
	border: 1px solid var(--grz-line-strong);
	border-radius: var(--grz-radius-sm);
	background: var(--grz-surface);
	color: var(--grz-ink);
	padding: 0.75rem 0.9rem;
	outline: none;
	transition: border-color var(--grz-transition), box-shadow var(--grz-transition);
}
textarea {
	min-height: 140px;
	resize: vertical;
}
input:focus,
select:focus,
textarea:focus {
	border-color: var(--grz-blue);
	box-shadow: 0 0 0 4px rgba(8, 104, 242, 0.12);
}
input[type="checkbox"],
input[type="radio"] {
	width: 1.05rem;
	height: 1.05rem;
	min-height: 0;
	margin: 0;
	margin-inline-end: 0.45em;
	accent-color: var(--grz-blue);
}
input[type="checkbox"]:focus,
input[type="radio"]:focus {
	box-shadow: 0 0 0 3px rgba(8, 104, 242, 0.2);
}
/* Buttons use actual flex centering rather than trying to balance a fixed
 * height against an inherited line-height. Native input submit controls get
 * the same measurements without being turned into flex containers. */
.grz-button,
a.wp-element-button,
button.wp-element-button,
a.button,
button.button,
button[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	box-sizing: border-box;
	min-height: 42px;
	appearance: none;
	border: 0;
	border-radius: var(--grz-radius-sm);
	background: linear-gradient(135deg, var(--grz-blue) 0%, var(--grz-blue-dark) 100%);
	box-shadow: 0 8px 20px rgba(8, 104, 242, 0.18);
	color: #fff;
	font-weight: 800;
	line-height: 1.2;
	padding: 0.72rem 1.05rem;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	transition: transform var(--grz-transition), box-shadow var(--grz-transition), background var(--grz-transition);
}
input[type="submit"],
input[type="button"],
input[type="reset"],
input.button {
	box-sizing: border-box;
	min-height: 42px;
	appearance: none;
	border: 0;
	border-radius: var(--grz-radius-sm);
	background: linear-gradient(135deg, var(--grz-blue) 0%, var(--grz-blue-dark) 100%);
	box-shadow: 0 8px 20px rgba(8, 104, 242, 0.18);
	color: #fff;
	font-weight: 800;
	line-height: 1.2;
	padding: 0.72rem 1.05rem;
	text-align: center;
	vertical-align: middle;
	transition: transform var(--grz-transition), box-shadow var(--grz-transition), background var(--grz-transition);
}
.grz-button:hover,
.wp-element-button:hover,
.button:hover,
[type="submit"]:hover,
[type="button"]:hover,
[type="reset"]:hover {
	box-shadow: var(--grz-shadow-blue);
	color: #fff;
	transform: translateY(-1px);
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 3px solid rgba(8, 104, 242, 0.28);
	outline-offset: 3px;
}
.grz-icon {
	display: inline-grid;
	width: 1.25em;
	height: 1.25em;
	place-items: center;
	flex: 0 0 auto;
}
.grz-icon svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.screen-reader-text:focus,
.skip-link:focus {
	position: fixed;
	top: 12px;
	inset-inline-start: 12px;
	z-index: 100000;
	width: auto;
	height: auto;
	clip: auto;
	margin: 0;
	padding: 12px 18px;
	border-radius: var(--grz-radius-sm);
	background: var(--grz-ink);
	color: #fff;
	font-weight: 800;
}
::selection {
	background: rgba(8, 104, 242, 0.2);
	color: var(--grz-ink);
}

/* --------------------------------------------------------------------------
 * The hidden attribute must actually hide
 * --------------------------------------------------------------------------
 * `[hidden]` is only `display: none` in the user-agent stylesheet, so ANY
 * author-level `display` declaration silently defeats it. Several components
 * toggle visibility with `el.hidden = true` (checkout payment picker, region
 * search clear button, conditional form fields) while their class also carries
 * `display: flex/grid/inline-flex` — those elements stayed on screen and the
 * toggle appeared to do nothing.
 *
 * One global guard fixes the whole class of bug and prevents the next one.
 * Components that need a hidden element to stay in the layout must use a
 * different mechanism (visibility, opacity, .is-* class) rather than [hidden].
 * ----------------------------------------------------------------------- */
[hidden] {
	display: none !important;
}
/* ===== END SOURCE: assets/css/base.css ===== */

/* ===== BEGIN SOURCE: assets/css/layout.css ===== */
/*  GRZ Gaming — layout canonical stylesheet.  */
.grz-container {
	box-sizing: border-box;
	width: min(100%, var(--grz-container));
	margin-inline: auto;
	padding-inline: var(--grz-gutter);
}
.grz-site-content {
	min-height: 44vh;
}
.grz-content-wrap {
	width: min(calc(100% - (2 * var(--grz-gutter))), var(--grz-content));
	margin: 0 auto;
	padding-block: clamp(22px, 3vw, 34px) clamp(14px, 1.8vw, 20px);
}
.grz-site-main {
	min-width: 0;
}
.alignwide {
	box-sizing: border-box;
	width: min(100vw, var(--grz-container));
	max-width: none;
	margin-left: 50%;
	padding-inline: var(--grz-gutter);
	transform: translateX(-50%);
}
.alignfull {
	width: 100vw;
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}
@media (max-width: 700px) {
	:root {
		--grz-gutter: 18px;
	}
}
/* ===== END SOURCE: assets/css/layout.css ===== */

/* ===== BEGIN SOURCE: assets/css/ui.css ===== */
/*  GRZ Gaming — ui canonical stylesheet.  */
:root {
	--grz-ui-radius-card: 8px;
	--grz-ui-radius-control: 6px;
	--grz-ui-line: #dce5f0;
	--grz-ui-line-strong: #cbd7e6;
	--grz-ui-ink: #172238;
	--grz-ui-copy: #64748a;
	--grz-ui-canvas: #f4f7fb;
	--grz-ui-surface: #fff;
	--grz-ui-blue-soft: #edf5ff;
	--grz-ui-shadow: 0 8px 26px rgba(21, 48, 84, 0.055);
	--grz-ui-shadow-hover: 0 14px 34px rgba(21, 48, 84, 0.095);
}
.woocommerce :where(a.button, button.button, .button, .wc-forward) {
	box-sizing: border-box;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0 16px;
	border-radius: var(--grz-ui-radius-control);
	font-weight: 800;
	line-height: 1.15;
	text-align: center;
	text-decoration: none;
}
.woocommerce :where(a.button, button.button, .wc-forward) {
	display: inline-flex;
}
.woocommerce :where(input.button, input[type="submit"].button) {
	box-sizing: border-box;
	min-height: 44px;
	padding-block: 0;
	border-radius: var(--grz-ui-radius-control);
	font-weight: 800;
	line-height: 42px;
	text-align: center;
}
.woocommerce :where(a.button, button.button, .wc-forward) > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1.15;
}
.woocommerce :where(button, a, input, select, textarea):focus-visible {
	outline: 3px solid rgba(8, 104, 242, 0.22);
	outline-offset: 2px;
}
/* ===== END SOURCE: assets/css/ui.css ===== */

/* ===== BEGIN SOURCE: assets/css/header.css ===== */
/*  GRZ Gaming — header canonical stylesheet.  */
.grz-header {
	position: relative;
	z-index: 100;
	width: 100%;
	background: var(--grz-surface);
	box-shadow: 0 1px 0 rgba(203, 216, 232, 0.72);
}
.grz-header__shell {
	position: relative;
	width: 100%;
	margin: 0;
	border: 0;
	border-radius: 0;
	background: var(--grz-surface);
	box-shadow: none;
}
.grz-top-strip {
	position: relative;
	overflow: hidden;
	border-radius: 0;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 28%, rgba(255, 255, 255, 0.05) 70%, transparent),
		linear-gradient(135deg, var(--grz-blue-dark) 0%, var(--grz-blue) 55%, #0a7cff 100%);
	color: #fff;
}
.grz-top-strip::before,
.grz-top-strip::after {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 220px;
	content: "";
	opacity: 0.24;
	background-image:
		linear-gradient(30deg, transparent 12%, rgba(255, 255, 255, 0.3) 12.5%, transparent 13%),
		linear-gradient(150deg, transparent 12%, rgba(255, 255, 255, 0.3) 12.5%, transparent 13%);
	background-size: 52px 52px;
	pointer-events: none;
}
.grz-top-strip::before {
	left: -60px;
}
.grz-top-strip::after {
	right: -60px;
	transform: scaleX(-1);
}
.grz-top-strip__track {
	position: relative;
	z-index: 1;
	display: grid;
	box-sizing: border-box;
	width: min(100%, var(--grz-container));
	padding-inline: var(--grz-gutter);
	grid-template-columns: repeat(3, minmax(0, 1fr));
	min-height: 28px;
	align-items: center;
	margin-inline: auto;
}
.grz-top-strip__item {
	position: relative;
	display: flex;
	min-width: 0;
	align-items: center;
	justify-content: center;
	gap: 7px;
	padding: 4px 16px;
	font-size: 0.7rem;
	white-space: nowrap;
}
.grz-top-strip__item + .grz-top-strip__item::before {
	position: absolute;
	inset-inline-start: 0;
	width: 1px;
	height: 24px;
	background: rgba(255, 255, 255, 0.3);
	content: "";
	transform: rotate(24deg);
}
.grz-top-strip__item .grz-icon {
	width: 14px;
	height: 14px;
}
.grz-top-strip__item strong {
	font-size: 0.69rem;
	font-weight: 850;
	letter-spacing: 0.025em;
}
.grz-top-strip__item span {
	overflow: hidden;
	color: rgba(255, 255, 255, 0.82);
	text-overflow: ellipsis;
}
.grz-utility {
	border-bottom: 1px solid var(--grz-line);
	background: rgba(255, 255, 255, 0.98);
}
.grz-utility__inner {
	display: flex;
	min-height: 36px;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
}
.grz-utility__links,
.grz-utility__meta {
	display: flex;
	align-items: center;
	gap: 0;
}
.grz-utility__links a,
.grz-app-link {
	display: inline-flex;
	min-height: 25px;
	align-items: center;
	gap: 6px;
	color: var(--grz-ink-soft);
	font-size: 0.69rem;
	font-weight: 650;
	text-decoration: none;
}
.grz-locale-indicator {
	display: inline-flex;
	min-height: 25px;
	align-items: center;
	gap: 6px;
	font-size: 0.69rem;
	font-weight: 650;
	text-decoration: none;
}
.grz-utility__links a,
.grz-utility__meta > * {
	position: relative;
	padding-inline: 11px;
}
.grz-utility__links a:first-child,
.grz-utility__meta > *:first-child {
	padding-inline-start: 0;
}
.grz-utility__links a + a::before,
.grz-utility__meta > * + *::before {
	position: absolute;
	inset-inline-start: 0;
	top: 50%;
	width: 1px;
	height: 14px;
	background: var(--grz-line);
	content: "";
	transform: translateY(-50%);
}
.grz-utility__links a:hover,
.grz-app-link:hover,
.grz-utility__links a .grz-icon {
	color: var(--grz-blue);
}
.grz-utility__links em {
	display: inline-flex;
	min-height: 18px;
	align-items: center;
	border-radius: 999px;
	background: var(--grz-blue-soft);
	color: var(--grz-blue);
	font-size: 0.62rem;
	font-style: normal;
	font-weight: 850;
	padding: 1px 6px;
	text-transform: uppercase;
}
.grz-locale-slot {
	display: inline-flex;
	align-items: center;
}
.grz-locale-indicator {
	color: var(--grz-ink-soft);
}
.grz-locale-country-flag {
	display: inline-flex;
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 50%;
	background: #fff;
	box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.12);
}
.grz-locale-country-flag .grz-flag-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.grz-locale-country-flag .grz-flag-emoji {
	font-size: 14px;
	line-height: 1;
}
.grz-main-header {
	position: relative;
	background: var(--grz-surface);
}
.grz-main-header__inner {
	display: grid;
	grid-template-columns: auto minmax(360px, 1fr) minmax(230px, 300px) auto;
	min-height: 70px;
	align-items: center;
	gap: clamp(12px, 1.35vw, 21px);
}
.grz-brand {
	display: inline-flex;
	width: 104px;
	min-width: 0;
	align-items: center;
	color: var(--grz-blue);
	text-decoration: none;
}
.grz-brand__image {
	display: block;
	width: auto;
	max-width: 104px;
	max-height: var(--grz-logo-max-h, 42px);
	object-fit: contain;
}
.grz-brand__fallback {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	line-height: 1;
}
.grz-brand__main {
	background: linear-gradient(135deg, var(--grz-blue-dark), var(--grz-blue), #1590ff);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	font-size: 1.72rem;
	font-weight: 950;
	letter-spacing: -0.09em;
	line-height: 0.9;
}
.grz-brand__sub {
	margin-top: 4px;
	padding-inline-start: 2px;
	color: var(--grz-ink);
	font-size: 0.6rem;
	font-weight: 850;
	letter-spacing: 0.44em;
}
.grz-primary-nav {
	min-width: 0;
}
.grz-primary-menu,
.grz-primary-menu ul,
.grz-mobile-menu,
.grz-mobile-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.grz-primary-menu {
	display: flex;
	min-width: 0;
	align-items: center;
	gap: 1px;
}
.grz-primary-menu > li {
	position: relative;
}
.grz-primary-menu > li > a {
	display: flex;
	min-height: 34px;
	align-items: center;
	gap: 7px;
	border-radius: 8px;
	color: var(--grz-ink);
	font-size: 0.76rem;
	font-weight: 750;
	padding: 5px 7px;
	text-decoration: none;
	transition: background var(--grz-transition), color var(--grz-transition), transform var(--grz-transition);
	white-space: nowrap;
}
.grz-primary-menu > li > a:hover,
.grz-primary-menu > li.current-menu-item > a,
.grz-primary-menu > li.current-menu-ancestor > a {
	background: var(--grz-blue-mist);
	color: var(--grz-blue);
	transform: translateY(-1px);
}
.grz-primary-menu .grz-menu-icon {
	width: 16px;
	height: 16px;
	color: var(--grz-ink-soft);
}
.grz-primary-menu > li > a:hover .grz-menu-icon,
.grz-primary-menu > li.current-menu-item > a .grz-menu-icon {
	color: var(--grz-blue);
}
.grz-primary-menu .menu-item-has-children > a::after {
	width: 7px;
	height: 7px;
	margin: -4px 0 0 2px;
	border-right: 1.7px solid currentColor;
	border-bottom: 1.7px solid currentColor;
	content: "";
	transform: rotate(45deg);
}
.grz-primary-menu .sub-menu {
	position: absolute;
	top: calc(100% + 10px);
	inset-inline-start: 0;
	z-index: 20;
	visibility: hidden;
	width: max-content;
	min-width: 230px;
	max-width: 330px;
	border: 1px solid var(--grz-line);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: var(--grz-shadow-md);
	opacity: 0;
	padding: 9px;
	transform: translateY(8px);
	transition: opacity var(--grz-transition), transform var(--grz-transition), visibility var(--grz-transition);
}
.grz-primary-menu li:hover > .sub-menu,
.grz-primary-menu li:focus-within > .sub-menu {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}
.grz-primary-menu .sub-menu a {
	display: flex;
	align-items: center;
	border-radius: 9px;
	color: var(--grz-ink-soft);
	font-size: 0.86rem;
	font-weight: 650;
	padding: 10px 12px;
	text-decoration: none;
}
.grz-primary-menu .sub-menu a:hover,
.grz-primary-menu .sub-menu .current-menu-item > a {
	background: var(--grz-blue-mist);
	color: var(--grz-blue);
}
.grz-primary-menu .sub-menu .sub-menu {
	top: -9px;
	inset-inline-start: calc(100% + 8px);
}
.grz-product-search {
	position: relative;
	display: flex;
	min-width: 0;
	align-items: center;
}
.grz-product-search input {
	height: 38px;
	min-height: 38px;
	border-color: var(--grz-line-strong);
	border-radius: 8px;
	background: #fbfdff;
	padding-block: 0;
	padding-inline: 14px 42px;
	font-size: 0.75rem;
}
.grz-product-search button {
	position: absolute;
	inset-inline-end: 4px;
	display: inline-grid;
	width: 30px;
	height: 30px;
	place-items: center;
	border-radius: 8px;
	background: transparent;
	box-shadow: none;
	color: var(--grz-blue);
	padding: 0;
}
.grz-product-search button:hover {
	background: var(--grz-blue-soft);
	box-shadow: none;
	transform: none;
}
.grz-header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 4px;
}
.grz-icon-button {
	position: relative;
	display: inline-grid;
	width: 34px;
	height: 34px;
	min-height: 34px;
	place-items: center;
	border: 1px solid transparent;
	border-radius: 9px;
	background: transparent;
	box-shadow: none;
	color: var(--grz-ink);
	padding: 0;
	text-decoration: none;
	transition: background var(--grz-transition), border-color var(--grz-transition), color var(--grz-transition), transform var(--grz-transition);
}
.grz-icon-button:hover {
	border-color: var(--grz-line);
	background: var(--grz-blue-mist);
	box-shadow: none;
	color: var(--grz-blue);
	transform: translateY(-1px);
}
.grz-icon-button .grz-icon {
	width: 17px;
	height: 17px;
}
.grz-cart-count {
	position: absolute;
	top: 2px;
	inset-inline-end: 0;
	display: inline-grid;
	min-width: 18px;
	height: 18px;
	place-items: center;
	border: 2px solid #fff;
	border-radius: 999px;
	background: var(--grz-red);
	color: #fff;
	font-size: 0.62rem;
	font-weight: 850;
	line-height: 1;
	padding: 0 4px;
}
.grz-cart-count.is-empty {
	display: none;
}
.grz-sign-in {
	display: inline-flex;
	min-height: 38px;
	align-items: center;
	justify-content: center;
	gap: 7px;
	border-radius: 8px;
	background: #eef2f7;
	box-shadow: none;
	color: var(--grz-ink);
	font-size: 0.75rem;
	font-weight: 800;
	padding: 0 13px;
	text-decoration: none;
	white-space: nowrap;
	transition: background var(--grz-transition), color var(--grz-transition);
}
.grz-sign-in:hover {
	background: #e2e9f2;
	box-shadow: none;
	color: var(--grz-ink);
	transform: none;
}
.grz-sign-in .grz-icon {
	width: 17px;
	height: 17px;
}
.grz-mobile-menu-button,
.grz-mobile-search-button {
	display: none;
}
.grz-mobile-search {
	border-top: 1px solid var(--grz-line);
	padding: 12px var(--grz-gutter) 15px;
}
.grz-mobile-search[hidden] {
	display: none;
}
.grz-mobile-search form {
	position: relative;
	display: flex;
	max-width: 760px;
	margin: 0 auto;
}
.grz-mobile-search input {
	height: 44px;
	padding-inline-end: 50px;
}
.grz-mobile-search button {
	position: absolute;
	inset-inline-end: 5px;
	top: 5px;
	width: 38px;
	height: 38px;
	padding: 0;
}
.grz-drawer-overlay {
	position: fixed;
	inset: 0;
	z-index: 998;
	background: rgba(7, 18, 38, 0.48);
	backdrop-filter: blur(4px);
	opacity: 0;
	transition: opacity var(--grz-transition);
}
.grz-drawer-overlay.is-open {
	opacity: 1;
}
.grz-mobile-drawer {
	position: fixed;
	inset-block: 0;
	inset-inline-end: 0;
	z-index: 999;
	display: flex;
	width: min(88vw, 410px);
	flex-direction: column;
	background: var(--grz-surface);
	box-shadow: -20px 0 50px rgba(16, 36, 71, 0.2);
	padding: 22px;
	transform: translateX(105%);
	transition: transform 240ms cubic-bezier(0.2, 0.75, 0.2, 1);
}
.grz-mobile-drawer.is-open {
	transform: translateX(0);
}
.grz-mobile-drawer__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--grz-line);
}
.grz-brand--drawer {
	width: 128px;
}
.grz-brand--drawer .grz-brand__main {
	font-size: 2.1rem;
}
.grz-mobile-nav {
	overflow-y: auto;
	padding: 16px 0;
}
.grz-mobile-menu > li > a {
	display: flex;
	align-items: center;
	gap: 12px;
	border-radius: 11px;
	color: var(--grz-ink);
	font-size: 0.95rem;
	font-weight: 750;
	padding: 13px 12px;
	text-decoration: none;
}
.grz-mobile-menu > li > a:hover,
.grz-mobile-menu > li.current-menu-item > a {
	background: var(--grz-blue-mist);
	color: var(--grz-blue);
}
.grz-mobile-menu .sub-menu {
	margin: 0;
	margin-block-end: 8px;
	margin-inline-start: 20px;
	padding-inline-start: 14px;
	border-inline-start: 1px solid var(--grz-line);
}
.grz-mobile-menu .sub-menu a {
	display: block;
	color: var(--grz-muted);
	font-size: 0.88rem;
	font-weight: 650;
	padding: 9px 10px;
	text-decoration: none;
}
.grz-mobile-drawer__quick-links {
	display: grid;
	gap: 6px;
	padding: 16px 0;
	border-top: 1px solid var(--grz-line);
}
.grz-mobile-drawer__quick-links a {
	display: flex;
	align-items: center;
	gap: 11px;
	color: var(--grz-ink-soft);
	font-size: 0.88rem;
	font-weight: 650;
	padding: 9px 6px;
	text-decoration: none;
}
.grz-mobile-drawer__quick-links a:hover {
	color: var(--grz-blue);
}
.grz-mobile-drawer__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 0;
	border-top: 1px solid var(--grz-line);
	color: var(--grz-muted);
	font-size: 0.83rem;
	font-weight: 650;
}
.grz-mobile-drawer__meta span {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}
.grz-sign-in--drawer {
	width: 100%;
	margin-top: auto;
}
.no-js .grz-mobile-menu-button,
.no-js .grz-mobile-search-button {
	display: none;
}
@media (max-width: 1460px) {
	.grz-main-header__inner {
		grid-template-columns: auto minmax(330px, 1fr) minmax(220px, 280px) auto;
		gap: 15px;
	}

	.grz-primary-menu > li > a {
		padding-inline: 7px;
		font-size: 0.76rem;
	}

	.grz-brand {
		width: 100px;
	}

	.grz-brand__main {
		font-size: 1.66rem;
	}

	.grz-brand__sub {
		font-size: 0.6rem;
	}
}
@media (max-width: 1260px) {
	.grz-top-strip__item span {
		display: none;
	}

	.grz-main-header__inner {
		grid-template-columns: auto minmax(280px, 1fr) minmax(210px, 270px) auto;
	}

	.grz-primary-menu .grz-menu-icon {
		display: none;
	}

	.grz-sign-in {
		padding-inline: 12px;
	}
}
@media (max-width: 1120px) {
	.grz-header {
		padding: 0;
	}

	.grz-header__shell {
		width: 100%;
		border-right: 0;
		border-left: 0;
		border-radius: 0;
		box-shadow: 0 10px 30px rgba(16, 36, 71, 0.08);
	}

	.grz-top-strip {
		border-radius: 0;
	}

	.grz-utility {
		display: none;
	}

	.grz-main-header__inner {
		min-height: 58px;
		gap: 9px;
	}

	.grz-mobile-menu-button,
.grz-mobile-search-button {
		display: inline-grid;
	}

	.grz-primary-nav,
.grz-product-search,
.grz-sign-in {
		display: none;
	}

	.grz-brand {
		width: 88px;
	}

	.grz-brand__main {
		font-size: 1.56rem;
	}

	.grz-brand__sub {
		font-size: 0.58rem;
		letter-spacing: 0.4em;
	}

	.grz-header-actions {
		grid-column: 4;
	}

}
@media (max-width: 720px) {
	.grz-top-strip__track {
		display: flex;
		overflow-x: auto;
		padding: 0 14px;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.grz-top-strip__track::-webkit-scrollbar {
		display: none;
	}

	.grz-top-strip__item {
		min-width: 175px;
		justify-content: flex-start;
		padding: 7px 14px;
		scroll-snap-align: start;
	}

	.grz-top-strip__item + .grz-top-strip__item::before {
		height: 20px;
	}

	.grz-main-header__inner {
		width: calc(100% - 24px);
		min-height: 56px;
	}

	.grz-brand {
		width: 88px;
	}

	.grz-brand__main {
		font-size: 1.48rem;
	}

	.grz-brand__sub {
		margin-top: 5px;
		font-size: 0.58rem;
	}

	.grz-header-actions {
		grid-column: 3;
		gap: 2px;
	}

	.grz-icon-button {
		width: 36px;
		height: 36px;
		min-height: 36px;
	}

	.grz-icon-button .grz-icon {
		width: 20px;
		height: 20px;
	}

	.grz-cart-count {
		top: -1px;
		inset-inline-end: -2px;
	}

}
@media (max-width: 420px) {
	.grz-main-header__inner {
		grid-template-columns: 40px minmax(84px, 1fr) auto;
	}

	.grz-mobile-drawer {
		width: 92vw;
		padding: 18px;
	}
}
/* RTL adjustments (Arabic locales). */
[dir="rtl"] .grz-mobile-drawer {
	transform: translateX(-105%);
	box-shadow: 20px 0 50px rgba(16, 36, 71, 0.2);
}
[dir="rtl"] .grz-mobile-drawer.is-open {
	transform: translateX(0);
}
[dir="rtl"] .grz-top-strip::after {
	transform: scaleX(1);
}
[dir="rtl"] .grz-top-strip::before {
	transform: scaleX(-1);
}
/* Sticky header (GRZ Theme → Header). */
.grz-header-sticky .grz-header {
	position: sticky;
	top: var(--wp-admin--admin-bar--height, 0px);
}
@media (min-width: 1121px) {

	.grz-product-search input {
		box-shadow: inset 0 0 0 1px rgba(24, 55, 91, 0.015);
	}

	.grz-product-search:focus-within input {
		border-color: color-mix(in srgb, var(--grz-blue) 42%, var(--grz-line-strong));
		box-shadow: 0 0 0 3px rgba(8, 104, 242, 0.09);
	}

	.grz-header-action {
		width: 42px;
		height: 42px;
		min-height: 42px;
		border-radius: 7px;
	}

	.grz-header-action .grz-icon {
		width: 21px;
		height: 21px;
		stroke-width: 1.9;
	}

	.grz-sign-in {
		font-size: 0.78rem;
	}
}
@media (max-width: 1120px) {
	.grz-main-header__inner {
		grid-template-columns: auto auto 1fr auto;
	}

	.grz-header-actions {
		gap: 3px;
	}

	.grz-cart-count {
		top: -1px;
		inset-inline-end: -2px;
	}
}
@media (max-width: 720px) {
	.grz-main-header__inner {
		grid-template-columns: 42px minmax(88px, 1fr) auto;
	}
}
@media (max-width: 380px) {
	.grz-header-actions {
		gap: 0;
	}

	.grz-header-actions .grz-icon-button {
		width: 36px;
		height: 36px;
		min-height: 36px;
	}
}
@media (min-width: 1121px) {

	.grz-header-actions .grz-icon-button {
		border-color: #dfe7f1;
	}

	.grz-cart-link .grz-icon {
		width: 23px;
		height: 23px;
	}

	.grz-account-icon.is-authenticated {
		border-color: color-mix(in srgb, var(--grz-blue) 24%, #dfe7f1);
		background: color-mix(in srgb, var(--grz-blue) 6%, #fff);
		color: var(--grz-blue);
	}
}
@media (min-width: 1261px) and (max-width: 1460px) {
	.grz-main-header__inner {
		grid-template-columns: auto minmax(280px, 1fr) minmax(330px, 430px) auto;
	}
}
@media (min-width: 1121px) and (max-width: 1260px) {
	.grz-main-header__inner {
		grid-template-columns: auto minmax(230px, 1fr) minmax(300px, 370px) auto;
		gap: 12px;
	}
}
@media (max-width: 1120px) {
	.grz-header-actions .grz-account-icon,
.grz-header-actions .grz-cart-link,
.grz-header-actions .grz-mobile-search-button {
		display: inline-grid;
	}
}
@media (max-width: 720px) {
	.grz-header-actions .grz-icon-button {
		width: 39px;
		height: 39px;
		min-height: 39px;
	}

	.grz-mobile-search input {
		height: 46px;
		min-height: 46px;
		border-radius: 7px;
		font-size: 0.86rem;
	}
}
/* Unified language and currency links. */
.grz-locale-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 28px;
	border-radius: 5px;
	color: inherit;
	font: inherit;
	text-decoration: none;
	padding: 3px 6px;
	transition: background 160ms ease, color 160ms ease;
}
.grz-locale-link:hover,
.grz-locale-link:focus-visible {
	background: rgba(8, 104, 242, 0.08);
	color: var(--grz-blue);
}
.grz-locale-link .grz-icon {
	width: 14px;
	height: 14px;
}
.grz-mobile-drawer__meta .grz-locale-link {
	justify-content: center;
	border: 1px solid rgba(123, 145, 173, 0.2);
	background: rgba(255, 255, 255, 0.04);
	padding: 8px 10px;
}
.grz-header :where(button, a, input):focus-visible {
	outline: 3px solid rgba(8, 104, 242, 0.22);
	outline-offset: 2px;
}
.grz-header-actions .grz-wishlist-link,
.grz-header-actions [data-grz-favorite-header],
.grz-header-actions .grz-header-favorite {
	display: none !important;
}
@media (min-width: 1121px) {
	.grz-main-header__inner {
		grid-template-columns: auto minmax(270px, 1fr) minmax(370px, 510px) auto;
		gap: clamp(14px, 1.35vw, 24px);
		min-height: 76px;
	}
}
@media (min-width: 1121px) {

	.grz-product-search {
		width: 100%;
		max-width: 510px;
		justify-self: end;
	}
}
@media (min-width: 1121px) {

	.grz-product-search input {
		height: 44px;
		min-height: 44px;
		padding-inline: 15px 52px;
		border-color: var(--grz-ui-line-strong);
		border-radius: var(--grz-ui-radius-control);
		background: #fff;
		font-size: 0.82rem;
	}
}
@media (min-width: 1121px) {

	.grz-product-search button {
		inset-inline-end: 5px;
		width: 34px;
		height: 34px;
		border-radius: 5px;
	}
}
@media (min-width: 1121px) {

	.grz-product-search button .grz-icon {
		width: 18px;
		height: 18px;
	}
}
@media (min-width: 1121px) {

	.grz-header-actions {
		gap: 5px;
	}
}
@media (min-width: 1121px) {

	.grz-header-actions .grz-icon-button {
		width: 40px;
		height: 40px;
		min-height: 40px;
		border: 1px solid transparent;
		border-radius: var(--grz-ui-radius-control);
		background: transparent;
		box-shadow: none;
		color: var(--grz-ui-ink);
	}
}
@media (min-width: 1121px) {

	.grz-header-actions .grz-icon-button:hover {
		border-color: rgba(8, 104, 242, 0.26);
		background: var(--grz-ui-blue-soft);
		box-shadow: none;
		color: var(--grz-blue);
		transform: none;
	}
}
@media (min-width: 1121px) {

	.grz-header-actions .grz-icon-button:focus-visible {
		border-color: rgba(8, 104, 242, 0.26);
		background: var(--grz-ui-blue-soft);
		box-shadow: none;
		color: var(--grz-blue);
		transform: none;
	}
}
@media (min-width: 1121px) {

	.grz-header-actions .grz-icon-button .grz-icon {
		width: 21px;
		height: 21px;
		stroke-width: 1.85;
	}
}
@media (min-width: 1121px) {

	.grz-header-actions .grz-cart-link .grz-icon {
		width: 21px;
		height: 21px;
		stroke-width: 1.85;
	}
}
@media (min-width: 1121px) {

	.grz-header-actions .grz-account-icon .grz-icon {
		width: 21px;
		height: 21px;
		stroke-width: 1.85;
	}
}
@media (min-width: 1121px) {

	.grz-header-actions .grz-account-icon.is-authenticated {
		border-color: transparent;
		background: transparent;
		color: var(--grz-ui-ink);
	}
}
@media (min-width: 1121px) {

	.grz-header-actions .grz-account-icon.is-authenticated:hover {
		border-color: rgba(8, 104, 242, 0.26);
		background: var(--grz-ui-blue-soft);
		color: var(--grz-blue);
	}
}
@media (min-width: 1121px) {

	.grz-header-actions .grz-account-icon.is-authenticated:focus-visible {
		border-color: rgba(8, 104, 242, 0.26);
		background: var(--grz-ui-blue-soft);
		color: var(--grz-blue);
	}
}
@media (min-width: 1121px) {

	.grz-sign-in {
		min-height: 42px;
		padding-inline: 15px;
		border-radius: var(--grz-ui-radius-control);
	}
}
@media (min-width: 1121px) {

	.grz-cart-count {
		top: -3px;
		inset-inline-end: -4px;
		min-width: 18px;
		height: 18px;
		padding-inline: 4px;
		border: 2px solid #fff;
		font-size: 0.58rem;
		line-height: 14px;
	}
}
@media (min-width: 1121px) and (max-width: 1320px) {
	.grz-main-header__inner {
		grid-template-columns: auto minmax(220px, 1fr) minmax(310px, 410px) auto;
		gap: 12px;
	}
}
@media (max-width: 1120px) {
	.grz-header-actions .grz-icon-button {
		width: 38px;
		height: 38px;
		min-height: 38px;
		border: 1px solid transparent;
		border-radius: var(--grz-ui-radius-control);
		background: transparent;
		box-shadow: none;
	}
}
@media (max-width: 1120px) {

	.grz-header-actions .grz-icon-button:hover {
		border-color: rgba(8, 104, 242, 0.26);
		background: var(--grz-ui-blue-soft);
		color: var(--grz-blue);
	}
}
@media (max-width: 1120px) {

	.grz-header-actions .grz-icon-button:focus-visible {
		border-color: rgba(8, 104, 242, 0.26);
		background: var(--grz-ui-blue-soft);
		color: var(--grz-blue);
	}
}
@media (max-width: 1120px) {

	.grz-header-actions .grz-icon-button .grz-icon {
		width: 21px;
		height: 21px;
	}
}
@media (max-width: 1120px) {

	.grz-header-actions .grz-account-icon.is-authenticated {
		border-color: transparent;
		background: transparent;
		color: var(--grz-ui-ink);
	}
}
@media (max-width: 1120px) {

	.grz-mobile-search form {
		min-height: 48px;
	}
}
@media (max-width: 1120px) {

	.grz-mobile-search input {
		min-height: 48px;
	}
}
@media (max-width: 360px) {
	.grz-header-actions .grz-icon-button {
		width: 38px;
		height: 38px;
		min-height: 38px;
	}
}


/* v1.5.50: header category links — clean sans labels, sentence case, no icons. */
.grz-primary-menu a {
	font-family: Arial, Helvetica, sans-serif;
}
.grz-primary-menu > li > a {
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.01em;
}
.grz-primary-menu .grz-menu-icon {
	display: none;
}
@media (max-width: 1460px) {
	.grz-primary-menu > li > a {
		font-size: 0.8rem;
	}
}


/* v1.5.50: header nav — kill the dead zone between menu and search, flat hover. */
@media (min-width: 1121px) {
	.grz-main-header__inner {
		grid-template-columns: auto auto minmax(280px, 1fr) auto;
	}

	.grz-product-search {
		width: 100%;
		max-width: none;
		justify-self: stretch;
	}
}
.grz-primary-menu > li > a:hover,
.grz-primary-menu > li.current-menu-item > a,
.grz-primary-menu > li.current-menu-ancestor > a {
	background: transparent;
	color: var(--grz-ink);
	box-shadow: inset 0 -2px 0 var(--grz-ink);
	transform: none;
}
.grz-primary-menu .sub-menu a:hover,
.grz-primary-menu .sub-menu .current-menu-item > a {
	background: #f2f4f7;
	color: var(--grz-ink);
}


/* v1.5.50 rev2: compact search docked right by the icons, spaced-out categories. */
@media (min-width: 1121px) {
	.grz-main-header__inner {
		grid-template-columns: auto 1fr auto auto;
	}

	.grz-product-search {
		width: clamp(230px, 26vw, 340px);
		max-width: none;
		justify-self: end;
	}

	.grz-header-actions {
		justify-self: end;
	}
}
.grz-primary-menu {
	gap: clamp(14px, 1.8vw, 30px);
}
/* ===== END SOURCE: assets/css/header.css ===== */

/* ===== BEGIN SOURCE: assets/css/footer.css ===== */
/*  GRZ Gaming — footer canonical stylesheet.  */
.grz-footer {
	padding: 0;
	background: var(--grz-canvas);
}
.grz-footer__shell {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin: 0;
	border: 0;
	border-radius: 0;
	background: var(--grz-surface);
	box-shadow: none;
}
.grz-footer-trust {
	position: relative;
	z-index: 2;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 25%, rgba(255, 255, 255, 0.05) 68%, transparent),
		linear-gradient(135deg, var(--grz-blue-dark) 0%, var(--grz-blue) 62%, #0a7cff 100%);
	color: #fff;
}
/* Blue mist spilling out of the trust band so the band and the main footer
 * read as one continuous surface instead of blue-cut-then-white. */
.grz-footer-trust::after {
	position: absolute;
	inset-inline: 0;
	bottom: -44px;
	height: 44px;
	background: linear-gradient(180deg, rgba(10, 124, 255, 0.16), rgba(10, 124, 255, 0));
	content: "";
	pointer-events: none;
}
.grz-footer-trust__track {
	display: grid;
	box-sizing: border-box;
	width: min(100%, var(--grz-container));
	padding-inline: var(--grz-gutter);
	grid-template-columns: repeat(4, minmax(0, 1fr));
	min-height: 48px;
	align-items: center;
	margin-inline: auto;
}
.grz-footer-trust__item {
	position: relative;
	display: flex;
	min-width: 0;
	align-items: center;
	gap: 10px;
	padding: 8px 18px;
}
.grz-footer-trust__item + .grz-footer-trust__item::before {
	position: absolute;
	inset-inline-start: 0;
	width: 1px;
	height: 26px;
	background: rgba(255, 255, 255, 0.35);
	content: "";
	transform: rotate(24deg);
}
.grz-footer-trust__item > .grz-icon {
	width: 22px;
	height: 22px;
	flex: 0 0 auto;
}
.grz-footer-trust__item > span {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 3px;
}
.grz-footer-trust__item strong {
	font-size: 0.74rem;
	font-weight: 850;
	line-height: 1.3;
}
.grz-footer-trust__item small {
	overflow: hidden;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.69rem;
	line-height: 1.25;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.grz-footer-main {
	position: relative;
	z-index: 1;
	overflow: hidden;
	/* Stronger blue-mist bridge: visibly continues the trust band's blue and
	 * settles to white, so there is no empty white strip under the band. */
	background: linear-gradient(180deg, #d5e5fd 0%, #e6f0fe 26%, #f3f8ff 55%, #fbfdff 82%, #ffffff 100%);
	padding: 18px var(--grz-gutter) 16px;
}
.grz-footer-main::before,
.grz-footer-main::after,
.grz-footer-bottom::before,
.grz-footer-bottom::after {
	position: absolute;
	z-index: -1;
	width: min(22vw, 320px);
	height: 100%;
	content: "";
	opacity: 0.45;
	background-image:
		linear-gradient(30deg, rgba(8, 104, 242, 0.075) 12%, transparent 12.5%, transparent 87%, rgba(8, 104, 242, 0.075) 87.5%, rgba(8, 104, 242, 0.075)),
		linear-gradient(150deg, rgba(8, 104, 242, 0.075) 12%, transparent 12.5%, transparent 87%, rgba(8, 104, 242, 0.075) 87.5%, rgba(8, 104, 242, 0.075)),
		linear-gradient(30deg, rgba(8, 104, 242, 0.075) 12%, transparent 12.5%, transparent 87%, rgba(8, 104, 242, 0.075) 87.5%, rgba(8, 104, 242, 0.075)),
		linear-gradient(150deg, rgba(8, 104, 242, 0.075) 12%, transparent 12.5%, transparent 87%, rgba(8, 104, 242, 0.075) 87.5%, rgba(8, 104, 242, 0.075)),
		linear-gradient(60deg, rgba(8, 104, 242, 0.045) 25%, transparent 25.5%, transparent 75%, rgba(8, 104, 242, 0.045) 75%, rgba(8, 104, 242, 0.045)),
		linear-gradient(60deg, rgba(8, 104, 242, 0.045) 25%, transparent 25.5%, transparent 75%, rgba(8, 104, 242, 0.045) 75%, rgba(8, 104, 242, 0.045));
	background-position: 0 0, 0 0, 30px 52px, 30px 52px, 0 0, 30px 52px;
	background-size: 60px 104px;
	pointer-events: none;
}
.grz-footer-main::before,
.grz-footer-bottom::before {
	left: 0;
	-webkit-mask-image: linear-gradient(90deg, #000, transparent);
	mask-image: linear-gradient(90deg, #000, transparent);
}
.grz-footer-main::after,
.grz-footer-bottom::after {
	right: 0;
	-webkit-mask-image: linear-gradient(270deg, #000, transparent);
	mask-image: linear-gradient(270deg, #000, transparent);
}
.grz-footer-main__grid {
	display: grid;
	width: min(100%, var(--grz-container-inner));
	grid-template-columns: 1.35fr repeat(4, minmax(130px, 0.78fr)) 1.25fr;
	align-items: start;
	gap: clamp(16px, 1.65vw, 26px);
	margin-inline: auto;
}
.grz-footer-brand {
	max-width: 235px;
}
.grz-brand--footer {
	width: 108px;
	margin-bottom: 11px;
}
.grz-brand--footer .grz-brand__main {
	font-size: 1.82rem;
}
.grz-footer-brand p {
	margin: 0 0 11px;
	color: var(--grz-muted);
	font-size: 0.72rem;
	line-height: 1.48;
}
.grz-footer-brand__badge {
	display: inline-flex;
	min-height: 26px;
	align-items: center;
	gap: 8px;
	border: 1px solid var(--grz-line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	color: var(--grz-ink-soft);
	font-size: 0.69rem;
	font-weight: 700;
	padding: 5px 9px;
}
.grz-footer-brand__badge .grz-icon {
	color: var(--grz-blue);
}
.grz-footer-column h2,
.grz-footer-support h2 {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 9px;
	font-size: 0.69rem;
	font-weight: 900;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}
.grz-footer-column h2 .grz-icon {
	width: 14px;
	height: 14px;
	color: var(--grz-blue);
}
.grz-footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}
.grz-footer-menu li + li {
	margin-top: 5px;
}
.grz-footer-menu a {
	display: inline-block;
	color: var(--grz-muted);
	font-size: 0.69rem;
	font-weight: 520;
	text-decoration: none;
	transition: color var(--grz-transition), transform var(--grz-transition);
}
.grz-footer-menu a:hover {
	color: var(--grz-blue);
	transform: translateX(2px);
}
.grz-footer-support {
	min-width: 0;
	padding-inline-start: clamp(15px, 1.4vw, 22px);
	border-inline-start: 1px solid var(--grz-line);
}
.grz-footer-support > p {
	margin: -2px 0 9px;
	color: var(--grz-muted);
	font-size: 0.69rem;
	line-height: 1.42;
}
.grz-footer-support__links {
	display: grid;
	gap: 6px;
}
.grz-footer-support__links a {
	display: flex;
	min-width: 0;
	min-height: 25px;
	align-items: center;
	gap: 9px;
	border: 1px solid var(--grz-line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.86);
	color: var(--grz-muted);
	font-size: 0.69rem;
	font-weight: 650;
	padding: 5px 9px;
	text-decoration: none;
	transition: border-color var(--grz-transition), color var(--grz-transition), transform var(--grz-transition);
}
.grz-footer-support__links a:hover {
	border-color: rgba(8, 104, 242, 0.32);
	color: var(--grz-blue);
	transform: translateY(-1px);
}
.grz-footer-support__links a .grz-icon {
	width: 14px;
	height: 14px;
	color: var(--grz-blue);
}
.grz-footer-support__links a span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.grz-footer-support__links em {
	margin-inline-start: auto;
	color: var(--grz-blue);
	font-size: 0.69rem;
	font-style: normal;
}
.grz-footer-support__links em::before {
	display: inline-block;
	width: 5px;
	height: 5px;
	margin-inline-end: 6px;
	border-radius: 50%;
	background: var(--grz-blue);
	content: "";
	vertical-align: middle;
}
.grz-footer-media {
	min-width: 0;
}
.grz-footer-media__label {
	display: block;
	margin-bottom: 7px;
	color: var(--grz-ink-soft);
	font-size: 0.66rem;
	font-weight: 850;
	letter-spacing: 0.035em;
	line-height: 1.3;
	text-transform: uppercase;
}
.grz-footer-media__link,
.grz-footer-media__image-wrap {
	display: inline-flex;
	max-width: 100%;
	align-items: center;
	border-radius: 8px;
	outline: 0;
	text-decoration: none;
}
.grz-footer-media__link {
	transition: filter var(--grz-transition), transform var(--grz-transition);
}
.grz-footer-media__link:hover {
	filter: brightness(1.025);
	transform: translateY(-2px);
}
.grz-footer-media__link:focus-visible {
	box-shadow: 0 0 0 3px rgba(8, 104, 242, 0.2);
}
.grz-footer-android {
	margin-top: 14px;
}
.grz-footer-android__image {
	display: block;
	width: min(100%, var(--grz-footer-android-width, 160px));
	height: auto;
	max-height: 74px;
	object-fit: contain;
	object-position: left center;
}
.grz-footer-support__extras {
	display: grid;
	gap: 14px;
	margin-top: 14px;
}
.grz-footer-trustpilot {
	padding-top: 12px;
	border-top: 1px solid var(--grz-line);
}
.grz-footer-trustpilot__image {
	display: block;
	width: min(100%, var(--grz-footer-trustpilot-width, 180px));
	height: auto;
	max-height: 82px;
	object-fit: contain;
	object-position: left center;
}
.grz-footer-apps {
	margin-top: 14px;
}
.grz-footer-apps h3 {
	margin: 0 0 5px;
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.025em;
	text-transform: uppercase;
}
.grz-footer-apps p {
	margin: 0 0 12px;
	color: var(--grz-muted);
	font-size: 0.76rem;
}
.grz-footer-apps__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.grz-footer-apps__buttons a {
	display: flex;
	min-width: 118px;
	flex-direction: column;
	border: 1px solid var(--grz-line);
	border-radius: 8px;
	background: #fff;
	color: var(--grz-ink);
	padding: 8px 11px;
	text-decoration: none;
}
.grz-footer-apps__buttons a:hover {
	border-color: rgba(8, 104, 242, 0.3);
	color: var(--grz-blue);
}
.grz-footer-apps__buttons small {
	color: var(--grz-muted);
	font-size: 0.69rem;
	line-height: 1.15;
}
.grz-footer-apps__buttons strong {
	font-size: 0.73rem;
	line-height: 1.25;
}
.grz-footer-bottom {
	position: relative;
	z-index: 1;
	overflow: hidden;
	border-top: 1px solid var(--grz-line);
	background: linear-gradient(180deg, rgba(247, 250, 255, 0.72), #fff);
}
.grz-footer-bottom__row {
	display: grid;
	box-sizing: border-box;
	width: min(100%, var(--grz-container));
	padding-inline: var(--grz-gutter);
	grid-template-columns: minmax(0, 1.5fr) auto minmax(0, 0.8fr);
	min-height: 52px;
	align-items: center;
	gap: 16px;
	margin-inline: auto;
	padding-block: 8px;
}
.grz-payment-methods,
.grz-social-links,
.grz-footer-locales {
	display: flex;
	align-items: center;
	gap: 6px;
}
.grz-payment-methods {
	grid-column: 1;
}
.grz-social-links {
	grid-column: 2;
}
.grz-payment-methods strong,
.grz-social-links strong,
.grz-footer-locales strong {
	margin-inline-end: 4px;
	color: var(--grz-ink-soft);
	font-size: 0.69rem;
	font-weight: 900;
	letter-spacing: 0.035em;
	text-transform: uppercase;
	white-space: nowrap;
}
.grz-payment-methods span {
	display: inline-flex;
	min-height: 28px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--grz-line);
	border-radius: 8px;
	background: #fff;
	color: var(--grz-ink-soft);
	font-size: 0.69rem;
	font-weight: 800;
	padding: 3px 7px;
	white-space: nowrap;
}
.grz-footer-bottom__row.has-payment-image {
	grid-template-columns: minmax(0, 2fr) auto minmax(0, 0.72fr);
	min-height: 78px;
}
.grz-payment-methods--image {
	min-width: 0;
	width: 100%;
	justify-content: flex-start;
	line-height: 0;
}
.grz-payment-methods__image {
	display: block;
	width: min(100%, var(--grz-payment-image-width, 760px));
	height: auto;
	max-height: 70px;
	object-fit: contain;
	object-position: left center;
}
.grz-social-links {
	padding-inline: 14px;
	border-inline: 1px solid var(--grz-line);
}
.grz-social-links a {
	display: inline-grid;
	width: 27px;
	height: 27px;
	place-items: center;
	border: 1px solid var(--grz-line);
	border-radius: 50%;
	background: #fff;
	color: var(--grz-blue);
	text-decoration: none;
	transition: background var(--grz-transition), color var(--grz-transition), transform var(--grz-transition);
}
.grz-social-links a:hover {
	background: var(--grz-blue);
	color: #fff;
	transform: translateY(-2px);
}
.grz-social-links .grz-icon {
	width: 15px;
	height: 15px;
}
.grz-footer-locales {
	grid-column: 3;
	justify-self: end;
	justify-content: flex-end;
}
.grz-footer-locales__controls {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.grz-footer-locales__separator {
	width: 1px;
	height: 20px;
	flex: 0 0 1px;
	background: var(--grz-line);
}
.grz-footer-copyright {
	display: flex;
	box-sizing: border-box;
	width: min(100%, var(--grz-container));
	padding-inline: var(--grz-gutter);
	min-height: 34px;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-inline: auto;
	border-top: 1px solid var(--grz-line);
	color: var(--grz-muted);
	font-size: 0.69rem;
	padding-block: 7px;
	text-align: center;
}
.grz-footer-copyright span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.grz-footer-copyright .grz-icon {
	color: var(--grz-blue);
}
.grz-footer-copyright__divider {
	width: 1px;
	height: 20px;
	background: var(--grz-line-strong);
}
@media (min-width: 761px) {
	.grz-footer-media--hide-desktop {
		display: none !important;
	}
}
@media (max-width: 760px) {
	.grz-footer-media--hide-mobile {
		display: none !important;
	}
}
@media (max-width: 1180px) {
	.grz-footer-main__grid {
		grid-template-columns: 1.25fr repeat(4, minmax(120px, 0.72fr));
	}

	.grz-footer-support {
		grid-column: 1 / -1;
		display: grid;
		grid-template-columns: auto 1fr auto;
		align-items: center;
		gap: 14px 22px;
		margin-top: 6px;
		padding: 14px 0 0;
		border-top: 1px solid var(--grz-line);
		border-inline-start: 0;
	}

	.grz-footer-support h2,
.grz-footer-support > p {
		margin: 0;
	}

	.grz-footer-support__links {
		display: flex;
		flex-wrap: wrap;
	}

	.grz-footer-support__extras {
		grid-column: 1 / -1;
		display: flex;
		align-items: flex-start;
		flex-wrap: wrap;
		gap: 14px 24px;
		margin: 0;
	}

	.grz-footer-trustpilot {
		padding: 0;
		border: 0;
	}

	.grz-footer-apps {
		margin: 0;
	}
}
@media (max-width: 1120px) {
	.grz-footer-trust__track {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.grz-footer-trust__track::-webkit-scrollbar {
		display: none;
	}

	.grz-footer-trust__item {
		min-width: 260px;
		scroll-snap-align: start;
	}

	.grz-footer-main__grid {
		grid-template-columns: 1.25fr repeat(2, 1fr);
	}

	.grz-footer-column:nth-of-type(4),
.grz-footer-column:nth-of-type(5) {
		margin-top: 12px;
	}

	.grz-footer-support {
		grid-template-columns: 1fr;
	}

	.grz-footer-bottom__row,
	.grz-footer-bottom__row.has-payment-image {
		grid-template-columns: 1fr;
		justify-items: center;
		gap: 10px;
		padding-block: 10px;
	}

	.grz-payment-methods,
	.grz-social-links,
	.grz-footer-locales {
		grid-column: 1;
		justify-self: center;
	}

	.grz-payment-methods {
		flex-wrap: wrap;
		justify-content: center;
	}

	.grz-payment-methods--image {
		width: min(100%, var(--grz-payment-image-width, 760px));
		justify-content: center;
	}

	.grz-payment-methods__image {
		object-position: center;
	}

	.grz-social-links {
		border: 0;
		padding: 0;
	}

	.grz-footer-locales {
		justify-content: center;
	}
}
@media (max-width: 760px) {
	.grz-footer {
		padding: 0;
	}

	.grz-footer-trust__track {
		padding-inline: 10px;
	}

	.grz-footer-trust__item {
		min-width: 230px;
		padding: 11px 18px;
	}

	.grz-footer-trust__item > .grz-icon {
		width: 24px;
		height: 24px;
	}

	.grz-footer-main {
		padding: 22px var(--grz-gutter) 16px;
	}

	.grz-footer-main__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 22px 18px;
	}

	.grz-footer-brand,
.grz-footer-support {
		grid-column: 1 / -1;
		max-width: none;
	}

	.grz-footer-brand {
		text-align: center;
	}

	.grz-footer-android__image {
		object-position: center;
	}

	.grz-footer-support__extras {
		display: grid;
	}

	.grz-footer-trustpilot__image {
		object-position: left center;
	}

	.grz-brand--footer {
		justify-content: center;
		margin-inline: auto;
	}

	.grz-footer-support {
		text-align: left;
	}

	.grz-footer-support__links {
		display: grid;
	}

	.grz-footer-bottom__row {
		padding-inline: 22px;
	}

	.grz-payment-methods strong {
		width: 100%;
		text-align: center;
	}

	.grz-footer-bottom__row.has-payment-image {
		min-height: 0;
	}

	.grz-payment-methods--image {
		width: 100%;
	}

	.grz-payment-methods__image {
		width: 100%;
		max-height: 58px;
	}

	.grz-footer-copyright {
		flex-direction: column;
		gap: 8px;
		padding-block: 10px;
	}

	.grz-footer-copyright__divider {
		display: none;
	}
}
@media (max-width: 460px) {
	.grz-footer-main__grid {
		grid-template-columns: 1fr;
	}

	.grz-footer-brand,
.grz-footer-support {
		grid-column: auto;
	}

	.grz-footer-column {
		padding-bottom: 18px;
		border-bottom: 1px solid var(--grz-line);
	}

	.grz-payment-methods span {
		font-size: 0.69rem;
		padding-inline: 8px;
	}
}
/* RTL adjustments (Arabic locales). */
[dir="rtl"] .grz-footer-menu a:hover {
	transform: translateX(-2px);
}
.grz-footer-locales .grz-locale-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 36px;
	border-radius: 6px;
	color: var(--grz-ink-soft);
	font-size: 0.75rem;
	font-weight: 800;
	text-decoration: none;
	padding: 4px 3px;
	transition: background 160ms ease, color 160ms ease;
}
.grz-footer-locales .grz-locale-link:hover,
.grz-footer-locales .grz-locale-link:focus-visible {
	background: var(--grz-blue-mist);
	color: var(--grz-blue);
}
.grz-footer-locales .grz-locale-link--static {
	cursor: default;
}
.grz-footer-locales .grz-locale-link .grz-icon {
	width: 16px;
	height: 16px;
}
.grz-footer-locales .grz-locale-country-flag {
	width: 20px;
	height: 20px;
	flex-basis: 20px;
}
/* ===== END SOURCE: assets/css/footer.css ===== */

/* ===== BEGIN SOURCE: assets/css/content.css ===== */
/*  GRZ Gaming — content canonical stylesheet.  */
.grz-entry,
.grz-archive-header,
.grz-empty-state,
.grz-error-page {
	border: 1px solid var(--grz-line);
	border-radius: var(--grz-radius-lg);
	background: var(--grz-surface);
	box-shadow: var(--grz-shadow-sm);
}
.grz-entry {
	overflow: hidden;
	margin-bottom: 28px;
}
/* Operational WooCommerce pages own their complete application shell. */
.grz-entry.grz-entry--system {
	overflow: visible;
	margin: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}
.grz-entry__content--system {
	min-width: 0;
}
.grz-entry__content--system > :first-child {
	margin-top: 0;
}
.grz-entry__content--system > :last-child {
	margin-bottom: 0;
}
.grz-entry__thumbnail img {
	display: block;
	width: 100%;
	max-height: 560px;
	object-fit: cover;
}
.grz-entry__body {
	padding: clamp(26px, 4vw, 52px);
}
.grz-entry__title {
	font-size: clamp(1.7rem, 3vw, 2.7rem);
}
.grz-entry__title a {
	color: inherit;
	text-decoration: none;
}
.grz-entry__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	margin-bottom: 22px;
	color: var(--grz-muted);
	font-size: 0.8rem;
}
.grz-entry__content > *:first-child {
	margin-top: 0;
}
.grz-entry__content > *:last-child {
	margin-bottom: 0;
}
.grz-entry__content a {
	font-weight: 650;
}
.grz-entry__content blockquote {
	margin: 2rem 0;
	border-inline-start: 4px solid var(--grz-blue);
	border-radius: 12px;
	border-start-start-radius: 0;
	border-end-start-radius: 0;
	background: var(--grz-blue-mist);
	padding: 1.25rem 1.5rem;
}
.grz-archive-header {
	margin-bottom: 28px;
	padding: 32px clamp(26px, 4vw, 48px);
}
.grz-archive-header h1 {
	margin-bottom: 8px;
	font-size: clamp(1.8rem, 3vw, 2.8rem);
}
.grz-archive-header p {
	margin: 0;
	color: var(--grz-muted);
}
.grz-empty-state,
.grz-error-page {
	padding: clamp(38px, 7vw, 86px);
	text-align: center;
}
.grz-empty-state .grz-icon,
.grz-error-page .grz-icon {
	width: 54px;
	height: 54px;
	margin-bottom: 20px;
	color: var(--grz-blue);
}
.grz-error-page h1 {
	font-size: clamp(2.2rem, 8vw, 5rem);
}
.grz-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-top: 36px;
}
.grz-pagination .page-numbers {
	display: inline-grid;
	min-width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid var(--grz-line);
	border-radius: 10px;
	background: #fff;
	color: var(--grz-ink-soft);
	font-size: 0.82rem;
	font-weight: 750;
	text-decoration: none;
}
.grz-pagination .page-numbers.current,
.grz-pagination a.page-numbers:hover {
	border-color: var(--grz-blue);
	background: var(--grz-blue);
	color: #fff;
}
.page-links {
	display: flex;
	gap: 6px;
	margin-top: 24px;
}
/* --------------------------------------------------------------------------
 * Single article, post navigation, and discussion
 * -------------------------------------------------------------------------- */
.grz-entry--single {
	max-width: 980px;
	margin-inline: auto;
}
.grz-entry__thumbnail--single {
	margin: 0;
	background: var(--grz-blue-mist);
}
.grz-entry__thumbnail--single img {
	width: 100%;
	max-height: 620px;
	object-fit: cover;
}
.grz-entry__body--single {
	padding: clamp(30px, 5vw, 64px);
}
.grz-entry__header--single {
	max-width: 760px;
	margin-bottom: clamp(28px, 4vw, 42px);
}
.grz-entry__title--single {
	margin-block: 10px 16px;
	font-size: clamp(2rem, 4.5vw, 3.75rem);
	line-height: 1.04;
}
.grz-entry__meta--single {
	align-items: center;
	gap: 10px 20px;
	margin: 0;
}
.grz-entry__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}
.grz-entry__meta-item .grz-icon {
	width: 15px;
	height: 15px;
	color: var(--grz-blue);
}
.grz-entry__meta-item a {
	color: inherit;
	font-weight: 700;
	text-decoration: none;
}
.grz-entry__meta-item a:hover {
	color: var(--grz-blue);
}
.grz-entry__taxonomy {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}
.grz-entry__taxonomy a {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 4px 10px;
	border: 1px solid #d7e6fb;
	border-radius: 999px;
	background: var(--grz-blue-mist);
	color: var(--grz-blue-dark);
	font-size: 0.72rem;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
}
.grz-entry__taxonomy a:hover {
	border-color: var(--grz-blue);
	background: var(--grz-blue);
	color: #fff;
}
.grz-entry__content--single {
	color: #354258;
	font-size: clamp(1rem, 1.25vw, 1.08rem);
	line-height: 1.82;
}
.grz-entry__content--single :where(h2, h3, h4, h5, h6) {
	margin-top: 1.65em;
	scroll-margin-top: 130px;
}
.grz-entry__content--single h2 {
	font-size: clamp(1.55rem, 3vw, 2.15rem);
}
.grz-entry__content--single h3 {
	font-size: clamp(1.3rem, 2.2vw, 1.7rem);
}
.grz-entry__content--single :where(ul, ol) {
	padding-inline-start: 1.4em;
}
.grz-entry__content--single li + li {
	margin-top: 0.4em;
}
.grz-entry__content--single :where(figure, .wp-block-image, .wp-block-gallery, .wp-block-video) {
	margin-block: 2rem;
}
.grz-entry__content--single figcaption {
	margin-top: 8px;
	color: var(--grz-muted);
	font-size: 0.78rem;
	text-align: center;
}
.grz-entry__content--single img {
	border-radius: 14px;
}
.grz-entry__content--single :where(pre, code, kbd, samp) {
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}
.grz-entry__content--single code:not(pre code) {
	padding: 0.16em 0.38em;
	border: 1px solid #dce5f1;
	border-radius: 6px;
	background: #f5f8fc;
	color: #b4234c;
	font-size: 0.88em;
}
.grz-entry__content--single pre {
	overflow: auto;
	max-width: 100%;
	padding: 20px;
	border: 1px solid #243650;
	border-radius: 14px;
	background: #12233d;
	color: #eaf2ff;
	font-size: 0.86rem;
	line-height: 1.65;
	tab-size: 4;
}
.grz-entry__content--single table {
	width: 100%;
	margin-block: 2rem;
	border-collapse: separate;
	border-spacing: 0;
	border: 1px solid var(--grz-line);
	border-radius: 12px;
	background: #fff;
	font-size: 0.9rem;
}
.grz-entry__content--single :where(th, td) {
	padding: 12px 14px;
	border-block-end: 1px solid var(--grz-line);
	text-align: start;
	vertical-align: top;
}
.grz-entry__content--single th {
	background: #f6f9fd;
	color: var(--grz-ink);
	font-weight: 800;
}
.grz-entry__content--single tr:last-child > :where(th, td) {
	border-block-end: 0;
}
.grz-entry__content--single hr {
	margin-block: 2.5rem;
	border: 0;
	border-block-start: 1px solid var(--grz-line);
}
.grz-entry__footer {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-top: clamp(34px, 5vw, 52px);
	padding-top: 24px;
	border-top: 1px solid var(--grz-line);
}
.grz-entry__footer-label {
	padding-top: 4px;
	color: var(--grz-muted);
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.page-links {
	align-items: center;
	flex-wrap: wrap;
}
.page-links__label {
	color: var(--grz-muted);
	font-size: 0.78rem;
	font-weight: 800;
}
.page-links .post-page-numbers {
	display: inline-grid;
	min-width: 36px;
	height: 36px;
	place-items: center;
	border: 1px solid var(--grz-line);
	border-radius: 9px;
	background: #fff;
	font-size: 0.78rem;
	font-weight: 800;
	text-decoration: none;
}
.page-links .post-page-numbers.current {
	border-color: var(--grz-blue);
	background: var(--grz-blue);
	color: #fff;
}
.post-navigation {
	max-width: 980px;
	margin: 0 auto 28px;
}
.post-navigation .nav-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}
.post-navigation .nav-previous,
.post-navigation .nav-next {
	min-width: 0;
}
.post-navigation a {
	display: flex;
	min-height: 112px;
	flex-direction: column;
	justify-content: center;
	padding: 20px 22px;
	border: 1px solid var(--grz-line);
	border-radius: var(--grz-radius-md);
	background: #fff;
	box-shadow: var(--grz-shadow-xs);
	color: inherit;
	text-decoration: none;
	transition: border-color var(--grz-transition), box-shadow var(--grz-transition), transform var(--grz-transition);
}
.post-navigation .nav-next a {
	align-items: flex-end;
	text-align: end;
}
.post-navigation a:hover {
	border-color: rgba(8, 104, 242, 0.42);
	box-shadow: var(--grz-shadow-sm);
	transform: translateY(-2px);
}
.grz-post-nav__label {
	margin-bottom: 7px;
	color: var(--grz-blue);
	font-size: 0.7rem;
	font-weight: 850;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.grz-post-nav__title {
	overflow: hidden;
	color: var(--grz-ink);
	font-size: 0.96rem;
	font-weight: 800;
	line-height: 1.35;
	text-overflow: ellipsis;
}
#comments.grz-comments {
	max-width: 980px;
	margin: 0 auto;
	padding: clamp(26px, 4vw, 48px);
}
.grz-comments__title {
	margin-bottom: 24px;
	font-size: clamp(1.35rem, 2.6vw, 1.9rem);
}
.grz-comments .comment-list {
	padding: 0;
	list-style: none;
}
.grz-comments .children {
	margin-top: 16px;
	padding-inline-start: clamp(14px, 4vw, 36px);
	list-style: none;
}
.grz-comments .comment-body {
	margin-bottom: 18px;
	padding: 20px;
	border: 1px solid var(--grz-line);
	border-radius: 14px;
	background: #fff;
}
.grz-comments .comment-meta {
	margin-bottom: 12px;
	font-size: 0.78rem;
}
.grz-comments .comment-author {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
}
.grz-comments .avatar {
	border-radius: 50%;
}
.grz-comments .comment-metadata {
	margin-top: 3px;
	padding-inline-start: 42px;
}
.grz-comments .comment-metadata a {
	color: var(--grz-muted);
	text-decoration: none;
}
.grz-comments .reply {
	margin-top: 12px;
}
.grz-comments .comment-reply-link {
	font-size: 0.78rem;
	font-weight: 800;
}
.grz-comments .comment-respond {
	margin-top: 28px;
}
.grz-comments .comment-reply-title {
	font-size: clamp(1.25rem, 2.3vw, 1.7rem);
}
.grz-comments .comment-notes,
.grz-comments .logged-in-as {
	color: var(--grz-muted);
	font-size: 0.84rem;
}
.grz-comments .comment-form-cookies-consent {
	display: flex;
	align-items: flex-start;
}
@media (max-width: 700px) {
	.grz-entry__body--single {
		padding: 25px 22px 30px;
	}

	.grz-entry__title--single {
		font-size: clamp(1.85rem, 10vw, 2.6rem);
	}

	.grz-entry__footer {
		flex-direction: column;
	}

	.post-navigation .nav-links {
		grid-template-columns: 1fr;
	}

	.post-navigation a {
		min-height: 92px;
	}

	.grz-entry__content--single table {
		display: block;
		overflow-x: auto;
		white-space: nowrap;
	}
}
@media (prefers-reduced-motion: reduce) {
	.post-navigation a,
.grz-entry__taxonomy a {
		transition: none;
	}
}
/* ===== END SOURCE: assets/css/content.css ===== */
