:root {
	--color-text: #f5f8f8;
	--color-muted: #a8b8b9;
	--color-border: rgba(255, 255, 255, 0.1);
	--color-surface: #05090a;
	--color-accent: #0f766e;
	--container-width: 1120px;
	--container-padding: 20px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-height: 100vh;
	color: var(--color-text);
	background: var(--color-surface);
	font-family: "Alexandria", "Segoe UI", Tahoma, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

img,
svg,
video {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

button,
input,
textarea,
select {
	font: inherit;
}

.container {
	width: min(100% - (var(--container-padding) * 2), var(--container-width));
	margin-inline: auto;
}

.site-main {
	min-height: 60vh;
}

.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 {
	z-index: 100000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 8px 12px;
	clip: auto;
	color: #ffffff;
	background: #111827;
}

.entry-header,
.page-header {
	padding-block: 32px 20px;
}

.entry-title,
.page-title {
	margin: 0;
	min-height: 100vh;
	line-height: 1.15;
}

.entry-content > *:first-child,
.entry-summary > *:first-child {
	margin-top: 0;
}

.entry-content > *:last-child,
.entry-summary > *:last-child {
	margin-bottom: 0;
}

.entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 16px;
	margin-top: 8px;
	color: var(--color-muted);
	font-size: 0.9375rem;
}

.content-card {
	padding-block: 24px;
	border-bottom: 1px solid var(--color-border);
}

.button,
button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 18px;
	border: 1px solid var(--color-accent);
	border-radius: 6px;
	color: #ffffff;
	background: var(--color-accent);
	text-decoration: none;
	cursor: pointer;
}

