:root {
	--color-text: #111827;
	--color-muted: #4b5563;
	--color-border: #e5e7eb;
	--color-surface: #ffffff;
	--color-accent: #0f766e;
	--container-width: 1120px;
	--container-padding: 20px;
	--font-display: "LAXR", system-ui, sans-serif;
	--font-subtitle: "DG Sahabah", "BigVesta", system-ui, sans-serif;
	--font-body: "BigVesta", system-ui, sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--color-text);
	background: var(--color-surface);
	/* Previous site font: font-family: "Alexandria", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; */
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	text-rendering: optimizeLegibility;
}

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

a {
	color: inherit;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}
h1 {
	font-family: var(--font-display);
}

h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-subtitle);
}

.entry-meta {
	font-family: var(--font-subtitle);
}

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;
	line-height: 1.15;
}

.section-title {
	margin: 0;
	font-family: var(--font-subtitle);
	font-size: clamp(28px, 3.5vw, 44px);
	line-height: 1.4;
	font-weight: 800;
}

.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;
}

