.single-blog-item {
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
	margin-bottom: 30px;
}

.single-blog-item .content {
	padding: 25px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #fff;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
	border-radius: 8px;
}

.single-blog-item .content h3 {
	height: 60px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	margin-bottom: 15px;
}

.single-blog-item .content p {
	flex-grow: 1;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 15px;
	min-height: 80px;
}

.single-blog-item .content .theme-btn {
	margin-top: auto;
	align-self: flex-start;
}

.single-blog-item .content ul {
	display: flex;
	align-items: center;
	padding-left: 0;
	margin-bottom: 15px;
	list-style: none;
}

.single-blog-item .content ul li {
	display: flex;
	align-items: center;
	margin-right: 10px;
}

.single-blog-item .content ul li i {
	margin-right: 5px;
	font-size: 8px;
}

.blog-1 .blog-inner .single-blog-item {
	background-color: #ffffff00;
	padding: 10px;
	margin-top: 20px;
}

.blog-1 .blog-inner .single-blog-item .content {
	box-shadow: 0 0 15px rgb(158 173 224 / 42%);
}

.search-container {
	width: 100%;
	max-width: 400px;
	margin-bottom: 20px;
	margin-top: 30px;
}

.search-form {
	width: 100%;
}

.search-input-wrapper {
	display: flex;
	position: relative;
	box-shadow: 0 0 15px rgb(158 173 224 / 42%);
	border-radius: 50px;
	overflow: hidden;
}

.search-input {
	width: 100%;
	padding: 15px 20px;
	border: 1px solid #e1e1e1;
	border-radius: 50px;
	font-size: 16px;
	outline: none;
	transition: all 0.3s ease;
}

.search-input:focus {
	border-color: #2db5d4;
	box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.search-button {
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
	color: white;
	border: none;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
}

.search-button:hover {
	background-color: #0056b3;
}

.search-button i {
	font-size: 18px;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

@media (max-width: 768px) {
	.search-container {
		max-width: 100%;
		padding: 0 15px;
	}

	.search-input {
		padding: 12px 16px;
		font-size: 14px;
	}

	.search-button {
		width: 38px;
		height: 38px;
	}
}
