.ps-search-wrap {
	position: relative;
	width: 100%;
	max-width: 620px;
}

.ps-search-form {
	display: flex;
	align-items: stretch;
	width: 100%;
}

.ps-search-input {
	flex: 1;
	height: 52px;
	padding: 0 16px;
	border: 1px solid #d9d9d9;
	border-right: 0;
	border-radius: 10px 0 0 10px;
	font-size: 15px;
	background: #ffffff;
	color: #222222;
	outline: none;
}

.ps-search-input:focus {
	border-color: #f4b400;
}

.ps-search-button {
	height: 52px;
	padding: 0 22px;
	border: 1px solid #f4b400;
	background: #f4b400;
	color: #111111;
	font-size: 15px;
	font-weight: 600;
	border-radius: 0 10px 10px 0;
	cursor: pointer;
	transition: all 0.25s ease;
	white-space: nowrap;
}

.ps-search-button:hover {
	opacity: 0.92;
}

.ps-live-search-results {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	width: 100%;
	z-index: 999;
	display: none;
}

.ps-live-results-box {
	background: #ffffff;
	border: 1px solid #e8e8e8;
	border-radius: 12px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.ps-live-results-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ps-live-results-item {
	border-bottom: 1px solid #f1f1f1;
}

.ps-live-results-item:last-child {
	border-bottom: 0;
}

.ps-live-results-item a {
	display: block;
	padding: 14px 16px;
	text-decoration: none;
	color: #222222;
}

.ps-live-results-item a:hover {
	background: #fafafa;
}

.ps-live-result-type {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: #b28704;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 4px;
}

.ps-live-result-title {
	display: block;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
}

.ps-live-results-footer {
	padding: 12px 16px;
	background: #fcfcfc;
	border-top: 1px solid #f1f1f1;
}

.ps-live-results-footer a {
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	color: #111111;
}

.ps-no-results {
	padding: 16px;
}

.ps-no-results p {
	margin: 0;
	font-size: 14px;
	color: #666666;
}

/* Search results page */
.ps-search-page {
	max-width: 1140px;
	margin: 0 auto;
	padding: 50px 20px;
}

.ps-search-page-header {
	margin-bottom: 32px;
}

.ps-search-page-title {
	font-size: 34px;
	line-height: 1.2;
	margin: 0 0 10px;
	color: #111111;
}

.ps-search-page-desc {
	font-size: 16px;
	color: #666666;
	margin: 0;
}

.ps-search-results-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.ps-search-card {
	border: 1px solid #ececec;
	border-radius: 14px;
	padding: 24px;
	background: #ffffff;
	transition: all 0.25s ease;
}

.ps-search-card:hover {
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.ps-search-card-type {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	color: #b28704;
	margin-bottom: 8px;
}

.ps-search-card-title {
	font-size: 24px;
	line-height: 1.3;
	margin: 0 0 10px;
}

.ps-search-card-title a {
	color: #111111;
	text-decoration: none;
}

.ps-search-card-title a:hover {
	text-decoration: underline;
}

.ps-search-card-excerpt {
	font-size: 15px;
	line-height: 1.7;
	color: #555555;
	margin-bottom: 14px;
}

.ps-search-card-link a {
	font-size: 14px;
	font-weight: 600;
	color: #111111;
	text-decoration: none;
}

.ps-search-card-link a:hover {
	text-decoration: underline;
}

.ps-no-search-results {
	padding: 24px;
	border: 1px solid #ececec;
	border-radius: 14px;
	background: #ffffff;
}

.ps-no-search-results p {
	margin: 0;
	font-size: 15px;
	color: #555555;
}

@media (max-width: 767px) {
	.ps-search-form {
		flex-direction: column;
	}

	.ps-search-input {
		border-right: 1px solid #d9d9d9;
		border-radius: 10px;
		margin-bottom: 10px;
	}

	.ps-search-button {
		border-radius: 10px;
		width: 100%;
	}
}