:root {
	--search-landing-accent: #0c70de;
	--search-landing-accent-glow: rgba(12, 112, 222, 0.12);
	--search-landing-accent-glow-soft: rgba(12, 112, 222, 0.03);
	--search-landing-bg: #000000;
	--search-landing-text: #ffffff;
	--search-landing-muted: #8f8f8f;
	--search-landing-surface: #1a1a1a;
	--search-landing-border: rgba(255, 255, 255, 0.14);
}

body.ts-search-landing-page {
	background: var(--search-landing-bg);
}

body.ts-search-landing-page .th,
body.ts-search-landing-page #main-menu,
body.ts-search-landing-page .mm,
body.ts-search-landing-page .kln.blox,
body.ts-search-landing-page .blox.mlb,
body.ts-search-landing-page .announ {
	display: none !important;
}

body.ts-search-landing-page #content {
	max-width: none;
}

body.ts-search-landing-page #content > .wrapper {
	margin: 0;
}

.search-landing-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding: 72px 20px 48px;
	text-align: center;
	color: var(--search-landing-text);
	overflow: hidden;
}

.search-landing-hero__glow {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at center, var(--search-landing-accent-glow) 0%, var(--search-landing-accent-glow-soft) 24%, transparent 58%),
		radial-gradient(circle at center, rgba(255, 255, 255, 0.04) 0%, transparent 42%);
	pointer-events: none;
}

.search-landing-hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 760px;
	margin: 0 auto;
}

.search-landing-hero__logo {
	margin-bottom: 28px;
}

.search-landing-hero__logo img {
	display: block;
	width: auto;
	max-width: min(100%, 360px);
	height: auto;
	margin: 0 auto;
}

.search-landing-hero__logo-text {
	display: inline-block;
	font-size: clamp(2rem, 6vw, 3.4rem);
	font-weight: 700;
	color: var(--search-landing-text);
}

.search-landing-hero__title {
	margin: 0 0 28px;
	font-size: clamp(1.75rem, 4vw, 2.35rem);
	font-weight: 700;
	line-height: 1.2;
	color: var(--search-landing-text);
}

.search-landing-hero__search {
	display: block;
	float: none;
	width: 100%;
	max-width: 100%;
	margin: 0 auto 14px;
	position: relative;
}

body.ts-search-landing-page .search-landing-hero__search-form {
	margin: 0;
	padding: 0;
}

.search-landing-hero__search-field {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 6px 6px 6px 20px;
	background: var(--search-landing-surface);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
}

.search-landing-hero__search-icon {
	color: var(--search-landing-muted);
	font-size: 16px;
	flex: 0 0 auto;
	margin-right: 12px;
}

.search-landing-hero__search-input {
	flex: 1 1 auto;
	width: 100%;
	min-width: 0;
	height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--search-landing-text);
	font-size: 16px;
	line-height: 44px;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}

body.ts-search-landing-page .search-landing-hero__search-input {
	background: transparent !important;
	background-color: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	color: var(--search-landing-text) !important;
}

.search-landing-hero__search-input::placeholder {
	color: #6f6f6f;
}

.search-landing-hero__search-input:focus {
	outline: none;
}

.search-landing-hero__submit-btn {
	flex: 0 0 auto;
	min-width: 140px;
	height: 48px;
	margin: 0;
	padding: 0 22px;
	border: 0;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
}

body.ts-search-landing-page .search-landing-hero__submit-btn {
	position: static !important;
	float: none !important;
	display: inline-flex !important;
	background: var(--search-landing-accent) !important;
	color: #000 !important;
	box-shadow: none !important;
}

.search-landing-hero__suggestions {
	margin: 0 0 28px;
	font-size: 13px;
	line-height: 1.7;
	color: var(--search-landing-muted);
}

.search-landing-hero__suggestions-label {
	color: #6f6f6f;
}

.search-landing-hero__suggestion {
	padding: 0;
	border: 0;
	background: none;
	color: var(--search-landing-muted);
	font: inherit;
	cursor: pointer;
	transition: color 0.15s ease;
}

.search-landing-hero__suggestion:hover {
	color: var(--search-landing-accent);
}

.search-landing-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 14px;
}

.search-landing-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 170px;
	height: 48px;
	padding: 0 22px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 600;
	transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.search-landing-hero__btn--primary {
	background: var(--search-landing-accent);
	color: #fff;
}

.search-landing-hero__btn--primary:hover {
	color: #fff !important;
	opacity: 0.92;
	transform: translateY(-1px);
}

.search-landing-hero__btn--secondary {
	border: 1px solid var(--search-landing-border);
	background: transparent;
	color: var(--search-landing-text);
}

.search-landing-hero__btn--secondary:hover {
	color: var(--search-landing-text);
	border-color: rgba(255, 255, 255, 0.35);
	transform: translateY(-1px);
}

.search-landing-below {
	width: 100%;
	clear: both;
	padding: 0 20px 40px;
}

body.ts-search-landing-page .search-landing-below .bixbox {
	max-width: 1220px;
	margin: 0 auto;
	background: transparent !important;
	box-shadow: none !important;
	border: 0 !important;
	border-radius: 0 !important;
	overflow: visible;
}

body.ts-search-landing-page .search-landing-content,
body.ts-search-landing-page .search-landing-content .entry-content {
	background: transparent !important;
	background-color: transparent !important;
	box-shadow: none !important;
}

.bixbox-search-landing {
	background: transparent !important;
}
.search-landing-content {
	padding: 15px 0;
	color: var(--search-landing-text);
}

body.ts-search-landing-page .search-landing-content p,
body.ts-search-landing-page .search-landing-content li,
body.ts-search-landing-page .search-landing-content {
	color: rgba(255, 255, 255, 0.9);
}

body.ts-search-landing-page .search-landing-content .wp-block-group,
body.ts-search-landing-page .search-landing-content .wp-block-cover,
body.ts-search-landing-page .search-landing-content .wp-block-group__inner-container,
body.ts-search-landing-page .search-landing-content [class*="has-background"] {
	background: transparent !important;
	background-color: transparent !important;
}

@media screen and (max-width: 800px) {
	body.ts-search-landing-page .search-landing-hero__search {
		display: block !important;
		float: none !important;
		width: 100% !important;
		max-width: 100% !important;
		position: relative !important;
		top: auto !important;
		left: auto !important;
		visibility: visible !important;
		opacity: 1 !important;
	}

	body.ts-search-landing-page div#live-search_sb {
		top: auto !important;
		left: 0 !important;
		right: 0 !important;
		width: 100% !important;
		padding: 0 !important;
	}
}

@media screen and (max-width: 680px) {
	.search-landing-hero {
		min-height: auto;
		padding: 48px 16px 40px;
	}

	.search-landing-hero__inner {
		max-width: 100%;
	}

	.search-landing-hero__search-field {
		padding-left: 16px;
		padding-right: 6px;
		gap: 8px;
	}

	.search-landing-hero__search-input {
		font-size: 16px;
	}

	.search-landing-hero__submit-btn {
		min-width: 118px;
		height: 44px;
		padding: 0 16px;
		font-size: 14px;
	}

	.search-landing-hero__actions .search-landing-hero__btn {
		width: 100%;
	}
}

@media screen and (max-width: 400px) {
	.search-landing-hero__search-icon {
		display: none;
	}

	.search-landing-hero__search-field {
		padding-left: 14px;
	}

	.search-landing-hero__submit-btn {
		min-width: 104px;
		padding: 0 14px;
	}
}
