
/* Base Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Google Sans', sans-serif;
	background-color: var(--kc-bg-light);
	color: var(--kc-text-dark);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	font-size: clamp(0.875rem, 0.787rem + 0.3756vw, 1.125rem) !important;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style: none;
}

button {
	cursor: pointer;
	border: none;
	background: none;
	font-family: inherit;
	transition: all 0.15s ease;
	min-height: 30px;
}

img {
	max-width: 100%;
	display: block;
}

.center {
	text-align: center;
}

.material-symbols-outlined {
	font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
	vertical-align: middle;
}

.brand-text {
	display: flex !important;
	align-items: center;
	gap: 8px;
}

.brand-name {
	font-size: 20px;
	font-weight: 900;
	color: var(--kc-primary);
	text-transform: uppercase;
	line-height: 1;
	letter-spacing: -0.02em;
	max-width: 160px;
}

/* Layout Helpers */
.container {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--gutter);
}

