/*--------------------------------------------------------------
Table of Contents
----------------------------------------------------------------
# 01 Fonts & Variables
# 02 Base
# 03 Header Search
# 04 Autocomplete
# 05 Search Page
# 06 Filter Panel
# 07 Active Filters
# 08 Results Toolbar
# 09 Member Grid
# 10 Member Card
# 11 Slider
# 12 Pagination & Empty States
# 13 Media Queries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# 01 Fonts & Variables
--------------------------------------------------------------*/

:root {
	--tl-border-default: .1rem solid var(--tl-color-border);
	--tl-border-focus: .1rem solid var(--tl-color-action);
	--tl-color-accent: #1f65b7;
	--tl-color-accent-soft: #e7f1fd;
	--tl-color-action: #0a172a;
	--tl-color-action-hover: #102542;
	--tl-color-background: #ffffff;
	--tl-color-border: #dbe2ec;
	--tl-color-card: #ffffff;
	--tl-color-field: #f0f3f7;
	--tl-color-focus: #dbeafe;
	--tl-color-image: #f1f4f8;
	--tl-color-muted: #687388;
	--tl-color-pill-filled: #f0f3f7;
	--tl-color-pill-filled-hover: #e8edf4;
	--tl-color-pill-filled-text: #0a1730;
	--tl-color-pill-outline: #dbe2ec;
	--tl-color-placeholder: #8b94a4;
	--tl-color-soft: #f7f8fa;
	--tl-color-star: #f5bb41;
	--tl-color-star-empty: #9aa7b8;
	--tl-color-text: #0a1730;
	--tl-font-family: "Graphik", "Graphik Web", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--tl-font-icon: "Font Awesome 7 Pro", "Font Awesome 6 Free", "Font Awesome 5 Free", FontAwesome;
	--tl-font-size-l: 1.6rem;
	--tl-font-size-m: 1.4rem;
	--tl-font-size-s: 1.2rem;
	--tl-font-size-xl: 1.8rem;
	--tl-font-weight-bold: 700;
	--tl-font-weight-medium: 600;
	--tl-font-weight-regular: 400;
	--tl-font-weight-semibold: 500;
	--tl-height-action: 5rem;
	--tl-height-field: 4rem;
	--tl-height-touch: 4rem;
	--tl-radius-card: 1rem;
	--tl-radius-input: .7rem;
	--tl-radius-pill: 999rem;
	--tl-search-width: 136rem;
	--tl-shadow-card: 0 1.6rem 4rem rgba(10, 23, 48, .08);
	--tl-shadow-panel: 0 2rem 5rem rgba(10, 23, 48, .1);
	--tl-sidebar-width: 30rem;
	--tl-space-l: 2rem;
	--tl-space-m: 1.5rem;
	--tl-space-s: .5rem;
	--tl-space-xs: .25rem;
	--tl-transition-default: .2s ease;
	--tl-width-panel: 104rem;
	--tl-z-overlay: 2900;
	--tl-z-panel: 3000;
}

/*--------------------------------------------------------------
# 02 Base
--------------------------------------------------------------*/

.tl-algolia-search,
.tl-algolia-search * {
	box-sizing: border-box;
}

.tl-algolia-search,
.tl-algolia-header-search,
.tl-autocomplete-panel {
	font-family: var(--tl-font-family);
}

.tl-algolia-search a,
.tl-autocomplete-panel a {
	color: inherit;
	text-decoration: none;
}

.tl-algolia-search button,
.tl-autocomplete-panel button {
	font-family: inherit;
}

.tl-algolia-search mark,
.tl-autocomplete-panel mark {
	background: transparent;
	color: inherit;
	font-weight: var(--tl-font-weight-bold);
}

/*--------------------------------------------------------------
# 03 Header Search
--------------------------------------------------------------*/

.tl-algolia-header-search {
	align-items: center;
	background: var(--tl-color-field);
	border: var(--tl-border-default);
	border-radius: var(--tl-radius-input);
	display: flex;
	isolation: isolate;
	max-width: 48rem;
	position: relative;
	width: 100%;
}

.tl-algolia-header-search .aa-Autocomplete,
.tl-algolia-header-search .tl-autocomplete-root {
	width: 100%;
}

.tl-algolia-header-search .aa-Form {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: inherit;
	display: flex;
	height: var(--tl-height-field);
	margin: 0 0 0 0;
	position: relative;
	width: 100%;
}

.tl-algolia-header-search .aa-Form:focus-within {
	box-shadow: none;
}

.tl-algolia-header-search .aa-InputWrapper {
	display: block;
	width: 100%;
}

.tl-algolia-header-search .aa-InputWrapperPrefix,
.tl-algolia-header-search .tl-autocomplete-input-prefix {
	align-items: center;
	color: var(--tl-color-action);
	cursor: pointer;
	display: inline-flex;
	height: var(--tl-height-touch);
	justify-content: center;
	position: absolute;
	right: 0;
	top: 0;
	width: var(--tl-height-touch);
	z-index: 1;
}

.tl-algolia-header-search .aa-InputWrapperPrefix::before,
.tl-algolia-header-search .tl-autocomplete-input-prefix::before {
	content: "\f002";
	font-family: var(--tl-font-icon);
	font-size: var(--tl-font-size-l);
	font-weight: 300;
	line-height: 1;
}

.tl-algolia-header-search.tl-has-query .aa-InputWrapperPrefix,
.tl-algolia-header-search.tl-has-query .tl-autocomplete-input-prefix {
	display: none;
}

.tl-algolia-header-search .aa-Label,
.tl-algolia-header-search .aa-LoadingIndicator {
	display: none;
}

.tl-algolia-header-search input[type="search"],
.tl-algolia-header-search .aa-Input {
	appearance: none;
	background: transparent;
	border: 0;
	color: var(--tl-color-text);
	font-size: var(--tl-font-size-m);
	font-weight: var(--tl-font-weight-regular);
	height: var(--tl-height-field);
	line-height: 1.4;
	margin: 0 0 0 0;
	outline: 0;
	padding: 0 var(--tl-height-touch) 0 var(--tl-space-m);
	width: 100%;
}

.tl-algolia-header-search input[type="search"]::placeholder,
.tl-algolia-header-search .aa-Input::placeholder {
	color: var(--tl-color-placeholder);
	opacity: 1;
}

.tl-algolia-header-search input[type="search"]::-ms-clear,
.tl-algolia-header-search input[type="search"]::-ms-reveal,
.tl-algolia-header-search .aa-Input::-ms-clear,
.tl-algolia-header-search .aa-Input::-ms-reveal {
	display: none;
	height: 0;
	width: 0;
}

.tl-algolia-header-search input[type="search"]::-webkit-search-cancel-button,
.tl-algolia-header-search input[type="search"]::-webkit-search-decoration,
.tl-algolia-header-search .aa-Input::-webkit-search-cancel-button,
.tl-algolia-header-search .aa-Input::-webkit-search-decoration {
	appearance: none;
	display: none;
}

.tl-algolia-header-search.tl-autocomplete-open {
	background: var(--tl-color-background);
	border-radius: var(--tl-radius-input);
	z-index: calc(var(--tl-z-panel) + 1);
}

.tl-algolia-header-search:not(.tl-has-query)::after {
	align-items: center;
	color: var(--tl-color-action);
	content: "\f002";
	display: inline-flex;
	font-family: var(--tl-font-icon);
	font-size: var(--tl-font-size-l);
	font-weight: 300;
	height: var(--tl-height-touch);
	justify-content: center;
	line-height: 1;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
	width: var(--tl-height-touch);
	z-index: 2;
}

.tl-algolia-header-search button[type="submit"],
.tl-algolia-header-search .aa-SubmitButton,
.tl-algolia-header-search .tl-autocomplete-submit {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--tl-color-action);
	cursor: pointer;
	display: inline-flex;
	height: var(--tl-height-touch);
	justify-content: center;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	position: absolute;
	right: 0;
	top: 0;
	width: var(--tl-height-touch);
}

.tl-algolia-header-search .aa-ClearButton,
.tl-algolia-header-search .tl-autocomplete-clear {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--tl-color-action);
	cursor: pointer;
	display: none;
	height: var(--tl-height-touch);
	justify-content: center;
	margin: 0 0 0 0;
	opacity: .7;
	padding: 0 0 0 0;
	position: absolute;
	right: 0;
	top: 0;
	transition: opacity var(--tl-transition-default);
	width: var(--tl-height-touch);
}

.tl-algolia-header-search .aa-ClearButton svg,
.tl-algolia-header-search .tl-autocomplete-clear svg {
	display: none;
}

.tl-algolia-header-search .aa-ClearButton:not([hidden]),
.tl-algolia-header-search .tl-autocomplete-clear:not([hidden]) {
	display: inline-flex;
}

.tl-algolia-header-search .aa-ClearButton[hidden],
.tl-algolia-header-search .tl-autocomplete-clear[hidden] {
	display: none;
}

.tl-algolia-header-search.tl-has-query button[type="submit"],
.tl-algolia-header-search.tl-has-query .aa-SubmitButton,
.tl-algolia-header-search.tl-has-query .tl-autocomplete-submit {
	display: none;
}

.tl-algolia-header-search .aa-ClearButton::before,
.tl-algolia-header-search .tl-autocomplete-clear::before {
	content: "\f00d";
	font-family: var(--tl-font-icon);
	font-size: var(--tl-font-size-l);
	font-weight: 300;
}

.tl-algolia-header-search .aa-ClearButton:hover,
.tl-algolia-header-search .aa-ClearButton:focus,
.tl-algolia-header-search .tl-autocomplete-clear:hover,
.tl-algolia-header-search .tl-autocomplete-clear:focus {
	background: transparent;
	border: 0;
	color: var(--tl-color-action);
	opacity: 1;
}

.tl-algolia-header-search button[type="submit"] svg,
.tl-algolia-header-search button[type="submit"] i,
.tl-algolia-header-search .aa-SubmitIcon,
.tl-algolia-header-search .tl-autocomplete-submit svg {
	display: none;
}

.tl-algolia-header-search button[type="submit"]::before,
.tl-algolia-header-search .aa-SubmitButton::before,
.tl-algolia-header-search .tl-autocomplete-submit::before {
	content: "\f002";
	font-family: var(--tl-font-icon);
	font-size: var(--tl-font-size-l);
	font-weight: 300;
}

/*--------------------------------------------------------------
# 04 Autocomplete
--------------------------------------------------------------*/

.header-search.tl-autocomplete-open {
	position: relative;
	z-index: var(--tl-z-panel);
}

.tl-autocomplete-overlay {
	background: rgba(10, 23, 48, .48);
	bottom: 0;
	display: block;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: var(--tl-z-overlay);
}

.tl-autocomplete-overlay[hidden] {
	display: none;
}

body.tl-scroll-locked {
	left: 0;
	overflow: hidden;
	position: fixed;
	right: 0;
	top: var(--tl-scroll-lock-top, 0);
	width: 100%;
}

body.tl-filter-opened .site-header {
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: calc(var(--tl-z-overlay) + 1);
}

html.tl-autocomplete-active .site-header {
	z-index: calc(var(--tl-z-overlay) + 1);
}

.tl-autocomplete-panel {
	background: var(--tl-color-background);
	border: var(--tl-border-default);
	border-radius: var(--tl-radius-card);
	box-shadow: var(--tl-shadow-panel);
	color: var(--tl-color-text);
	left: var(--tl-autocomplete-left, 50%);
	max-height: min(76vh, 86rem);
	overflow-x: hidden;
	overflow-y: auto;
	padding: 0 0 0 0;
	position: fixed;
	top: var(--tl-autocomplete-top, 8rem);
	transform: translateX(-50%);
	width: min(var(--tl-width-panel), 94vw);
	z-index: var(--tl-z-panel);
}

.tl-autocomplete-panel[hidden] {
	display: none;
}

.tl-autocomplete-panel-layout {
	width: 100%;
}

.tl-autocomplete-close {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--tl-color-text);
	cursor: pointer;
	display: inline-flex;
	font-size: var(--tl-font-size-xl);
	height: auto;
	justify-content: center;
	line-height: 1.4;
	opacity: .7;
	padding: 0 0 0 0;
	position: absolute;
	right: calc(var(--tl-space-l) + var(--tl-space-s));
	top: var(--tl-space-l);
	transition: opacity var(--tl-transition-default);
	width: auto;
	z-index: 1;
}

.tl-autocomplete-close::before {
	content: "\f00d";
	font-family: var(--tl-font-icon);
	font-weight: 300;
}

.tl-autocomplete-close:hover,
.tl-autocomplete-close:focus {
	background: transparent;
	border: 0;
	color: var(--tl-color-text);
	opacity: 1;
}

.tl-autocomplete-shell {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(28rem, 1fr);
	min-height: 32rem;
}

.tl-autocomplete-shell--no-results {
	grid-template-columns: 1fr;
	min-height: 0;
}

.tl-autocomplete-main,
.tl-autocomplete-aside,
.tl-autocomplete-top {
	padding: var(--tl-space-l) calc(var(--tl-space-l) + var(--tl-space-s)) var(--tl-space-l) calc(var(--tl-space-l) + var(--tl-space-s));
}

.tl-autocomplete-aside {
	background: var(--tl-color-background);
	border-left: var(--tl-border-default);
	color: var(--tl-color-text);
}

.tl-autocomplete-top {
	border-bottom: var(--tl-border-default);
	grid-column: 1 / -1;
	padding-right: calc(var(--tl-space-l) + var(--tl-space-s) + var(--tl-height-touch));
}

.tl-autocomplete-section {
	margin: 0 0 calc(var(--tl-space-l) + var(--tl-space-s)) 0;
}

.tl-autocomplete-section:last-child {
	margin: 0 0 0 0;
}

.tl-autocomplete-section-header {
	align-items: center;
	display: flex;
	gap: var(--tl-space-m);
	justify-content: space-between;
	margin: 0 0 var(--tl-space-m) 0;
}

.tl-autocomplete-section h3 {
	color: var(--tl-color-text);
	font-size: var(--tl-font-size-l);
	font-weight: var(--tl-font-weight-semibold);
	line-height: 1.2;
	margin: 0 0 0 0;
	text-transform: none;
}

.tl-autocomplete-section-body {
	display: grid;
	gap: var(--tl-space-l);
}

.tl-autocomplete-section--compact .tl-autocomplete-section-body {
	display: flex;
	flex-wrap: wrap;
	gap: var(--tl-space-s);
}

.tl-autocomplete-section--primary-suggestions .tl-autocomplete-section-body {
	gap: var(--tl-space-s);
}

.tl-autocomplete-section--members .tl-autocomplete-section-body {
	gap: var(--tl-space-l);
}

.tl-autocomplete-section--primary .tl-autocomplete-section-body {
	gap: var(--tl-space-s);
}

.tl-autocomplete-section--topics .tl-autocomplete-section-body {
	gap: var(--tl-space-xs);
}

.tl-autocomplete-member {
	border-radius: var(--tl-radius-input);
	color: var(--tl-color-text);
	display: grid;
	gap: var(--tl-space-s);
	margin: 0 0 0 0;
	padding: var(--tl-space-s) var(--tl-space-l) var(--tl-space-s) var(--tl-space-l);
	transition: background var(--tl-transition-default);
}

.tl-autocomplete-member:hover,
.tl-autocomplete-member:focus-within {
	background: var(--tl-color-soft);
}

.tl-autocomplete-member-link {
	align-items: center;
	color: var(--tl-color-text);
	display: grid;
	gap: var(--tl-space-m);
	grid-template-columns: 6rem minmax(0, 1fr);
}

.tl-autocomplete-member-copy {
	display: grid;
	gap: var(--tl-space-s);
	min-width: 0;
}

.tl-autocomplete-member-img {
	aspect-ratio: 1 / 1;
	background: var(--tl-color-image);
	border-radius: var(--tl-radius-pill);
	display: block;
	height: 6rem;
	object-fit: cover;
	width: 6rem;
}

.tl-autocomplete-member-meta {
	align-items: start;
	color: var(--tl-color-muted);
	display: grid;
	font-size: var(--tl-font-size-s);
	font-weight: var(--tl-font-weight-regular);
	gap: var(--tl-space-xs);
	line-height: 1.3;
}

.tl-autocomplete-member-price,
.tl-autocomplete-member-rating {
	align-items: center;
	color: var(--tl-color-text);
	display: inline-flex;
	font-size: var(--tl-font-size-s);
	font-weight: var(--tl-font-weight-semibold);
	gap: var(--tl-space-xs);
	line-height: 1.3;
}

.tl-autocomplete-member-rating-count {
	color: var(--tl-color-muted);
	font-weight: var(--tl-font-weight-regular);
}

.tl-autocomplete-member-stars {
	display: inline-flex;
	gap: .08em;
	line-height: 1;
}

.tl-autocomplete-member-star {
	display: inline-block;
}

.tl-autocomplete-member-star--empty {
	color: var(--tl-color-star-empty);
}

.tl-autocomplete-member-star--full {
	color: var(--tl-color-star);
}

.tl-autocomplete-member-subtitle {
	color: var(--tl-color-muted);
	display: block;
	font-size: var(--tl-font-size-m);
	line-height: 1.3;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.tl-autocomplete-member-title {
	color: var(--tl-color-text);
	font-size: var(--tl-font-size-l);
	font-weight: var(--tl-font-weight-semibold);
	line-height: 1.3;
}

.tl-suggestion-button,
.tl-pill {
	align-items: center;
	appearance: none;
	border: 0;
	border-radius: var(--tl-radius-pill);
	box-shadow: none;
	box-sizing: border-box;
	cursor: pointer;
	display: inline-flex;
	font-size: var(--tl-font-size-m);
	font-weight: var(--tl-font-weight-regular);
	gap: var(--tl-space-xs);
	line-height: 1.4;
	margin: 0 0 0 0;
	outline: 0;
	padding: var(--tl-space-s) var(--tl-space-l) var(--tl-space-s) var(--tl-space-l);
	transform: none;
	transition: background var(--tl-transition-default), opacity var(--tl-transition-default);
	white-space: nowrap;
}

.tl-suggestion-button--primary {
	font-size: var(--tl-font-size-m);
	padding: var(--tl-space-s) var(--tl-space-l) var(--tl-space-s) var(--tl-space-l);
}

.tl-pill--outline,
.tl-suggestion-button--recent {
	background: transparent;
	border: var(--tl-border-default);
	color: var(--tl-color-text);
}

.tl-pill--filled,
.tl-suggestion-button--popular {
	background: var(--tl-color-pill-filled);
	border: 0;
	color: var(--tl-color-pill-filled-text);
}

.tl-autocomplete-panel .tl-suggestion-button,
.tl-autocomplete-panel .tl-suggestion-button:hover,
.tl-autocomplete-panel .tl-suggestion-button:active,
.tl-autocomplete-panel .tl-suggestion-button:focus,
.tl-autocomplete-panel .tl-suggestion-button:focus-visible {
	box-shadow: none;
	outline: 0;
	outline-offset: 0;
	transform: none;
}

.tl-autocomplete-panel .tl-suggestion-button.tl-suggestion-button--popular,
.tl-autocomplete-panel .tl-suggestion-button.tl-suggestion-button--popular:hover,
.tl-autocomplete-panel .tl-suggestion-button.tl-suggestion-button--popular:active,
.tl-autocomplete-panel .tl-suggestion-button.tl-suggestion-button--popular:focus,
.tl-autocomplete-panel .tl-suggestion-button.tl-suggestion-button--popular:focus-visible {
	border: 0;
	box-shadow: none;
	color: var(--tl-color-pill-filled-text);
	outline: 0;
	outline-offset: 0;
	transform: none;
}

.tl-autocomplete-panel .tl-suggestion-button.tl-suggestion-button--popular:hover,
.tl-autocomplete-panel .tl-suggestion-button.tl-suggestion-button--popular:active,
.tl-autocomplete-panel .tl-suggestion-button.tl-suggestion-button--popular:focus,
.tl-autocomplete-panel .tl-suggestion-button.tl-suggestion-button--popular:focus-visible {
	background: var(--tl-color-pill-filled-hover);
}

.tl-autocomplete-panel .tl-suggestion-button.tl-suggestion-button--recent,
.tl-autocomplete-panel .tl-suggestion-button.tl-suggestion-button--recent:hover,
.tl-autocomplete-panel .tl-suggestion-button.tl-suggestion-button--recent:active,
.tl-autocomplete-panel .tl-suggestion-button.tl-suggestion-button--recent:focus,
.tl-autocomplete-panel .tl-suggestion-button.tl-suggestion-button--recent:focus-visible {
	border: var(--tl-border-default);
	box-shadow: none;
	color: var(--tl-color-text);
	outline: 0;
	outline-offset: 0;
	transform: none;
}

.tl-autocomplete-panel .tl-suggestion-button.tl-suggestion-button--recent:hover,
.tl-autocomplete-panel .tl-suggestion-button.tl-suggestion-button--recent:active,
.tl-autocomplete-panel .tl-suggestion-button.tl-suggestion-button--recent:focus,
.tl-autocomplete-panel .tl-suggestion-button.tl-suggestion-button--recent:focus-visible {
	background: var(--tl-color-pill-outline);
}

.tl-autocomplete-link,
.tl-autocomplete-topic-link,
.tl-autocomplete-arrow-link {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: var(--tl-radius-input);
	color: var(--tl-color-text);
	display: grid;
	font-size: var(--tl-font-size-m);
	font-weight: var(--tl-font-weight-regular);
	gap: var(--tl-space-s);
	grid-template-columns: minmax(0, 1fr) auto;
	line-height: 1.4;
	padding: var(--tl-space-s) var(--tl-space-s) var(--tl-space-s) var(--tl-space-s);
	transition: background var(--tl-transition-default);
}

.tl-autocomplete-topic-link {
	margin: 0 calc(var(--tl-space-m) * -1) 0 calc(var(--tl-space-m) * -1);
	min-height: var(--tl-height-field);
	padding: var(--tl-space-s) var(--tl-space-m) var(--tl-space-s) var(--tl-space-m);
}

.tl-autocomplete-link:hover,
.tl-autocomplete-link:focus,
.tl-autocomplete-topic-link:hover,
.tl-autocomplete-topic-link:focus,
.tl-autocomplete-arrow-link:hover,
.tl-autocomplete-arrow-link:focus {
	background: var(--tl-color-soft);
}

.tl-suggestion-button-icon {
	align-items: center;
	display: inline-flex;
	height: 1.4rem;
	justify-content: center;
	line-height: 1;
	width: 1.4rem;
}

.tl-suggestion-button-icon svg {
	display: block;
	height: 1.4rem;
	width: 1.4rem;
}

.tl-suggestion-button-label {
	display: inline-block;
}

.tl-suggestion-button-label mark {
	color: inherit;
	font-weight: var(--tl-font-weight-bold);
}

.tl-autocomplete-loading,
.tl-no-results {
	color: var(--tl-color-muted);
	font-size: var(--tl-font-size-m);
	margin: 0 0 0 0;
}

.tl-autocomplete-panel .tl-autocomplete-contact,
.tl-algolia-search .tl-search-empty-contact {
	align-items: center;
	background: var(--tl-color-action);
	border: 0;
	border-radius: var(--tl-radius-pill);
	box-shadow: none;
	color: var(--tl-color-background);
	display: inline-flex;
	font-size: var(--tl-font-size-m);
	font-weight: var(--tl-font-weight-semibold);
	justify-content: center;
	line-height: 1.2;
	margin: var(--tl-space-m) 0 0 0;
	min-height: var(--tl-height-touch);
	padding: var(--tl-space-s) var(--tl-space-l) var(--tl-space-s) var(--tl-space-l);
	transition: background var(--tl-transition-default), opacity var(--tl-transition-default);
}

.tl-autocomplete-panel .tl-autocomplete-contact:visited,
.tl-algolia-search .tl-search-empty-contact:visited {
	background: var(--tl-color-action);
	border: 0;
	box-shadow: none;
	color: var(--tl-color-background);
}

.tl-autocomplete-panel .tl-autocomplete-contact:hover,
.tl-autocomplete-panel .tl-autocomplete-contact:focus,
.tl-autocomplete-panel .tl-autocomplete-contact:hover:visited,
.tl-autocomplete-panel .tl-autocomplete-contact:focus:visited,
.tl-algolia-search .tl-search-empty-contact:hover,
.tl-algolia-search .tl-search-empty-contact:focus,
.tl-algolia-search .tl-search-empty-contact:hover:visited,
.tl-algolia-search .tl-search-empty-contact:focus:visited {
	background: var(--tl-color-action-hover);
	border: 0;
	box-shadow: none;
	color: var(--tl-color-background);
}

.tl-autocomplete-no-results {
	padding: 0 0 0 0;
}

.tl-autocomplete-no-results h4 {
	color: var(--tl-color-text);
	font-size: var(--tl-font-size-l);
	font-weight: var(--tl-font-weight-semibold);
	line-height: 1.4;
	margin: 0 0 var(--tl-space-s) 0;
}

.tl-autocomplete-no-results p {
	color: var(--tl-color-muted);
	font-size: var(--tl-font-size-m);
	line-height: 1.4;
	margin: 0 0 0 0;
}

.tl-autocomplete-no-results-buttons,
.tl-search-empty-suggestions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--tl-space-s);
	margin: var(--tl-space-s) 0 0 0;
}

.tl-autocomplete-no-results-popular {
	border-top: var(--tl-border-default);
	margin: var(--tl-space-l) 0 0 0;
	padding: var(--tl-space-m) 0 0 0;
}

.tl-autocomplete-no-results-popular strong {
	color: var(--tl-color-text);
	display: block;
	font-size: var(--tl-font-size-m);
	font-weight: var(--tl-font-weight-semibold);
	line-height: 1.4;
	margin: 0 0 var(--tl-space-s) 0;
}

.tl-autocomplete-maintenance {
	padding: var(--tl-space-l) var(--tl-space-l) var(--tl-space-l) var(--tl-space-l);
}

.tl-autocomplete-maintenance p {
	color: var(--tl-color-muted);
	font-size: var(--tl-font-size-m);
	line-height: 1.5;
	margin: 0 0 0 0;
}

.tl-autocomplete-maintenance strong {
	color: var(--tl-color-text);
	display: block;
	font-size: var(--tl-font-size-l);
	font-weight: var(--tl-font-weight-semibold);
	margin: 0 0 var(--tl-space-s) 0;
}

.tl-autocomplete-topic-link small {
	color: var(--tl-color-muted);
	font-size: var(--tl-font-size-s);
	white-space: nowrap;
}

.tl-autocomplete-panel .tl-view-all-results--button {
	align-items: center;
	background: var(--tl-color-action);
	border: 0;
	border-radius: var(--tl-radius-pill);
	box-shadow: none;
	color: var(--tl-color-background);
	display: inline-flex;
	font-size: var(--tl-font-size-m);
	font-weight: var(--tl-font-weight-semibold);
	justify-content: center;
	line-height: 1.2;
	margin: var(--tl-space-s) 0 0 calc(6rem + var(--tl-space-m) + var(--tl-space-l));
	min-height: var(--tl-height-touch);
	padding: var(--tl-space-s) var(--tl-space-l) var(--tl-space-s) var(--tl-space-l);
	text-decoration: none;
	transition: background var(--tl-transition-default), opacity var(--tl-transition-default);
}

.tl-autocomplete-panel .tl-view-all-results--button:visited {
	background: var(--tl-color-action);
	border: 0;
	box-shadow: none;
	color: var(--tl-color-background);
}

.tl-autocomplete-panel .tl-view-all-results--button:hover,
.tl-autocomplete-panel .tl-view-all-results--button:focus,
.tl-autocomplete-panel .tl-view-all-results--button:hover:visited,
.tl-autocomplete-panel .tl-view-all-results--button:focus:visited {
	background: var(--tl-color-action-hover);
	border: 0;
	box-shadow: none;
	color: var(--tl-color-background);
}

.tl-autocomplete-panel .tl-view-all-results--inline {
	color: var(--tl-color-action);
	display: none;
	font-size: var(--tl-font-size-m);
	font-weight: var(--tl-font-weight-semibold);
	line-height: 1.2;
	margin: 0 0 0 auto;
	padding: 0 0 0 0;
	text-decoration: underline;
	transition: opacity var(--tl-transition-default);
	white-space: nowrap;
}

.tl-autocomplete-panel .tl-view-all-results--inline:hover,
.tl-autocomplete-panel .tl-view-all-results--inline:focus {
	opacity: .75;
}

.tl-autocomplete-panel .tl-view-all-results--inline:hover,
.tl-autocomplete-panel .tl-view-all-results--inline:focus,
.tl-autocomplete-panel .tl-view-all-results--inline:visited {
	color: var(--tl-color-action);
}

/*--------------------------------------------------------------
# 05 Search Page
--------------------------------------------------------------*/

.tl-algolia-search {
	background: var(--tl-color-soft);
	clear: both;
	color: var(--tl-color-text);
	margin: 0 auto 0 auto;
	max-width: var(--tl-search-width);
	padding: var(--tl-space-l) 0 var(--tl-space-l) 0;
	width: 100%;
}

.tl-search-header {
	margin: 0 0 var(--tl-space-l) 0;
	max-width: 92rem;
	padding: 0 0 0 0;
}


.tl-search-header p {
	color: var(--tl-color-muted);
	font-size: var(--tl-font-size-l);
	font-weight: var(--tl-font-weight-regular);
	line-height: 1.5;
	margin: 0 0 0 0;
}

.tl-search-layout {
	align-items: start;
	display: grid;
	gap: 4rem;
	grid-template-columns: minmax(24rem, var(--tl-sidebar-width)) minmax(0, 1fr);
	padding: 0 0 var(--tl-space-l) 0;
}

.tl-search-query-label {
	color: var(--tl-color-muted);
	font-size: var(--tl-font-size-m);
	font-weight: var(--tl-font-weight-regular);
	line-height: 1.4;
	min-height: var(--tl-height-field);
}

.tl-search-query-label strong {
	color: var(--tl-color-text);
	font-weight: var(--tl-font-weight-semibold);
}

.tl-search-query-label[hidden] {
	display: block;
	visibility: hidden;
}

.tl-search-topbar {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin: 0 0 var(--tl-space-l) 0;
}

/*--------------------------------------------------------------
# 06 Filter Panel
--------------------------------------------------------------*/

.tl-filter-panel {
	background: transparent;
	border: 0;
	color: var(--tl-color-text);
	padding: 0 0 0 0;
	position: static;
}

.tl-filter-scroll {
	max-height: none;
	overflow: visible;
	padding: 0 0 0 0;
}

.tl-filter-desktop-head {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin: 0 0 var(--tl-space-m) 0;
	min-height: 0;
}

.tl-filter-desktop-head h2 {
	color: var(--tl-color-text);
	font-size: var(--tl-font-size-l);
	font-weight: var(--tl-font-weight-semibold);
	line-height: 1.2;
	margin: 0 0 0 0;
}

.tl-filter-apply-wrap {
	display: none;
}

.tl-filter-group {
	border-bottom: var(--tl-border-default);
	margin: 0 0 0 0;
	padding: var(--tl-space-m) 0 var(--tl-space-m) 0;
}

.tl-filter-group:first-child {
	padding: 0 0 var(--tl-space-m) 0;
}

.tl-filter-group summary {
	align-items: center;
	color: var(--tl-color-text);
	cursor: pointer;
	display: flex;
	font-size: var(--tl-font-size-l);
	font-weight: var(--tl-font-weight-semibold);
	justify-content: space-between;
	line-height: 1.3;
	list-style: none;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	text-transform: none;
}

.tl-filter-group summary::-webkit-details-marker {
	display: none;
}

.tl-filter-group summary::after {
	color: var(--tl-color-muted);
	content: "\f078";
	font-family: var(--tl-font-icon);
	font-size: var(--tl-font-size-s);
	font-weight: 900;
	line-height: 1;
	transform: rotate(0deg);
}

.tl-filter-group[open] summary::after {
	transform: rotate(180deg);
}

.tl-filter-open {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 0;
	color: var(--tl-color-text);
	cursor: pointer;
	display: none;
	font-size: var(--tl-font-size-m);
	font-weight: var(--tl-font-weight-semibold);
	gap: var(--tl-space-s);
	line-height: 1.4;
	margin: 0 0 0 0;
	min-height: 0;
	opacity: 1;
	padding: 0 0 0 0;
	transition: opacity var(--tl-transition-default);
}

.tl-filter-open:hover,
.tl-filter-open:focus {
	background: transparent;
	border: 0;
	color: var(--tl-color-text);
	opacity: .75;
}

.tl-algolia-search .tl-filter-apply {
	align-items: center;
	background: var(--tl-color-action);
	border: 0;
	border-radius: var(--tl-radius-input);
	color: var(--tl-color-background);
	cursor: pointer;
	display: inline-flex;
	font-size: var(--tl-font-size-l);
	font-weight: var(--tl-font-weight-semibold);
	height: var(--tl-height-action);
	justify-content: center;
	line-height: 1.2;
	margin: 0 0 0 0;
	min-height: var(--tl-height-action);
	padding: var(--tl-space-m) var(--tl-space-l) var(--tl-space-m) var(--tl-space-l);
	width: 100%;
}

.tl-algolia-search .tl-filter-apply:hover,
.tl-algolia-search .tl-filter-apply:focus {
	background: var(--tl-color-action-hover);
	color: var(--tl-color-background);
}

.tl-filter-reset {
	min-height: 0;
}

.tl-filter-panel .ais-SearchBox {
	margin: var(--tl-space-s) 0 var(--tl-space-m) 0;
}

.tl-filter-panel .ais-SearchBox-form {
	position: relative;
}

.tl-filter-panel .ais-SearchBox-input {
	appearance: none;
	background: var(--tl-color-field);
	border: var(--tl-border-default);
	border-radius: var(--tl-radius-input);
	color: var(--tl-color-text);
	font-size: var(--tl-font-size-m);
	font-weight: var(--tl-font-weight-regular);
	min-height: var(--tl-height-field);
	outline: 0;
	padding: 0 var(--tl-space-m) 0 var(--tl-space-m);
	width: 100%;
}

.tl-filter-panel .ais-SearchBox-input::placeholder {
	color: var(--tl-color-placeholder);
}

.tl-filter-panel .ais-SearchBox-loadingIndicator,
.tl-filter-panel .ais-SearchBox-reset,
.tl-filter-panel .ais-SearchBox-submit {
	display: none;
}

.tl-filter-panel .ais-RefinementList-list,
.tl-filter-panel .ais-NumericMenu-list {
	display: grid;
	gap: var(--tl-space-xs);
	list-style: none;
	margin: var(--tl-space-m) 0 0 0;
	padding: 0 0 0 0;
}

.tl-filter-panel .ais-RefinementList-item,
.tl-filter-panel .ais-NumericMenu-item {
	margin: 0 0 0 0;
}

.tl-filter-panel .ais-RefinementList-label,
.tl-filter-panel .ais-NumericMenu-label {
	align-items: center;
	color: var(--tl-color-text);
	cursor: pointer;
	display: grid;
	font-size: var(--tl-font-size-m);
	font-weight: var(--tl-font-weight-regular);
	gap: var(--tl-space-s);
	grid-template-columns: auto minmax(0, 1fr) auto;
	line-height: 1.4;
}

.tl-filter-panel .ais-RefinementList-checkbox,
.tl-filter-panel .ais-NumericMenu-radio {
	accent-color: var(--tl-color-action);
	height: var(--tl-font-size-l);
	margin: 0 0 0 0;
	width: var(--tl-font-size-l);
}

.tl-filter-panel .ais-RefinementList-count,
.tl-filter-panel .ais-NumericMenu-count {
	background: var(--tl-color-field);
	border-radius: var(--tl-radius-input);
	color: var(--tl-color-muted);
	font-size: var(--tl-font-size-s);
	font-weight: var(--tl-font-weight-semibold);
	min-width: var(--tl-height-touch);
	padding: var(--tl-space-xs) var(--tl-space-s) var(--tl-space-xs) var(--tl-space-s);
	text-align: center;
}

.tl-filter-panel .ais-RefinementList-showMore,
.tl-algolia-search .tl-filter-reset-button {
	background: transparent;
	border: 0;
	border-radius: 0;
	color: var(--tl-color-text);
	cursor: pointer;
	font-size: var(--tl-font-size-m);
	font-weight: var(--tl-font-weight-semibold);
	margin: var(--tl-space-m) 0 var(--tl-space-s) 0;
	padding: 0 0 var(--tl-space-xs) 0;
	text-decoration: underline;
	text-underline-offset: .25em;
}

.tl-filter-panel .ais-RefinementList-showMore:hover,
.tl-filter-panel .ais-RefinementList-showMore:focus,
.tl-algolia-search .tl-filter-reset-button:hover,
.tl-algolia-search .tl-filter-reset-button:focus {
	background: transparent;
	border: 0;
	color: var(--tl-color-text);
}

.tl-filter-panel .ais-RefinementList-showMore--disabled,
.tl-filter-reset[hidden] {
	display: none;
}

/*--------------------------------------------------------------
# 07 Active Filters
--------------------------------------------------------------*/

.tl-current-refinements {
	margin: 0 0 var(--tl-space-l) 0;
}

.tl-current-refinements[hidden] {
	display: none;
}

.tl-current-refinements-list {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: var(--tl-space-s);
	list-style: none;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

.tl-algolia-search .tl-current-refinements-button {
	align-items: center;
	background: var(--tl-color-pill-filled);
	border: var(--tl-border-default);
	border-color: transparent;
	border-radius: var(--tl-radius-pill);
	color: var(--tl-color-text);
	cursor: pointer;
	display: inline-flex;
	font-size: var(--tl-font-size-m);
	font-weight: var(--tl-font-weight-regular);
	gap: var(--tl-space-s);
	line-height: 1.2;
	padding: var(--tl-space-s) var(--tl-space-m) var(--tl-space-s) var(--tl-space-m);
}

.tl-current-refinements-label {
	color: var(--tl-color-muted);
}

.tl-current-refinements-remove {
	font-weight: var(--tl-font-weight-semibold);
}

.tl-algolia-search .tl-current-refinements-button:hover,
.tl-algolia-search .tl-current-refinements-button:focus {
	background: var(--tl-color-pill-filled-hover);
	border-color: transparent;
	color: var(--tl-color-text);
}

/*--------------------------------------------------------------
# 08 Results Toolbar
--------------------------------------------------------------*/

.tl-results-toolbar {
	align-items: center;
	display: flex;
	gap: var(--tl-space-m);
	justify-content: space-between;
	margin: 0 0 var(--tl-space-l) 0;
	padding: 0 0 0 0;
}

.tl-results-actions {
	align-items: center;
	display: flex;
	gap: var(--tl-space-m);
	margin: 0 0 0 auto;
}

.tl-stats,
#tl-stats {
	color: var(--tl-color-text);
	font-size: var(--tl-font-size-l);
	font-weight: var(--tl-font-weight-semibold);
	line-height: 1.2;
}

.tl-sortby {
	align-items: center;
	display: inline-flex;
	position: relative;
}

.tl-sortby::after {
	color: var(--tl-color-text);
	content: "\f078";
	font-family: var(--tl-font-icon);
	font-size: var(--tl-font-size-s);
	font-weight: 900;
	line-height: 1;
	margin: 0 0 0 var(--tl-space-s);
	pointer-events: none;
}

.tl-sortby .ais-SortBy-select {
	appearance: none;
	background: transparent;
	border: 0;
	border-radius: 0;
	color: var(--tl-color-text);
	cursor: pointer;
	font-size: var(--tl-font-size-m);
	font-weight: var(--tl-font-weight-semibold);
	line-height: 1.4;
	margin: 0 0 0 0;
	min-height: 0;
	outline: 0;
	padding: 0 0 0 0;
}

/*--------------------------------------------------------------
# 09 Member Grid
--------------------------------------------------------------*/

#tl-hits,
#tl-hits .ais-Hits,
#tl-hits .ais-Hits-list {
	min-width: 0;
	width: 100%;
}

#tl-hits .ais-Hits-list {
	display: grid;
	gap: var(--tl-space-l);
	grid-template-columns: repeat(3, minmax(0, 1fr));
	list-style: none;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

#tl-hits .ais-Hits-item {
	background: transparent;
	border: 0;
	box-shadow: none;
	margin: 0 0 0 0;
	min-width: 0;
	padding: 0 0 0 0;
	width: 100%;
}

/*--------------------------------------------------------------
# 10 Member Card
--------------------------------------------------------------*/

.tl-card {
	background: var(--tl-color-card);
	border: var(--tl-border-default);
	border-radius: var(--tl-radius-card);
	box-shadow: var(--tl-shadow-card);
	color: var(--tl-color-text);
	display: flex;
	flex-direction: column;
	height: 100%;
	margin: 0 0 0 0;
	min-width: 0;
	overflow: hidden;
	padding: 0 0 0 0;
	position: relative;
	width: 100%;
}

.tl-card a:hover,
.tl-card a:focus {
	color: var(--tl-color-text);
	opacity: .8;
	text-decoration: none;
}


.tl-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: var(--tl-space-l) var(--tl-space-m) var(--tl-space-l) var(--tl-space-m);
}

.tl-card .tl-card-cta {
	align-items: center;
	align-self: end;
	background: var(--tl-color-action);
	border: 0;
	border-radius: var(--tl-radius-input);
	color: var(--tl-color-background);
	display: inline-flex;
	font-size: var(--tl-font-size-m);
	font-weight: var(--tl-font-weight-semibold);
	justify-content: center;
	line-height: 1.2;
	margin: 0 0 0 0;
	min-height: var(--tl-height-touch);
	padding: var(--tl-space-s) var(--tl-space-l) var(--tl-space-s) var(--tl-space-l);
	text-decoration: none;
	transition: background var(--tl-transition-default);
	width: auto;
}

.tl-card .tl-card-cta:hover,
.tl-card .tl-card-cta:focus {
	background: var(--tl-color-action-hover);
	color: var(--tl-color-background);
	text-decoration: none;
}

.tl-card-img {
	aspect-ratio: 16 / 9;
	background: var(--tl-color-image);
	border-radius: var(--tl-radius-card) var(--tl-radius-card) 0 0;
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.tl-card-image-link {
	aspect-ratio: 16 / 9;
	background: var(--tl-color-image);
	border-radius: var(--tl-radius-card) var(--tl-radius-card) 0 0;
	display: block;
	margin: 0 0 0 0;
	overflow: hidden;
	position: relative;
}

.tl-card-price {
	color: var(--tl-color-text);
	font-size: var(--tl-font-size-l);
	font-weight: var(--tl-font-weight-semibold);
	line-height: 1.4;
	margin: 0 0 0 0;
}

.tl-card-footer {
	align-items: end;
	border-top: var(--tl-border-default);
	display: grid;
	gap: var(--tl-space-m);
	grid-template-columns: minmax(0, 1fr) auto;
	margin: auto 0 0 0;
	padding: var(--tl-space-m) 0 0 0;
}

.tl-card-price-prefix {
	color: var(--tl-color-muted);
	display: block;
	font-size: var(--tl-font-size-s);
	font-weight: var(--tl-font-weight-regular);
	line-height: 1.3;
}

.tl-card-price-amount {
	display: block;
	font-size: var(--tl-font-size-xl);
}

.tl-card-rating {
	align-items: center;
	color: var(--tl-color-muted);
	display: flex;
	font-size: var(--tl-font-size-s);
	font-weight: var(--tl-font-weight-regular);
	gap: var(--tl-space-s);
	line-height: 1.3;
	margin: 0 0 var(--tl-space-m) 0;
}

.tl-card-rating-count {
	color: var(--tl-color-muted);
}

.tl-card-stars {
	display: inline-flex;
	font-size: var(--tl-font-size-s);
	gap: .08em;
	line-height: 1;
	white-space: nowrap;
}

.tl-card-star {
	display: inline-block;
}

.tl-card-star--empty {
	color: var(--tl-color-star-empty);
}

.tl-card-star--full {
	color: var(--tl-color-star);
}

.tl-card-subtitle {
	color: var(--tl-color-muted);
	font-size: var(--tl-font-size-m);
	font-weight: var(--tl-font-weight-regular);
	line-height: 1.4;
	margin: var(--tl-space-s) 0 var(--tl-space-m) 0;
}

.tl-card-title,
.tl-card-title a {
	color: var(--tl-color-text);
	font-size: var(--tl-font-size-xl);
	font-weight: var(--tl-font-weight-semibold);
	line-height: 1.2;
	margin: 0 0 0 0;
	text-decoration: none;
	transition: opacity var(--tl-transition-default);
}

/*--------------------------------------------------------------
# 11 Slider
--------------------------------------------------------------*/

.tl-algolia-slider {
	margin: var(--tl-space-l) 0 var(--tl-space-l) 0;
}

.tl-algolia-slider-track:not(.slick-initialized) {
	display: grid;
	gap: var(--tl-space-l);
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tl-slider-heading {
	margin: 0 0 var(--tl-space-l) 0;
}

.tl-slider-heading .subtitle {
	color: var(--tl-color-muted);
	margin: 0 0 0 0;
}

.tl-slider-heading .title {
	margin: 0 0 var(--tl-space-s) 0;
}

.tl-slider-slide {
	min-width: 0;
}

/*--------------------------------------------------------------
# 12 Pagination & Empty States
--------------------------------------------------------------*/

#tl-pagination {
	margin: var(--tl-space-l) 0 0 0;
}

#tl-pagination .ais-Pagination-list {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: var(--tl-space-s);
	justify-content: center;
	list-style: none;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

#tl-pagination .ais-Pagination-link {
	align-items: center;
	border: var(--tl-border-default);
	border-radius: var(--tl-radius-input);
	color: var(--tl-color-text);
	display: inline-flex;
	font-size: var(--tl-font-size-m);
	font-weight: var(--tl-font-weight-semibold);
	height: var(--tl-height-touch);
	justify-content: center;
	min-width: var(--tl-height-touch);
	padding: 0 var(--tl-space-m) 0 var(--tl-space-m);
	text-decoration: none;
}

#tl-pagination .ais-Pagination-item--selected .ais-Pagination-link,
#tl-pagination .ais-Pagination-link:hover,
#tl-pagination .ais-Pagination-link:focus {
	background: var(--tl-color-soft);
}

.tl-search-empty {
	background: var(--tl-color-soft);
	border-radius: var(--tl-radius-card);
	padding: var(--tl-space-l) var(--tl-space-l) var(--tl-space-l) var(--tl-space-l);
}

.tl-search-empty h2 {
	color: var(--tl-color-text);
	font-size: var(--tl-font-size-xl);
	font-weight: var(--tl-font-weight-semibold);
	margin: 0 0 var(--tl-space-s) 0;
}

.tl-search-empty p {
	color: var(--tl-color-muted);
	font-size: var(--tl-font-size-m);
	line-height: 1.5;
	margin: 0 0 0 0;
}

.tl-search-empty .tl-suggestion-button {
	margin: 0 0 0 0;
}

/*--------------------------------------------------------------
# 13 Media Queries
--------------------------------------------------------------*/

/* 03 Header Search */
@media screen and (max-width: 900px) {
	.site-header__search .tl-algolia-header-search,
	.tl-algolia-header-search.header-search--mobile {
		max-width: none;
		width: 100%;
	}
}

/* 04 Autocomplete */
@media screen and (max-width: 900px) {
	.tl-autocomplete-aside {
		border-left: 0;
		border-top: var(--tl-border-default);
	}


	.tl-autocomplete-main,
	.tl-autocomplete-aside,
	.tl-autocomplete-top {
		padding: var(--tl-space-l) var(--tl-space-l) var(--tl-space-l) var(--tl-space-l);
	}

	.tl-autocomplete-member-subtitle {
		white-space: normal;
	}

	.tl-autocomplete-panel {
		border-left: 0;
		border-radius: 0;
		border-right: 0;
		box-shadow: none;
		height: calc(100dvh - var(--tl-autocomplete-top, 8rem));
		left: 0;
		max-height: none;
		overflow-x: hidden;
		overflow-y: auto;
		padding: 0 0 0 0;
		right: auto;
		top: var(--tl-autocomplete-top, 8rem);
		transform: none;
		width: 100vw;
		z-index: var(--tl-z-panel);
	}

	.tl-algolia-header-search input[type="search"],
	.tl-algolia-header-search .aa-Input {
		font-size: var(--tl-font-size-l);
	}

	.tl-autocomplete-close {
		display: none;
	}

	.tl-autocomplete-panel .tl-view-all-results--button {
		display: none;
	}

	.tl-autocomplete-panel .tl-view-all-results--inline {
		display: inline-flex;
	}

	.tl-autocomplete-shell {
		grid-template-columns: 1fr;
		min-height: 0;
	}
}

/* 05 Search Page */
@media screen and (max-width: 1100px) {
	.tl-algolia-search {
		padding: var(--tl-space-l) 0 var(--tl-space-l) 0;
	}

	.tl-search-layout {
		grid-template-columns: 1fr;
	}
}

/* 06 Filter Panel */
@media screen and (max-width: 900px) {
	.tl-filter-apply-wrap {
		align-items: stretch;
		background: var(--tl-color-background);
		border-top: var(--tl-border-default);
		display: grid;
		gap: var(--tl-space-m);
		grid-template-columns: 1fr 1fr;
		padding: var(--tl-space-m) var(--tl-space-l) var(--tl-space-l) var(--tl-space-l);
	}

	.tl-algolia-search .tl-filter-apply,
	.tl-filter-reset--mobile {
		display: flex;
		min-width: 0;
	}

	.tl-algolia-search .tl-filter-apply,
	.tl-filter-reset--mobile .tl-filter-reset-button {
		align-items: center;
		box-sizing: border-box;
		font-size: var(--tl-font-size-l);
		font-weight: var(--tl-font-weight-semibold);
		height: var(--tl-height-action);
		justify-content: center;
		line-height: 1.2;
		margin: 0 0 0 0;
		min-height: var(--tl-height-action);
		padding: var(--tl-space-m) var(--tl-space-l) var(--tl-space-m) var(--tl-space-l);
		text-decoration: none;
		width: 100%;
	}

	.tl-filter-desktop-head {
		display: none;
	}

	.tl-filter-group {
		padding: var(--tl-space-m) var(--tl-space-l) var(--tl-space-m) var(--tl-space-l);
	}

	.tl-filter-group:first-child {
		padding: var(--tl-space-m) var(--tl-space-l) var(--tl-space-m) var(--tl-space-l);
	}

	.tl-filter-is-open .tl-filter-panel {
		opacity: 1;
		transform: translateX(0);
		visibility: visible;
	}

	.tl-filter-open {
		display: inline-flex;
	}

	.tl-filter-panel .ais-SearchBox-input {
		font-size: var(--tl-font-size-l);
	}

	.tl-filter-reset--mobile .tl-filter-reset-button {
		background: transparent;
		border: var(--tl-border-default);
		border-radius: var(--tl-radius-input);
		color: var(--tl-color-text);
		display: inline-flex;
	}
	.tl-filter-reset--mobile .tl-filter-reset-button:hover,
	.tl-filter-reset--mobile .tl-filter-reset-button:focus {
		background: transparent;
		border: var(--tl-border-default);
		color: var(--tl-color-text);
		opacity: .75;
	}

	.tl-filter-panel {
		background: var(--tl-color-background);
		bottom: 0;
		display: flex;
		flex-direction: column;
		left: 0;
		opacity: 0;
		position: fixed;
		right: 0;
		top: var(--tl-filter-top, 0);
		transform: translateX(100%);
		transition: opacity var(--tl-transition-default), transform var(--tl-transition-default), visibility var(--tl-transition-default);
		visibility: hidden;
		z-index: var(--tl-z-overlay);
	}

	.tl-filter-scroll {
		flex: 1;
		overflow: auto;
	}

	body.tl-filter-opened {
		overflow: hidden;
	}
}

/* 08 Results Toolbar */
@media screen and (max-width: 900px) {
	.tl-results-actions {
		align-items: center;
		justify-content: flex-end;
		margin: 0 0 0 0;
	}

	.tl-results-toolbar {
		align-items: center;
		display: grid;
		gap: var(--tl-space-l);
		grid-template-columns: 1fr auto;
	}

	.tl-results-toolbar .tl-filter-open {
		grid-column: 1;
		grid-row: 2;
	}

	.tl-results-toolbar .tl-results-actions {
		grid-column: 2;
		grid-row: 2;
		justify-self: end;
	}

	.tl-results-toolbar .tl-stats,
	.tl-results-toolbar #tl-stats {
		display: block;
	}

	.tl-sortby .ais-SortBy-select {
		font-size: var(--tl-font-size-l);
	}

	.tl-stats,
	#tl-stats {
		grid-column: 1 / -1;
		grid-row: 1;
	}
}

/* 09 Member Grid */
@media screen and (max-width: 1100px) {
	#tl-hits .ais-Hits-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* 10 Member Card */
@media screen and (max-width: 700px) {
	.tl-card-title,
	.tl-card-title a {
		font-size: var(--tl-font-size-l);
	}
}

/* 11 Slider */
@media screen and (max-width: 700px) {
	.tl-algolia-slider-track:not(.slick-initialized) {
		display: flex;
		overflow-x: auto;
		padding: 0 0 var(--tl-space-m) 0;
		scroll-snap-type: x mandatory;
	}

	.tl-algolia-slider-track:not(.slick-initialized) .tl-slider-slide {
		flex: 0 0 80%;
		scroll-snap-align: start;
	}
}

/* 12 Pagination & Empty States */
@media screen and (max-width: 700px) {
	#tl-hits .ais-Hits-list {
		grid-template-columns: 1fr;
	}
}
