/* Search Results Grid Layout */
.search-results-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	margin-top: 2rem;
}

.search-result-card {
	flex: 1 1 calc(50% - 1rem);
	max-width: calc(50% - 1rem);
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.05);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

@media (max-width: 768px) {
	.search-result-card {
		flex: 1 1 100%;
		max-width: 100%;
	}
}

.search-result-card .card-content {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.search-result-card .thumbnail {
	margin-bottom: 1rem;
}

.search-result-card .thumbnail img {
	width: 100%;
	height: auto;
	border-radius: 4px;
}

.search-result-card .entry-title {
	font-family: 'Headline One', sans-serif;
	font-size: 1.5rem;
	color: #1997b2;
	margin-bottom: 0.5rem;
}

.search-result-card .entry-title a {
	text-decoration: none;
	color: inherit;
}

.search-result-card .entry-title a:hover {
	color: #ea5284;
	text-decoration: underline;
}

.search-result-card .entry-summary {
	flex-grow: 1;
	font-size: 1rem;
	color: #6c787e;
}

.search-result-card .entry-footer {
	margin-top: 1rem;
}

.search-result-card .read-more-link {
	color: #1997b2;
	text-decoration: none;
	font-weight: bold;
}

.search-result-card .read-more-link:hover {
	text-decoration: underline;
	color: #ea5284;
}

.epkb-category-section__head_title__text {
font-family: "Headline One", sans-serif !important}