/**
 * Header live search panel
 */

.header-search-item .header-search-toggle {
	cursor: pointer;
	color: inherit;
	line-height: 1;
}

.header-search-item .header-search-toggle:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
	border-radius: 4px;
}

.header-search-icon {
	display: block;
	width: 22px;
	height: 22px;
	object-fit: contain;
}

#wrapper-navbar {
	position: relative;
}

/* Desktop slide panel: never show on small screens (search lives in the collapsible menu). */
@media (max-width: 767px) {
	.header-live-search-panel--desktop {
		display: none !important;
		visibility: hidden;
		pointer-events: none;
	}
}

/* Separator above inline mobile search (dark navbar) */
.header-live-search-mobile-border {
	border-color: rgba(255, 255, 255, 0.22) !important;
}

.header-live-search-results--mobile {
	max-height: min(42vh, 320px);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.header-live-search-panel {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	z-index: 1040;
	background: #fff;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
	max-height: min(70vh, 520px);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.header-live-search-panel[hidden] {
	display: none !important;
}

.header-live-search-panel.is-open {
	display: block !important;
}

.header-live-search-field {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}

/* No purple/blue Bootstrap focus ring on the search field */
.header-live-search-input {
	-webkit-tap-highlight-color: transparent;
}

.header-live-search-input.form-control:focus,
.header-live-search-input:focus,
.header-live-search-input:focus-visible {
	outline: none !important;
	box-shadow: none !important;
	border-color: #ced4da;
}

.header-live-search-field.input-group:focus-within {
	box-shadow: none !important;
}

.header-live-search-field .input-group-text {
	border-color: #ced4da;
}

.header-live-search-results {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}

.header-live-search-results.is-empty {
	display: none;
}

.header-live-search-hit {
	display: block;
	padding: 0.65rem 0.75rem;
	border: 1px solid #e8e8ee;
	border-radius: 8px;
	margin-bottom: 0.5rem;
	text-decoration: none !important;
	color: #111 !important;
	background: #fafafb;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.header-live-search-hit:hover,
.header-live-search-hit:focus {
	background: #f0f4ff;
	border-color: #c5d4f5;
}

.header-live-search-hit__title {
	font-weight: 700;
	font-size: 0.95rem;
	margin: 0 0 0.25rem;
	line-height: 1.35;
}

.header-live-search-hit__excerpt {
	margin: 0;
	font-size: 0.82rem;
	line-height: 1.45;
	color: #555;
}

.header-live-search-msg {
	font-size: 0.9rem;
	color: #666;
	margin: 0;
}

@media (max-width: 767px) {
	.header-live-search-panel .header-live-search-close {
		display: none !important;
	}
}
