@charset "utf-8";
/* CSS Document */
/* ==========================================================================
   RESET
   ========================================================================== */

/* Box Sizing */

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

/* Remove Default Margin */

* {
	margin: 0;
	padding: 0;
}

/* Improve Text Rendering */

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

body {
	min-height: 100vh;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Images */

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

/* Form Elements */

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

button {
	background: transparent;
	border: 0;
	cursor: pointer;
}

/* Lists */

ul,
ol {
	list-style: none;
}

/* Links */

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: 2px solid var(--tc-primary);
	outline-offset: 3px;
}

/* Tables */

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

/* Media */

iframe {
	border: 0;
}

/* Text Selection */

::selection {
	background: var(--tc-primary);
	color: var(--tc-white);
}

/* Hidden Attribute */

[hidden] {
	display: none !important;
}

/* WordPress Alignment */

.alignleft {
	float: left;
	margin-right: 1.5rem;
	margin-bottom: 1rem;
}

.alignright {
	float: right;
	margin-left: 1.5rem;
	margin-bottom: 1rem;
}

.aligncenter {
	display: block;
	margin-right: auto;
	margin-left: auto;
}

/* Screen Reader */

.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 {
	position: fixed;
	top: 1rem;
	left: 1rem;
	width: auto;
	height: auto;
	padding: .75rem 1rem;
	margin: 0;
	background: var(--tc-primary);
	color: var(--tc-white);
	clip: auto;
	z-index: 999999;
}

/* Prevent decorative elements from creating a page-wide horizontal scrollbar. */
html,
body {
	max-width: 100%;
	overflow-x: clip;
}