:root {
	--yr-accent: #0f6df5;
	--yr-accent-dark: #0a55c5;
	--yr-canvas: #f5f7fb;
	--yr-surface: #ffffff;
	--yr-surface-soft: #eef2f7;
	--yr-ink: #111827;
	--yr-muted: #64748b;
	--yr-border: #e2e8f0;
	--yr-dark: #0f172a;
	--yr-container: 1220px;
	--yr-radius: 12px;
	--yr-radius-small: 8px;
	--yr-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
	--yr-transition: 180ms ease;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--yr-canvas);
	color: var(--yr-ink);
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.7;
	text-rendering: optimizeLegibility;
}

body.admin-bar {
	--yr-admin-offset: 32px;
}

a {
	color: var(--yr-accent);
	text-decoration: none;
	transition: color var(--yr-transition);
}

a:hover,
a:focus {
	color: var(--yr-accent-dark);
}

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

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	cursor: pointer;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea,
select {
	width: 100%;
	border: 1px solid var(--yr-border);
	border-radius: var(--yr-radius-small);
	background: var(--yr-surface);
	color: var(--yr-ink);
	padding: 0.75rem 0.9rem;
}

input:focus,
textarea:focus,
select:focus,
button:focus-visible,
a:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--yr-accent) 35%, transparent);
	outline-offset: 2px;
}

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

figure {
	margin: 0;
}

table {
	width: 100%;
	border-collapse: collapse;
}

th,
td {
	border: 1px solid var(--yr-border);
	padding: 0.7rem;
	text-align: start;
}

blockquote {
	margin: 1.75rem 0;
	border-inline-start: 4px solid var(--yr-accent);
	background: var(--yr-surface-soft);
	padding: 1rem 1.25rem;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.2em;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus,
.skip-link:focus {
	top: 8px;
	left: 8px;
	z-index: 100000;
	display: block;
	width: auto;
	height: auto;
	clip: auto;
	background: var(--yr-dark);
	color: #fff;
	padding: 0.75rem 1rem;
}
