/* Header search toggle + dropdown panel */
.exhale-header-search {
	display: flex;
	flex-shrink: 0;
}

.exhale-header-search__link {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.25rem;
	height: 3.25rem;
	border-radius: 9999px;
	border: 2px solid rgba(212, 178, 164, 0.6);
	background: #fffdfb;
	color: #3d3835;
	text-decoration: none;
	box-shadow: 0 2px 8px rgba(61, 56, 53, 0.06);
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
	cursor: pointer;
	padding: 0;
	font: inherit;
}

.exhale-header-search__link:hover,
.exhale-header-search__link[aria-expanded='true'] {
	border-color: rgba(110, 125, 109, 0.45);
	background: #f5f1ea;
	color: #6e7d6d;
}

.exhale-header-search__icon {
	font-size: 1.25rem;
	line-height: 1;
}

.exhale-header-search-panel {
	position: fixed;
	top: 6.5rem;
	right: max(1rem, calc((100vw - min(1760px, 100vw)) / 2 + 1rem));
	z-index: 60;
	width: min(24rem, calc(100vw - 2rem));
	padding: 0.85rem;
	border-radius: 1rem;
	border: 1px solid rgba(212, 178, 164, 0.35);
	background: #f8f5f1;
	box-shadow: 0 12px 32px rgba(61, 56, 53, 0.12);
	pointer-events: auto;
}

.exhale-header-search-panel.hidden {
	display: none;
}

.exhale-header-search-form {
	position: relative;
}

.exhale-header-search-form__input {
	width: 100%;
	border: 1px solid rgba(212, 178, 164, 0.55);
	border-radius: 0.65rem;
	padding: 0.75rem 2.75rem 0.75rem 0.9rem;
	background: #fffdfb;
	color: #3d3835;
	font-family: Montserrat, sans-serif;
	font-size: 0.9rem;
	line-height: 1.4;
}

.exhale-header-search-form__input:focus {
	outline: none;
	border-color: rgba(110, 125, 109, 0.55);
	box-shadow: 0 0 0 3px rgba(110, 125, 109, 0.15);
}

.exhale-header-search-form__submit {
	position: absolute;
	top: 50%;
	right: 0.65rem;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border: 0;
	border-radius: 9999px;
	background: transparent;
	color: #6e7d6d;
	cursor: pointer;
	padding: 0;
}

.exhale-header-search-form__submit:hover {
	background: rgba(110, 125, 109, 0.1);
}

@media (max-width: 991px) {
	.exhale-header-search-panel {
		top: 5.75rem;
		right: 1rem;
		left: 1rem;
		width: auto;
	}
}

/* Search results page */
body.exhale-editorial .exhale-search-results__shell.exhale-site-container {
	width: min(1632px, 100%);
	max-width: 1632px;
}

body.exhale-editorial .site-main.exhale-search-results {
	background: #f8f5f1;
	color: #3d3835;
	padding-top: 7rem;
	padding-bottom: 4rem;
}

.exhale-search-results__header {
	margin-bottom: 2.5rem;
}

.exhale-search-results__label {
	margin: 0 0 0.35rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(61, 56, 53, 0.55);
}

.exhale-search-results__title {
	margin: 0;
	font-family: var(--font-heading-family);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 700;
	line-height: 1.15;
	color: #3d3835;
}

.exhale-search-results__count {
	margin: 0.75rem 0 0;
	font-size: 0.95rem;
	color: rgba(61, 56, 53, 0.65);
}

.exhale-search-results__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.exhale-search-results__item {
	padding: 1.35rem 0;
	border-top: 1px solid rgba(212, 178, 164, 0.35);
}

.exhale-search-results__item:last-child {
	border-bottom: 1px solid rgba(212, 178, 164, 0.35);
}

.exhale-search-results__type {
	display: inline-block;
	margin-bottom: 0.45rem;
	padding: 0.2rem 0.55rem;
	border-radius: 9999px;
	background: rgba(110, 125, 109, 0.12);
	color: #6e7d6d;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.exhale-search-results__item-title {
	margin: 0 0 0.5rem;
	font-family: var(--font-heading-family);
	font-size: clamp(1.15rem, 2vw, 1.45rem);
	font-weight: 600;
	line-height: 1.25;
}

.exhale-search-results__item-title a {
	color: #3d3835;
	text-decoration: none;
}

.exhale-search-results__item-title a:hover {
	color: #6e7d6d;
}

.exhale-search-results__excerpt {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.6;
	color: rgba(61, 56, 53, 0.75);
}

.exhale-search-results__empty-wrap {
	padding: 2rem 0 1rem;
}

.exhale-search-results__empty {
	font-size: 1.0625rem;
	color: rgba(61, 56, 53, 0.75);
}
