.search-page {
	background: #fff;
}

.search-page__container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 48px 30px 56px;
}

.search-page__header {
	margin-bottom: 28px;
}

.search-page__title {
	margin: 0 0 10px;
	font-size: clamp(2.1rem, 4vw, 3.2rem);
	line-height: 1.05;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--hs-dark, #2B2E31);
	font-family: 'Poppins', sans-serif;
}

.search-page__query {
	margin-bottom: 10px;
	font-size: 1rem;
	line-height: 1.5;
	color: rgba(43, 46, 49, 0.84);
}

.search-page__query span {
	font-weight: 600;
	color: #2B2E31;
}

.search-page__meta {
	font-size: 0.98rem;
	color: rgba(43, 46, 49, 0.72);
	font-weight: 500;
}

/* Grid */
.search-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.search-post-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid rgba(43, 46, 49, 0.10);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.search-post-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
	border-color: rgba(110, 193, 228, 0.35);
}

.search-post-card__image-link {
	display: block;
	text-decoration: none;
}

.search-post-card__image {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #eef3f5;
}

.search-post-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.search-post-card:hover .search-post-card__image img {
	transform: scale(1.03);
}

.search-post-card__image--placeholder {
	background: linear-gradient(135deg, #eef3f5 0%, #dde9ef 100%);
}

.search-post-card__content {
	padding: 22px 22px 24px;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.search-post-card__category {
	align-self: flex-start;
	margin-bottom: 14px;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(110, 193, 228, 0.14);
	color: #2B2E31;
	text-decoration: none;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.search-post-card__title {
	margin: 0 0 10px;
	font-size: 1.35rem;
	line-height: 1.2;
	font-weight: 600;
	font-family: 'Poppins', sans-serif;
}

.search-post-card__title a {
	color: #2B2E31;
	text-decoration: none;
}

.search-post-card__title a:hover {
	color: #6EC1E4;
}

.search-post-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	font-size: 0.92rem;
	color: rgba(43, 46, 49, 0.68);
}

.search-post-card__dot {
	opacity: 0.6;
}

.search-post-card__excerpt {
	font-size: 0.98rem;
	line-height: 1.65;
	color: rgba(43, 46, 49, 0.82);
	margin-bottom: 18px;
}

.search-post-card__link {
	margin-top: auto;
	align-self: flex-start;
	color: #2B2E31;
	text-decoration: none;
	font-weight: 600;
	border-bottom: 2px solid #6EC1E4;
	padding-bottom: 2px;
	transition: color 0.25s ease;
}

.search-post-card__link:hover {
	color: #6EC1E4;
}

.search-page__pagination {
	margin-top: 38px;
}

/* Empty state */
.search-empty {
	max-width: 720px;
	padding: 28px 0 8px;
}

.search-empty__title {
	margin: 0 0 12px;
	font-size: 1.5rem;
	line-height: 1.2;
	font-weight: 600;
	font-family: 'Poppins', sans-serif;
	color: #2B2E31;
}

.search-empty__text {
	margin: 0 0 12px;
	font-size: 1rem;
	line-height: 1.7;
	color: rgba(43, 46, 49, 0.82);
}

.search-empty a {
	color: #2B2E31;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 2px solid #6EC1E4;
}

/* Responsive */
@media (max-width: 1100px) {
	.search-post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.search-page__container {
		padding: 32px 20px 42px;
	}

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

	.search-post-card__content {
		padding: 18px 18px 20px;
	}

	.search-post-card__title {
		font-size: 1.2rem;
	}
}