:root {
	--th-bg: #ffffff;
	--th-bg-subtle: #f9fafb;
	--th-text: #111827;
	--th-text-muted: #6b7280;
	--th-border: #e5e7eb;
	--th-accent: #e0202c;
	--th-accent-dark: #b6141e;
	--th-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--th-radius: 10px;
	--th-container: 1200px;
}

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--th-font);
	background: var(--th-bg);
	color: var(--th-text);
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: inherit;
	text-decoration: none;
}

ul, ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1, h2, h3, h4 {
	font-weight: 800;
	letter-spacing: -0.01em;
	line-height: 1.2;
	margin: 0;
}

button {
	font-family: inherit;
	cursor: pointer;
	background: none;
	border: none;
	color: inherit;
}

input, textarea {
	font-family: inherit;
}

.th-container {
	max-width: var(--th-container);
	margin: 0 auto;
	padding: 0 20px;
}

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

.th-skip-link {
	position: absolute;
	top: -50px;
	left: 12px;
	z-index: 1000;
	background: var(--th-accent);
	color: #fff;
	padding: 10px 16px;
	border-radius: 6px;
	transition: top 0.2s ease;
}

.th-skip-link:focus {
	top: 12px;
	width: auto;
	height: auto;
	clip: auto;
	overflow: visible;
}

:focus-visible {
	outline: 2px solid var(--th-accent);
	outline-offset: 2px;
}

.th-section-title {
	font-size: 22px;
	position: relative;
	padding-left: 14px;
	margin-bottom: 20px;
}

.th-section-title::before {
	content: "";
	position: absolute;
	left: 0;
	top: 2px;
	bottom: 2px;
	width: 4px;
	background: var(--th-accent);
	border-radius: 2px;
}

.th-empty {
	color: var(--th-text-muted);
	padding: 40px 0;
	text-align: center;
}
