/* Body */
body {
	font-family: var(--font-family-base, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif);
	font-size: var(--font-size-base, 1rem);
	line-height: var(--line-height-base, 1.6);
	color: var(--color-text, #1a1a1a);
	background: var(--color-bg, #ffffff);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

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

/* Paragraph */
p {
	margin: 0 0 var(--space-4);
	font-size: var(--font-size-base);
	line-height: var(--line-height-base);
}

/* Links */
a {
	color: inherit;
	text-decoration: underline;
}

a:hover,
a:focus-visible {
	/* text-decoration: none; */
	/* offset-distance: 1em; */
	text-underline-offset: 2px;
}

/* Headings 1-4 */
h1,
h2,
h3,
h4 {
	margin: 0 0 var(--space-4);
	font-family: var(--font-family-heading);
	line-height: var(--line-height-heading);
	color: var(--color-heading);
	font-weight: 700;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

h1 {
	font-size: clamp(2rem, 4vw, 3rem);
}

h2 {
	font-size: clamp(1.625rem, 3vw, 2.25rem);
}

h3 {
	font-size: clamp(1.25rem, 2.3vw, 1.75rem);
}

h4 {
	font-size: clamp(1.125rem, 2vw, 1.375rem);
}

/* Lists: bullet and numbered */
.entry-content ul,
.entry-content ol {
	margin: 0 0 var(--space-4) var(--space-5);
	padding: 0;
}

.entry-content ul {
	list-style: disc;
}

.entry-content ol {
	list-style: decimal;
}

.entry-content li + li {
	margin-top: var(--space-2);
}
