/*
Theme Name: AZ El Lobo
Description: Tema editorial de Alexander Zelada para infraestructura, Linux, Kubernetes, networking e IA.
Author: Alexander Zelada
Template: generatepress
Version: 1.0.0
Text Domain: azellobo
*/

:root {
	--az-bg: #edf1f6;
	--az-surface: #ffffff;
	--az-surface-alt: #f7f9fc;
	--az-dark: #0b0f14;
	--az-dark-soft: #111827;
	--az-ink: #172033;
	--az-muted: #5d6a7e;
	--az-line: #cfd8e6;
	--az-primary: #326ce5;
	--az-primary-dark: #1749a3;
	--az-accent: #ff6b1a;
	--az-accent-dark: #d9570f;
	--az-warn: #f2b705;
	--az-code: #111827;
	--az-radius: 8px;
	--az-shadow: 0 18px 48px rgba(23, 32, 51, 0.12);
}

body {
	background: var(--az-bg);
	color: var(--az-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 17px;
	line-height: 1.7;
}

a {
	color: var(--az-primary);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--az-primary-dark);
}

.site-header,
.main-navigation,
.inside-header {
	background: var(--az-dark);
}

.site-header {
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.main-navigation .main-nav ul li a,
.menu-toggle,
.main-navigation .mobile-bar-items a {
	color: rgba(255, 255, 255, 0.88);
	font-weight: 700;
}

.main-title a,
.navigation-branding .main-title a {
	color: #fff;
	font-family: "Barlow Condensed", Inter, ui-sans-serif, system-ui, sans-serif;
	font-size: 1.55rem;
	font-weight: 800;
	text-transform: none;
}

.main-navigation .main-nav ul li[class*="current-menu-"] > a,
.main-navigation .main-nav ul li:hover > a {
	color: var(--az-accent);
	background: transparent;
}

.site-logo img,
.header-image {
	max-height: 44px;
	width: auto;
}

#dark-mode-toggle {
	display: none !important;
}

.az-page {
	background: var(--az-bg);
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	width: 100vw;
}

.grid-container,
.site.grid-container,
.site-content,
.inside-article,
.one-container .site-content,
.separate-containers .inside-article {
	max-width: none !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	width: 100% !important;
}

.inside-header,
.inside-navigation,
.az-wrap {
	width: min(1240px, calc(100% - 64px));
	margin-inline: auto;
}

.az-section {
	padding: 68px 0;
}

.az-section--tight {
	padding: 36px 0;
}

.az-eyebrow {
	color: var(--az-primary);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.az-hero {
	background:
		linear-gradient(135deg, rgba(8, 102, 198, 0.94), rgba(10, 28, 51, 0.92)),
		radial-gradient(circle at 80% 20%, rgba(17, 163, 106, 0.35), transparent 32%);
	color: #fff;
	padding: 84px 0 56px;
}

.az-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
	gap: 64px;
	align-items: center;
}

.az-hero h1 {
	color: #fff;
	font-size: clamp(2.35rem, 5vw, 4.6rem);
	line-height: 1.02;
	margin: 12px 0 18px;
	max-width: 780px;
}

.az-hero p {
	color: rgba(255, 255, 255, 0.86);
	font-size: 1.1rem;
	max-width: 680px;
}

.az-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.az-button,
.az-button:visited {
	align-items: center;
	background: var(--az-accent);
	border: 1px solid transparent;
	border-radius: var(--az-radius);
	color: #fff;
	display: inline-flex;
	font-family: "Barlow Condensed", Inter, ui-sans-serif, system-ui, sans-serif;
	font-size: 1.08rem;
	font-weight: 800;
	gap: 8px;
	justify-content: center;
	min-height: 46px;
	padding: 10px 18px;
	text-decoration: none;
}

.az-button:hover {
	background: #d9570f;
	color: #fff;
}

.az-button--ghost,
.az-button--ghost:visited {
	background: rgba(255, 255, 255, 0.09);
	border-color: rgba(255, 255, 255, 0.35);
	color: #fff;
}

.az-button--ghost:hover {
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
}

.az-button--dark,
.az-button--dark:visited {
	background: #172033;
	color: #fff;
}

.az-button--dark:hover {
	background: #0b1120;
	color: #fff;
}

.az-topic-hero {
	background:
		linear-gradient(90deg, rgba(11, 15, 20, 0.11), transparent 52%),
		var(--az-surface);
	border-bottom: 0;
	overflow: hidden;
	padding: 82px 0 72px;
	position: relative;
	text-align: center;
	width: 100%;
}

.az-topic-hero::before,
.az-topic-hero::after {
	content: "";
	pointer-events: none;
	position: absolute;
	z-index: 0;
}

.az-topic-hero::before {
	background: var(--az-dark);
	clip-path: polygon(0 0, 72% 0, 42% 100%, 0 100%);
	height: calc(100% + 2px);
	left: 0;
	opacity: 0.96;
	top: 0;
	width: min(560px, 30vw);
}

.az-topic-hero::after {
	background: var(--az-accent);
	clip-path: polygon(38% 0, 100% 0, 100% 100%, 0 100%);
	height: calc(100% + 2px);
	opacity: 0.95;
	right: 0;
	top: 0;
	width: min(420px, 24vw);
}

.az-topic-hero .az-wrap {
	position: relative;
	z-index: 1;
}

.az-topic-hero .az-eyebrow {
	background: var(--az-dark);
	border-left: 5px solid var(--az-accent);
	color: #fff;
	display: inline-flex;
	padding: 7px 12px;
}

.az-topic-hero__grid {
	align-items: start;
	display: grid;
	gap: 64px;
	grid-template-columns: minmax(0, 1fr) 390px;
}

.az-topic-hero h1 {
	color: var(--az-ink);
	font-family: "Barlow Condensed", Inter, ui-sans-serif, system-ui, sans-serif;
	font-size: clamp(4rem, 8vw, 7.6rem);
	font-weight: 900;
	line-height: 0.84;
	margin: 16px auto 24px;
	max-width: 960px;
}

.az-topic-hero h1::after {
	content: none;
}

.az-lead {
	color: #36445a;
	font-size: clamp(1.12rem, 1.6vw, 1.45rem);
	line-height: 1.58;
	margin-left: auto;
	margin-right: auto;
	max-width: 900px;
}

.az-topic-hero .az-actions {
	justify-content: center;
}

.az-offer-panel {
	background: #f2f5f9;
	border-top: 5px solid #ee0000;
	padding: 26px;
}

.az-offer-panel h2 {
	color: var(--az-ink);
	font-size: 1.25rem;
	margin: 0 0 14px;
}

.az-offer-panel ul {
	margin: 0;
	padding-left: 20px;
}

.az-offer-panel li {
	margin-bottom: 12px;
}

.az-topic-layout {
	padding-block: 64px 84px;
}

.az-front-editable {
	padding-bottom: 0;
}

.az-topic-nav {
	border-top: 4px solid #ee0000;
	position: sticky;
	top: 24px;
}

.az-topic-nav h2 {
	border-bottom: 1px solid var(--az-line);
	font-size: 1rem;
	margin: 0;
	padding: 16px 0;
}

.az-topic-nav a {
	border-bottom: 1px solid var(--az-line);
	color: var(--az-ink);
	display: block;
	font-weight: 700;
	padding: 14px 0;
	text-decoration: none;
}

.az-topic-nav a:hover {
	color: #ee0000;
}

.az-topic-content {
	margin-inline: auto;
	max-width: 1040px;
}

.az-topic-content::before {
	content: none;
}

.az-topic-section {
	border-top: 1px solid var(--az-line);
	content-visibility: auto;
	contain-intrinsic-size: 720px;
	margin-bottom: 56px;
	padding: 38px 0 0;
}

.az-topic-section:nth-child(even) {
	background: transparent;
	border-left: 0;
	border-radius: 0;
	padding: 38px 0 0;
}

.az-topic-section--last {
	margin-bottom: 0;
}

.az-topic-section h2 {
	color: var(--az-ink);
	font-family: "Barlow Condensed", Inter, ui-sans-serif, system-ui, sans-serif;
	font-size: clamp(1.85rem, 3vw, 2.55rem);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.06;
	margin: 0 0 14px;
}

.az-topic-section h3 {
	color: var(--az-ink);
	font-size: 1.2rem;
	line-height: 1.25;
	margin: 0 0 8px;
}

.az-topic-section p {
	color: #334155;
	font-size: 1.03rem;
	margin-top: 0;
}

.az-section-headline {
	align-items: end;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	margin-bottom: 24px;
}

.az-section-headline p {
	margin-bottom: 0;
	max-width: 820px;
}

.az-section-headline > a {
	color: var(--az-primary);
	font-weight: 800;
	text-decoration: none;
	white-space: nowrap;
}

.az-section-headline > a:hover,
.az-section-headline > a:focus {
	color: var(--az-primary-dark);
	outline: none;
}

.az-calm-manifesto {
	align-items: center;
	background: var(--az-dark);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--az-radius);
	color: #fff;
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
	margin: 0 0 42px;
	padding: clamp(22px, 4vw, 32px);
}

.az-calm-manifesto span,
.az-calm-manifesto strong {
	display: block;
}

.az-calm-manifesto span {
	color: var(--az-accent);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.az-calm-manifesto strong {
	font-family: "Barlow Condensed", Inter, ui-sans-serif, system-ui, sans-serif;
	font-size: clamp(1.85rem, 3vw, 2.55rem);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.06;
	margin-top: 8px;
}

.az-calm-manifesto p {
	color: rgba(255, 255, 255, 0.78);
	font-size: 1rem;
	line-height: 1.6;
	margin: 0;
}

.az-calm-manifesto--single {
	grid-template-columns: minmax(0, 1fr);
}

.az-calm-manifesto--single strong {
	max-width: 760px;
}

.az-align-center {
	text-align: center;
}

.az-align-center > * {
	justify-self: center;
}

.az-align-center strong,
.az-align-center p {
	margin-left: auto;
	margin-right: auto;
}

.az-align-right {
	text-align: right;
}

.az-align-right > * {
	justify-self: end;
}

.az-align-right strong,
.az-align-right p {
	margin-left: auto;
}

.az-service-list {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.az-service-list article {
	border-top: 3px solid var(--az-ink);
	padding-top: 16px;
}

.az-redhat-cards {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.az-redhat-card {
	background: var(--az-surface);
	border: 1px solid var(--az-line);
	border-radius: var(--az-radius);
	padding: 24px;
}

.az-redhat-card a {
	font-weight: 800;
	text-decoration: none;
}

.az-topic-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-top: 1px solid var(--az-line);
}

.az-topic-links a {
	border-bottom: 1px solid var(--az-line);
	color: var(--az-ink);
	display: block;
	padding: 18px 18px 18px 0;
	text-decoration: none;
}

.az-topic-links strong,
.az-topic-links span {
	display: block;
}

.az-topic-links span {
	color: var(--az-muted);
	font-size: 0.96rem;
	margin-top: 4px;
}

.az-topic-links a:hover strong {
	color: #ee0000;
}

.az-proof-strip {
	background: var(--az-dark);
	color: #fff;
	margin-top: -1px;
	position: relative;
	width: 100%;
	z-index: 2;
}

.az-proof-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.az-proof-grid a {
	border-left: 1px solid rgba(255, 255, 255, 0.15);
	color: #fff;
	padding: 24px 22px;
	text-decoration: none;
	transition: background 160ms ease, border-color 160ms ease;
}

.az-proof-grid a:last-child {
	border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.az-proof-grid strong,
.az-proof-grid span {
	display: block;
}

.az-proof-grid strong {
	color: #fff;
	font-family: "Barlow Condensed", Inter, ui-sans-serif, system-ui, sans-serif;
	font-size: 1.22rem;
	font-weight: 800;
	margin-bottom: 6px;
}

.az-proof-grid span {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.92rem;
	line-height: 1.45;
}

.az-proof-grid a:hover,
.az-proof-grid a:focus {
	background: rgba(50, 108, 229, 0.2);
	border-color: rgba(255, 255, 255, 0.32);
	outline: none;
}

.az-proof-grid a:hover strong,
.az-proof-grid a:focus strong {
	color: var(--az-accent);
}

.az-video-callout {
	align-items: center;
	background: var(--az-dark);
	color: #fff;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	padding: 26px;
}

.az-video-callout strong,
.az-video-callout span {
	display: block;
}

.az-video-callout strong {
	font-size: clamp(1.45rem, 2.5vw, 2.35rem);
	line-height: 1;
	margin-bottom: 6px;
}

.az-video-callout span {
	color: rgba(255, 255, 255, 0.76);
}

.az-video-feature {
	align-items: stretch;
	background: var(--az-dark);
	color: #fff;
	display: grid;
	gap: 0;
	grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
	margin-top: 22px;
}

.az-video-frame {
	aspect-ratio: 16 / 9;
	background: #000;
	min-height: 100%;
}

.az-video-frame iframe,
.az-lite-video {
	border: 0;
	display: block;
	height: 100%;
	width: 100%;
}

.az-lite-video {
	appearance: none;
	background: #000;
	cursor: pointer;
	padding: 0;
	position: relative;
	text-align: inherit;
}

.az-lite-video img {
	display: block;
	height: 100%;
	object-fit: cover;
	opacity: 0.82;
	width: 100%;
}

.az-lite-video span {
	align-items: center;
	background: var(--az-accent);
	border-radius: 999px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
	display: flex;
	height: 62px;
	justify-content: center;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 62px;
}

.az-lite-video span::before {
	border-bottom: 12px solid transparent;
	border-left: 18px solid #fff;
	border-top: 12px solid transparent;
	content: "";
	margin-left: 4px;
}

.az-lite-video:hover img,
.az-lite-video:focus img {
	opacity: 0.96;
}

.az-lite-video:focus {
	outline: 3px solid rgba(50, 108, 229, 0.7);
	outline-offset: -3px;
}

.az-video-feature__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(24px, 4vw, 42px);
}

.az-video-feature__copy h3 {
	color: #fff;
	font-size: clamp(1.35rem, 2.4vw, 2rem);
	line-height: 1.15;
	margin: 10px 0 12px;
}

.az-video-feature__copy p {
	color: rgba(255, 255, 255, 0.76);
	margin-bottom: 22px;
}

.az-video-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 16px;
}

.az-video-card {
	background: var(--az-dark-soft);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--az-radius);
	color: #fff;
	overflow: hidden;
	text-decoration: none;
	transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.az-video-card:hover,
.az-video-card:focus {
	border-color: rgba(50, 108, 229, 0.55);
	box-shadow: 0 18px 44px rgba(23, 32, 51, 0.09);
	outline: none;
	transform: translateY(-2px);
}

.az-video-card img {
	aspect-ratio: 16 / 9;
	display: block;
	object-fit: cover;
	width: 100%;
}

.az-video-card strong,
.az-video-card span {
	display: block;
}

.az-video-card strong {
	font-size: 0.98rem;
	line-height: 1.35;
	padding: 14px 14px 6px;
}

.az-video-card span {
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.86rem;
	padding: 0 14px 14px;
}

.az-background-noise {
	align-items: center;
	background: var(--az-surface);
	border: 1px solid var(--az-line);
	border-radius: var(--az-radius);
	display: grid;
	gap: 28px;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
	margin: 0 0 56px;
	padding: clamp(24px, 4vw, 34px);
}

.az-background-noise h2 {
	font-family: "Barlow Condensed", Inter, ui-sans-serif, system-ui, sans-serif;
	font-size: clamp(1.85rem, 3vw, 2.55rem);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.06;
	margin: 8px 0 10px;
	max-width: 760px;
}

.az-background-noise h3 {
	font-family: "Barlow Condensed", Inter, ui-sans-serif, system-ui, sans-serif;
	font-size: clamp(1.55rem, 2.6vw, 2.15rem);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.06;
	margin: 0 0 10px;
}

.az-background-noise p,
.az-background-noise__side span {
	color: var(--az-muted);
	margin: 0;
}

.az-background-noise__side {
	border-left: 1px solid var(--az-line);
	display: grid;
	gap: 10px;
	padding-left: 24px;
}

.az-background-noise__side a {
	color: var(--az-ink);
	font-weight: 800;
	text-decoration: none;
}

.az-background-noise__side a:hover,
.az-background-noise__side a:focus {
	color: var(--az-primary);
	outline: none;
}

.az-background-noise__side .az-background-noise__link {
	color: var(--az-primary);
	font-size: 0.94rem;
	margin-top: 8px;
}

.az-terminal {
	background: #0d1628;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--az-radius);
	box-shadow: var(--az-shadow);
	overflow: hidden;
}

.az-terminal__bar {
	background: #18233a;
	display: flex;
	gap: 7px;
	padding: 12px 14px;
}

.az-dot {
	background: #f87171;
	border-radius: 50%;
	height: 10px;
	width: 10px;
}

.az-dot:nth-child(2) {
	background: #fbbf24;
}

.az-dot:nth-child(3) {
	background: #34d399;
}

.az-terminal pre {
	background: transparent;
	color: #d7e3f8;
	font-size: 0.92rem;
	margin: 0;
	overflow-x: auto;
	padding: 24px;
	white-space: pre-wrap;
}

.az-terminal strong {
	color: #7dd3fc;
}

.az-kpis {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 30px;
}

.az-kpi {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--az-radius);
	padding: 14px;
}

.az-kpi strong {
	color: #fff;
	display: block;
	font-size: 1.35rem;
	line-height: 1.2;
}

.az-kpi span {
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.9rem;
}

.az-heading {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	align-items: end;
	margin-bottom: 24px;
}

.az-heading h2,
.az-content h1,
.az-content h2,
.az-content h3 {
	color: var(--az-ink);
	font-family: "Barlow Condensed", Inter, ui-sans-serif, system-ui, sans-serif;
	line-height: 1.16;
}

.az-heading h2 {
	font-size: clamp(1.65rem, 3vw, 2.45rem);
	margin: 4px 0 0;
}

.az-heading p {
	color: var(--az-muted);
	margin: 0;
	max-width: 620px;
}

.az-grid {
	display: grid;
	gap: 18px;
}

.az-grid--topics {
	grid-template-columns: repeat(4, minmax(220px, 1fr));
}

.az-grid--posts {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.az-card {
	background: var(--az-surface);
	border: 1px solid var(--az-line);
	border-radius: var(--az-radius);
	color: var(--az-ink);
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 22px;
	text-decoration: none;
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.az-card:hover {
	border-color: rgba(8, 102, 198, 0.4);
	box-shadow: 0 14px 32px rgba(23, 32, 51, 0.1);
	color: var(--az-ink);
	transform: translateY(-2px);
}

.az-card__icon {
	align-items: center;
	background: #e8f2ff;
	border-radius: var(--az-radius);
	color: var(--az-primary);
	display: inline-flex;
	font-weight: 900;
	height: 38px;
	justify-content: center;
	margin-bottom: 16px;
	width: 38px;
}

.az-card h3 {
	font-size: 1.12rem;
	line-height: 1.25;
	margin: 0 0 8px;
}

.az-card p {
	color: var(--az-muted);
	font-size: 0.95rem;
	margin: 0;
}

.az-post-card {
	background: var(--az-surface);
	border: 1px solid var(--az-line);
	border-radius: var(--az-radius);
	overflow: hidden;
}

.az-post-card__media {
	aspect-ratio: 16 / 9;
	background: linear-gradient(135deg, #dbeafe, #d1fae5);
	display: block;
}

.az-post-card__media img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.az-post-card__body {
	padding: 20px;
}

.az-meta {
	color: var(--az-muted);
	display: flex;
	flex-wrap: wrap;
	font-size: 0.86rem;
	gap: 8px 14px;
	margin-bottom: 10px;
}

.az-post-card h3 {
	font-size: 1.18rem;
	line-height: 1.32;
	margin: 0 0 10px;
}

.az-post-card h3 a {
	color: var(--az-ink);
	text-decoration: none;
}

.az-post-card h3 a:hover {
	color: var(--az-primary);
}

.az-post-card p {
	color: var(--az-muted);
	font-size: 0.96rem;
	margin: 0 0 14px;
}

.az-paths {
	background: #eaf2fb;
	border-block: 1px solid var(--az-line);
}

.az-path {
	background: var(--az-surface);
	border-left: 5px solid var(--az-primary);
	border-radius: var(--az-radius);
	display: grid;
	gap: 8px;
	padding: 22px;
}

.az-path h3 {
	font-size: 1.16rem;
	margin: 0;
}

.az-path ol {
	margin: 6px 0 0 20px;
	padding: 0;
}

.az-path li {
	margin-bottom: 4px;
}

.az-cta {
	background: #101827;
	color: #fff;
	padding: 48px 0;
}

.az-cta__inner {
	align-items: center;
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(0, 1fr) auto;
}

.az-cta h2 {
	color: #fff;
	font-size: clamp(1.55rem, 3vw, 2.25rem);
	margin: 0 0 8px;
}

.az-cta p {
	color: rgba(255, 255, 255, 0.78);
	margin: 0;
	max-width: 720px;
}

.az-main {
	padding: 42px 0 64px;
}

.az-layout {
	display: grid;
	gap: 42px;
	grid-template-columns: minmax(0, 1fr) 320px;
	align-items: start;
}

.az-page-grid {
	align-items: start;
	display: grid;
	gap: 42px;
	grid-template-columns: minmax(0, 1fr) 300px;
}

.az-content {
	background: var(--az-surface);
	border: 1px solid var(--az-line);
	border-radius: var(--az-radius);
	padding: clamp(24px, 5vw, 48px);
}

.az-content .entry-title {
	font-size: clamp(2rem, 4vw, 3.15rem);
	margin-bottom: 14px;
}

.az-page-editable-content {
	margin-bottom: 28px;
}

.az-content :not(pre) > code {
	background: #eef3f8;
	border: 1px solid #d7e1ee;
	border-radius: 5px;
	color: #0f172a;
	font-size: 0.92em;
	padding: 0.12em 0.36em;
}

.az-content pre,
.wp-block-code {
	background: var(--az-dark-soft);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--az-radius);
	box-shadow: 0 18px 42px rgba(11, 15, 20, 0.18);
	margin: 28px 0;
	overflow: hidden;
	position: relative;
}

.az-content pre::before,
.wp-block-code::before {
	content: none;
}

.az-content pre::after,
.wp-block-code::after {
	content: none;
}

.az-content pre code,
.wp-block-code code {
	background: transparent;
	border: 0;
	color: #e5eefb;
	display: block;
	font-family: "Cascadia Code", "Fira Code", Consolas, Monaco, "Courier New", monospace;
	font-size: 0.94rem;
	line-height: 1.72;
	overflow-x: auto;
	padding: 22px 58px 24px 22px;
	tab-size: 2;
	white-space: pre;
}

.az-code-copy {
	align-items: center;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 7px;
	color: rgba(255, 255, 255, 0.88);
	cursor: pointer;
	display: inline-flex;
	height: 30px;
	justify-content: center;
	line-height: 1;
	padding: 0;
	position: absolute;
	right: 12px;
	top: 12px;
	transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
	width: 34px;
	z-index: 2;
}

.az-code-copy span {
	border: 1.7px solid currentColor;
	border-radius: 3px;
	font-size: 0;
	height: 15px;
	position: relative;
	width: 12px;
}

.az-code-copy span::before {
	border: 1.7px solid currentColor;
	border-radius: 3px;
	content: "";
	height: 15px;
	left: -5px;
	position: absolute;
	top: 4px;
	width: 12px;
}

.az-code-copy.is-copied span {
	border-color: transparent;
	height: 10px;
	transform: rotate(-45deg);
	width: 16px;
}

.az-code-copy.is-copied span::before {
	border-color: #fff;
	border-radius: 0;
	border-right: 0;
	border-top: 0;
	height: 8px;
	left: 0;
	top: 0;
	width: 16px;
}

.az-code-copy:hover,
.az-code-copy:focus {
	background: var(--az-accent);
	border-color: var(--az-accent);
	color: #fff;
	outline: none;
}

.az-code-copy.is-copied {
	background: #16a34a;
	border-color: #16a34a;
	color: #fff;
}

.az-content pre code::-webkit-scrollbar,
.wp-block-code code::-webkit-scrollbar {
	height: 10px;
}

.az-content pre code::-webkit-scrollbar-track,
.wp-block-code code::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.05);
}

.az-content pre code::-webkit-scrollbar-thumb,
.wp-block-code code::-webkit-scrollbar-thumb {
	background: rgba(255, 107, 26, 0.72);
	border-radius: 999px;
}

.az-content img {
	border-radius: var(--az-radius);
}

.az-sidebar {
	position: sticky;
	top: 28px;
}

.az-page-aside {
	position: sticky;
	top: 28px;
}

.az-sidebox {
	background: var(--az-surface);
	border: 1px solid var(--az-line);
	border-radius: var(--az-radius);
	margin-bottom: 18px;
	padding: 18px;
}

.az-sidebox h2,
.az-sidebox h3 {
	font-size: 1rem;
	margin: 0 0 12px;
}

.az-sidebox ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.az-sidebox li + li {
	border-top: 1px solid var(--az-line);
	margin-top: 10px;
	padding-top: 10px;
}

.az-sidebox a {
	color: var(--az-ink);
	text-decoration: none;
}

.az-sidebox a:hover {
	color: var(--az-primary);
}

.az-breadcrumbs {
	color: var(--az-muted);
	font-size: 0.88rem;
	margin-bottom: 16px;
}

.az-breadcrumbs a {
	color: var(--az-muted);
	text-decoration: none;
}

.az-archive-header {
	background:
		linear-gradient(90deg, rgba(11, 15, 20, 0.94), rgba(17, 24, 39, 0.88)),
		var(--az-dark);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	padding: 42px 0;
}

.az-archive-header h1 {
	color: #fff;
	font-size: clamp(2rem, 4vw, 3rem);
	margin: 0;
}

.az-archive-header p,
.az-archive-header .az-breadcrumbs,
.az-archive-header .az-breadcrumbs a {
	color: rgba(255, 255, 255, 0.76);
}

.az-library-hero {
	background:
		linear-gradient(90deg, rgba(11, 15, 20, 0.94), rgba(17, 24, 39, 0.88)),
		var(--az-dark);
}

.az-library-intro {
	align-items: end;
	background: var(--az-surface);
	border: 1px solid var(--az-line);
	border-radius: var(--az-radius);
	display: grid;
	gap: 26px;
	grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
	margin-bottom: 28px;
	padding: clamp(24px, 4vw, 38px);
}

.az-library-intro h2,
.az-library-feature h2 {
	font-family: "Barlow Condensed", Inter, ui-sans-serif, system-ui, sans-serif;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.06;
	margin: 0 0 14px;
}

.az-library-intro h2 {
	font-size: clamp(1.85rem, 3vw, 2.55rem);
	max-width: 760px;
}

.az-library-intro p {
	color: var(--az-muted);
	margin: 0;
}

.az-library-feature {
	background: var(--az-dark);
	border-radius: var(--az-radius);
	color: #fff;
	display: grid;
	gap: 28px;
	grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1fr);
	margin-bottom: 28px;
	overflow: hidden;
	padding: clamp(24px, 4vw, 38px);
	position: relative;
}

.az-library-feature::after {
	content: none;
}

.az-library-feature__copy,
.az-library-reading-list {
	position: relative;
	z-index: 1;
}

.az-library-feature h2 {
	color: #fff;
	font-size: clamp(1.85rem, 3vw, 2.55rem);
}

.az-library-feature p {
	color: rgba(255, 255, 255, 0.76);
	margin-bottom: 22px;
}

.az-library-reading-list {
	display: grid;
	gap: 12px;
}

.az-library-reading-list a,
.az-library-empty {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--az-radius);
	color: #fff;
	display: block;
	padding: 18px;
	text-decoration: none;
	transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.az-library-reading-list a:hover,
.az-library-reading-list a:focus {
	background: rgba(255, 255, 255, 0.11);
	border-color: rgba(255, 255, 255, 0.26);
	outline: none;
	transform: translateY(-2px);
}

.az-library-reading-list strong,
.az-library-reading-list span,
.az-library-empty strong,
.az-library-empty span {
	display: block;
}

.az-library-reading-list strong,
.az-library-empty strong {
	margin-bottom: 6px;
}

.az-library-reading-list span,
.az-library-empty span {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.94rem;
	line-height: 1.5;
}

.az-library-section {
	background: transparent;
	border: 0;
	border-top: 1px solid var(--az-line);
	border-radius: 0;
	margin-top: 42px;
	padding: 34px 0 0;
}

.az-library-section .az-route-section__header {
	background: transparent;
	border-bottom: 0;
	border-radius: 0;
	display: block;
	margin-bottom: 22px;
	padding: 0;
}

.az-library-section .az-route-section__header h2 {
	color: var(--az-ink);
	font-size: clamp(1.85rem, 3vw, 2.55rem);
	font-weight: 800;
	line-height: 1.06;
	margin: 8px 0 10px;
	max-width: 780px;
}

.az-library-section .az-route-section__header p {
	color: var(--az-muted);
	max-width: 820px;
}

.az-library-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.az-page-intro {
	border-bottom: 1px solid var(--az-line);
	margin-bottom: 34px;
	padding-bottom: 30px;
}

.az-page-intro h2 {
	font-family: "Barlow Condensed", Inter, ui-sans-serif, system-ui, sans-serif;
	font-size: clamp(1.85rem, 3vw, 2.55rem);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.06;
	margin: 0 0 12px;
}

.az-page-intro p {
	color: var(--az-muted);
	font-size: 1.03rem;
	margin: 0;
	max-width: 860px;
}

.az-library-event-link {
	background: var(--az-surface);
	border: 1px solid var(--az-line);
	border-radius: var(--az-radius);
	color: var(--az-ink);
	display: block;
	max-width: 620px;
	padding: 24px;
	text-decoration: none;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.az-library-event-link:hover,
.az-library-event-link:focus {
	border-color: rgba(50, 108, 229, 0.55);
	box-shadow: 0 18px 44px rgba(23, 32, 51, 0.09);
	outline: none;
	transform: translateY(-2px);
}

.az-library-event-link strong,
.az-library-event-link span,
.az-library-event-link em {
	display: block;
}

.az-library-event-link strong {
	font-size: 1.12rem;
	margin-bottom: 8px;
}

.az-library-event-link > span:not(.az-route-card__icon) {
	color: var(--az-muted);
	line-height: 1.55;
}

.az-library-event-link em {
	color: var(--az-muted);
	font-size: 0.86rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.5;
	margin-top: 18px;
}

.az-route-grid,
.az-route-children {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.az-route-children {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-bottom: 28px;
}

.az-route-card,
.az-route-children a {
	background: var(--az-surface);
	border: 1px solid var(--az-line);
	border-radius: var(--az-radius);
	color: var(--az-ink);
	display: block;
	min-height: 100%;
	padding: 24px;
	text-decoration: none;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.az-route-card:hover,
.az-route-card:focus,
.az-route-children a:hover,
.az-route-children a:focus {
	border-color: rgba(50, 108, 229, 0.55);
	box-shadow: 0 18px 44px rgba(23, 32, 51, 0.09);
	outline: none;
	transform: translateY(-2px);
}

.az-route-card strong,
.az-route-card span,
.az-route-card em,
.az-route-children strong,
.az-route-children span {
	display: block;
}

.az-route-card strong,
.az-route-children strong {
	font-size: 1.12rem;
	margin-bottom: 8px;
}

.az-route-card > span:last-child,
.az-route-children span {
	color: var(--az-muted);
	line-height: 1.55;
}

.az-route-card em {
	color: var(--az-muted);
	font-size: 0.86rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.5;
	margin-top: 18px;
	text-transform: none;
}

.az-route-note {
	background: var(--az-surface);
	border: 1px solid var(--az-line);
	border-radius: var(--az-radius);
	margin-top: 22px;
	padding: 24px;
}

.az-route-note h2 {
	font-size: 1.18rem;
	margin: 0 0 8px;
}

.az-route-note p {
	color: var(--az-muted);
	margin: 0;
	max-width: 820px;
}

.az-route-sections {
	display: grid;
	gap: 28px;
	margin-top: 34px;
}

.az-route-section {
	background: var(--az-surface);
	border: 1px solid var(--az-line);
	border-radius: var(--az-radius);
	padding: clamp(22px, 4vw, 36px);
	scroll-margin-top: 96px;
}

.az-route-section__header {
	align-items: start;
	background: var(--az-dark);
	border-bottom: 0;
	border-radius: var(--az-radius);
	display: flex;
	gap: 24px;
	justify-content: space-between;
	margin-bottom: 22px;
	padding: 22px;
}

.az-route-section__header h2 {
	color: #fff;
	font-size: clamp(1.65rem, 3vw, 2.35rem);
	line-height: 1.08;
	margin: 8px 0 10px;
}

.az-route-section__header p {
	color: rgba(255, 255, 255, 0.76);
	margin: 0;
	max-width: 760px;
}

.az-route-posts {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.az-route-posts a {
	border: 1px solid var(--az-line);
	border-radius: var(--az-radius);
	color: var(--az-ink);
	display: block;
	padding: 18px;
	text-decoration: none;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.az-route-posts a:hover,
.az-route-posts a:focus {
	border-color: rgba(50, 108, 229, 0.55);
	box-shadow: 0 18px 44px rgba(23, 32, 51, 0.09);
	outline: none;
	transform: translateY(-2px);
}

.az-route-posts strong,
.az-route-posts span {
	display: block;
}

.az-route-posts strong {
	line-height: 1.35;
	margin-bottom: 6px;
}

.az-route-posts span {
	color: var(--az-muted);
	font-size: 0.94rem;
	line-height: 1.5;
}

.az-route-section--collections {
	margin-top: 34px;
}

.az-route-grid--collections {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.az-pagination {
	margin-top: 28px;
}

.az-pagination .page-numbers {
	background: var(--az-surface);
	border: 1px solid var(--az-line);
	border-radius: var(--az-radius);
	display: inline-flex;
	margin-right: 6px;
	min-width: 38px;
	padding: 6px 10px;
	justify-content: center;
	text-decoration: none;
}

.az-pagination .current {
	background: var(--az-primary);
	color: #fff;
}

.post-navigation {
	margin-top: 28px;
}

.post-navigation .nav-links {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
	min-width: 0;
}

.post-navigation .nav-next {
	text-align: right;
}

.post-navigation a {
	background: var(--az-surface);
	border: 1px solid var(--az-line);
	border-radius: var(--az-radius);
	color: var(--az-ink);
	display: block;
	min-height: 100%;
	padding: 18px;
	text-decoration: none;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.post-navigation a:hover,
.post-navigation a:focus {
	border-color: rgba(50, 108, 229, 0.55);
	box-shadow: 0 18px 44px rgba(23, 32, 51, 0.09);
	outline: none;
	transform: translateY(-2px);
}

.az-post-nav__label,
.az-post-nav__title {
	display: block;
}

.az-post-nav__label {
	color: var(--az-muted);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0;
	margin-bottom: 6px;
	text-transform: uppercase;
}

.az-post-nav__title {
	font-size: 1rem;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.az-comments {
	background: var(--az-surface);
	border: 1px solid var(--az-line);
	border-radius: var(--az-radius);
	margin-top: 28px;
	overflow: hidden;
}

.az-comments__header {
	background: #fff;
	border-bottom: 1px solid var(--az-line);
	color: var(--az-ink);
	display: grid;
	gap: 12px 24px;
	grid-template-columns: minmax(0, 0.85fr) minmax(260px, 1fr);
	padding: clamp(18px, 3vw, 26px);
}

.az-comments__kicker {
	color: var(--az-primary);
	display: block;
	font-family: "Barlow Condensed", Inter, ui-sans-serif, system-ui, sans-serif;
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.az-comments h2,
.az-comment-respond h3 {
	color: inherit;
	font-family: "Barlow Condensed", Inter, ui-sans-serif, system-ui, sans-serif;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 0.98;
	margin: 6px 0 0;
}

.az-comments h2 {
	font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.az-comments__header p {
	color: var(--az-muted);
	margin: 0;
}

.az-comment-list {
	list-style: none;
	margin: 0;
	padding: clamp(20px, 4vw, 34px);
}

.az-comment-list .children {
	border-left: 2px solid rgba(255, 107, 26, 0.28);
	list-style: none;
	margin: 18px 0 0 28px;
	padding-left: 18px;
}

.az-comment {
	margin: 0 0 18px;
}

.az-comment__body {
	background: #f7f9fc;
	border: 1px solid #dce4ef;
	border-radius: var(--az-radius);
	display: grid;
	gap: 16px;
	grid-template-columns: 52px minmax(0, 1fr);
	padding: 18px;
}

.az-comment.bypostauthor > .az-comment__body {
	background: #fff7ed;
	border-color: rgba(255, 107, 26, 0.38);
}

.az-comment__avatar img {
	border: 2px solid #fff;
	border-radius: 50%;
	box-shadow: 0 8px 22px rgba(17, 24, 39, 0.14);
	display: block;
}

.az-comment__meta {
	align-items: baseline;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 12px;
	margin-bottom: 8px;
}

.az-comment__meta strong {
	color: var(--az-ink);
	font-weight: 900;
}

.az-comment__meta a {
	color: var(--az-muted);
	font-size: 0.86rem;
	text-decoration: none;
}

.az-comment__text {
	color: #29364a;
	font-size: 0.98rem;
}

.az-comment__text p:last-child {
	margin-bottom: 0;
}

.az-comment__moderation {
	background: #fff7ed;
	border-left: 4px solid var(--az-accent);
	color: #7c2d12;
	margin: 0 0 10px;
	padding: 8px 10px;
}

.az-comment__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 12px;
}

.az-comment__actions a,
.comment-reply-link {
	color: var(--az-primary);
	font-size: 0.86rem;
	font-weight: 800;
	text-decoration: none;
}

.az-comment__actions a:hover,
.comment-reply-link:hover {
	color: var(--az-accent);
}

.az-comments .comment-navigation {
	border-top: 1px solid var(--az-line);
	padding: 0 clamp(20px, 4vw, 34px) 24px;
}

.az-comments__closed {
	margin: 0;
	padding: 0 clamp(20px, 4vw, 34px) 24px;
}

.az-comment-respond {
	background: #f8fafc;
	border-top: 1px solid var(--az-line);
	padding: clamp(18px, 3vw, 28px);
}

.az-comment-respond h3 {
	color: var(--az-ink);
	font-size: clamp(1.5rem, 2.6vw, 2rem);
}

.az-comment-note,
.comment-notes,
.logged-in-as {
	color: var(--az-muted);
	margin: 8px 0 18px;
}

.az-comment-form {
	display: grid;
	gap: 16px;
}

.az-comment-form p {
	margin: 0;
}

.az-comment-form label {
	color: var(--az-ink);
	display: block;
	font-size: 0.86rem;
	font-weight: 900;
	margin-bottom: 7px;
	text-transform: uppercase;
}

.az-comment-form input[type="text"],
.az-comment-form input[type="email"],
.az-comment-form input[type="url"],
.az-comment-form textarea {
	background: #fff;
	border: 1px solid #cfd8e6;
	border-radius: var(--az-radius);
	color: var(--az-ink);
	font: inherit;
	padding: 12px 14px;
	width: 100%;
}

.az-comment-form textarea {
	min-height: 170px;
	resize: vertical;
}

.az-comment-form input:focus,
.az-comment-form textarea:focus {
	border-color: var(--az-primary);
	box-shadow: 0 0 0 3px rgba(50, 108, 229, 0.14);
	outline: none;
}

.az-comment-form .form-submit input,
.az-comment-form input[type="submit"] {
	background: var(--az-accent);
	border: 0;
	border-radius: var(--az-radius);
	color: #fff;
	cursor: pointer;
	font-family: "Barlow Condensed", Inter, ui-sans-serif, system-ui, sans-serif;
	font-size: 1.08rem;
	font-weight: 900;
	min-height: 46px;
	padding: 10px 18px;
}

.az-comment-form .form-submit input:hover,
.az-comment-form input[type="submit"]:hover {
	background: var(--az-accent-dark);
}

.az-contact-panel {
	background: #fff;
	border: 1px solid var(--az-line);
	border-radius: var(--az-radius);
	margin-bottom: 56px;
	padding: clamp(28px, 5vw, 52px);
}

.az-contact-content {
	min-width: 0;
}

.az-contact-panel h2 {
	font-family: "Barlow Condensed", Inter, ui-sans-serif, system-ui, sans-serif;
	font-size: clamp(2rem, 3.4vw, 3rem);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.06;
	margin: 10px 0 12px;
	max-width: 680px;
}

.az-contact-panel > p {
	color: var(--az-muted);
	margin-bottom: 24px;
	max-width: 720px;
}

.az-form-notice {
	border-radius: var(--az-radius);
	display: grid;
	gap: 4px;
	margin: 0 0 22px;
	padding: 14px 16px;
}

.az-form-notice strong,
.az-form-notice span {
	display: block;
}

.az-form-notice--success {
	background: #ecfdf5;
	border: 1px solid #86efac;
	color: #14532d;
}

.az-form-notice--error {
	background: #fff7ed;
	border: 1px solid #fdba74;
	color: #7c2d12;
}

.az-contact-form {
	border-top: 1px solid var(--az-line);
	display: grid;
	gap: 18px;
	margin-top: 28px;
	padding-top: 28px;
}

.az-contact-form__grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.az-contact-form p {
	margin: 0;
}

.az-contact-form label {
	color: var(--az-ink);
	display: block;
	font-size: 0.84rem;
	font-weight: 900;
	margin-bottom: 7px;
	text-transform: uppercase;
}

.az-contact-form input,
.az-contact-form select,
.az-contact-form textarea {
	background: #fff;
	border: 1px solid #cfd8e6;
	border-radius: var(--az-radius);
	color: var(--az-ink);
	font: inherit;
	padding: 12px 14px;
	width: 100%;
}

.az-contact-form textarea {
	min-height: 210px;
	resize: vertical;
}

.az-contact-form input:focus,
.az-contact-form select:focus,
.az-contact-form textarea:focus {
	border-color: var(--az-primary);
	box-shadow: 0 0 0 3px rgba(50, 108, 229, 0.14);
	outline: none;
}

.az-contact-form__trap {
	height: 0;
	left: -9999px;
	overflow: hidden;
	position: absolute;
	width: 0;
}

.az-contact-form__footer {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: space-between;
}

.az-contact-form__footer button {
	background: var(--az-accent);
	border: 0;
	border-radius: var(--az-radius);
	color: #fff;
	cursor: pointer;
	font-family: "Barlow Condensed", Inter, ui-sans-serif, system-ui, sans-serif;
	font-size: 1.12rem;
	font-weight: 900;
	min-height: 46px;
	padding: 10px 18px;
}

.az-contact-form__footer button:hover,
.az-contact-form__footer button:focus {
	background: var(--az-accent-dark);
	outline: none;
}

.az-contact-form__footer span {
	color: var(--az-muted);
	font-size: 0.94rem;
}

.footer-widgets,
.site-footer {
	background: #0f172a;
	color: rgba(255, 255, 255, 0.78);
}

.site-info {
	background: #0b1120;
	color: rgba(255, 255, 255, 0.72);
}

.az-site-footer {
	background: #111827;
	color: rgba(255, 255, 255, 0.78);
	padding: 28px 0;
}

.az-site-footer__inner {
	align-items: center;
	display: flex;
	justify-content: center;
	text-align: center;
}

.az-site-footer p {
	margin: 0;
	max-width: 820px;
}

@media (max-width: 980px) {
	.az-hero__grid,
	.az-topic-hero__grid,
	.az-layout,
	.az-page-grid,
	.az-video-feature,
	.az-library-intro,
	.az-library-feature,
	.az-background-noise,
	.az-calm-manifesto,
	.az-cta__inner {
		grid-template-columns: 1fr;
	}

	.az-background-noise__side {
		border-left: 0;
		border-top: 1px solid var(--az-line);
		padding-left: 0;
		padding-top: 20px;
	}

	.az-grid--topics,
	.az-grid--posts,
	.az-redhat-cards,
	.az-proof-grid,
	.az-route-grid,
	.az-library-grid,
	.az-route-children,
	.az-route-posts,
	.az-video-grid,
	.az-service-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.az-sidebar,
	.az-page-aside,
	.az-topic-nav {
		position: static;
	}

	.az-section-headline {
		align-items: start;
		flex-direction: column;
	}

	.az-topic-hero::after {
		width: min(260px, 22vw);
	}
}

@media (max-width: 640px) {
	body {
		font-size: 16px;
	}

	.az-hero {
		padding: 52px 0 36px;
	}

	.inside-header,
	.inside-navigation,
	.az-wrap {
		width: min(1240px, calc(100% - 28px));
	}

	.az-section {
		padding: 40px 0;
	}

	.az-heading {
		align-items: start;
		flex-direction: column;
	}

	.az-grid--topics,
	.az-grid--posts,
	.az-redhat-cards,
	.az-service-list,
	.az-topic-links,
	.az-proof-grid,
	.az-route-grid,
	.az-route-children,
	.az-route-posts,
	.az-video-grid,
	.az-kpis {
		grid-template-columns: 1fr;
	}

	.az-route-section__header {
		flex-direction: column;
	}

	.az-topic-hero {
		padding: 54px 0 48px;
	}

	.az-topic-hero {
		background:
			linear-gradient(90deg, rgba(11, 15, 20, 0.08), transparent 52%),
			var(--az-surface);
	}

	.az-topic-hero::before {
		width: 92px;
	}

	.az-topic-hero::after {
		opacity: 0.82;
		width: 96px;
	}

	.az-calm-manifesto {
		background: var(--az-dark);
	}

	.az-library-hero {
		background:
			linear-gradient(90deg, rgba(11, 15, 20, 0.94), rgba(17, 24, 39, 0.88)),
			var(--az-dark);
	}

	.az-library-feature::after {
		width: 120px;
	}

	.az-proof-grid a,
	.az-proof-grid a:last-child {
		border-left: 0;
		border-right: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.15);
	}

	.az-site-footer__inner {
		align-items: start;
		flex-direction: column;
	}

	.az-actions,
	.az-button {
		width: 100%;
	}

	.az-video-callout {
		align-items: start;
		flex-direction: column;
	}

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

	.post-navigation .nav-next {
		text-align: left;
	}

	.az-comments__header {
		grid-template-columns: 1fr;
	}

	.az-comment__body {
		grid-template-columns: 42px minmax(0, 1fr);
		padding: 14px;
	}

	.az-comment-list .children {
		margin-left: 10px;
		padding-left: 12px;
	}

	.az-comment__avatar img {
		height: 42px;
		width: 42px;
	}

	.az-contact-form__grid {
		grid-template-columns: 1fr;
	}

	.az-contact-form__footer {
		align-items: stretch;
		flex-direction: column;
	}

	.az-contact-form__footer button {
		width: 100%;
	}
}
