.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%);
	padding: 20px;
}
.blog-1 .blog-inner .single-blog-item .content ul{
	gap: 5px;
}
.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 {
		width: 100%;
		max-width: none;
		padding: 0 15px;
	}

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

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

.widget_categories ul li a {
	font-size: 1rem;
	padding: 12px 20px;
	margin-bottom: 5px;
	font-weight: 500;
}

.widget_categories ul li a span {
	line-height: 41px;
}

.news-area .main-sidebar .single-sidebar-widget ul>li a {
	font-size: 1rem;
	font-weight: 500;
}

.blog-1 .blog-inner .single-blog-item .content ul li.fa-circle {
	font-weight: 500;
	background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
}

.post-content a {
	color: var(--text);
}

.post-content a:hover {
	color: var(--theme);
}

.blog-1 .blog-inner .single-blog-item .content ul li {
	font-weight: 500;
	color: rgb(155 155 155);
	background: none;

	background-clip: text;
	-webkit-background-clip: text;

}

.blog-1 .blog-inner .single-blog-item .content ul li:nth-child(2) {
	background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
	color: transparent;
	background-clip: text;
	-webkit-background-clip: text;
}

.blog-1 .blog-inner .single-blog-item .content ul li:nth-child(3) {
	color: var(--text);
}

.blog-1 .blog-inner {
	padding-bottom: 20px;
}
.blog-inner.row>*{
	padding: 0;
}
/* 15th */
/* .timeline-container {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	padding: 2rem 0;
}

.timeline-container::after {
	content: '';
	position: absolute;
	width: 4px;
	background-color: #3498db;
	top: 0;
	bottom: 0;
	left: 50%;
	margin-left: -2px;
}

.timeline-item {
	padding: 10px 40px;
	position: relative;
	width: 50%;
	box-sizing: border-box;
	margin-bottom: 30px;
}

.timeline-item:nth-child(odd) {
	left: 0;
}

.timeline-item:nth-child(even) {
	left: 50%;
}

.timeline-content {
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	padding: 20px;
	position: relative;
	transition: all 0.3s ease;
	min-height: 120px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.timeline-content:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
	transform: translateY(-5px);
}

.timeline-date {
	position: absolute;
	top: 20px;
	color: #e74c3c;
	font-weight: bold;
	font-size: 16px;
}

.timeline-item:nth-child(odd) .timeline-date {
	right: -130px;
}

.timeline-item:nth-child(even) .timeline-date {
	left: -130px;
}

.timeline-dot {
	position: absolute;
	width: 24px;
	height: 24px;
	background-color: white;
	border: 4px solid #3498db;
	border-radius: 50%;
	z-index: 1;
	top: 30px;
}

.timeline-item:nth-child(odd) .timeline-dot {
	right: -12px;
}

.timeline-item:nth-child(even) .timeline-dot {
	left: -12px;
}

.timeline-title {
	margin-bottom: 10px;
	font-weight: bold;
	font-size: 18px;
}

.timeline-image {
	max-width: 100%;
	height: auto;
	border-radius: 4px;
	margin: 10px 0;
	display: block;
}

@media screen and (max-width: 768px) {
	.timeline-container::after {
		left: 31px;
	}
	
	.timeline-item {
		width: 100%;
		padding-left: 70px;
		padding-right: 25px;
	}
	
	.timeline-item:nth-child(odd),
	.timeline-item:nth-child(even) {
		left: 0;
	}
	
	.timeline-item:nth-child(odd) .timeline-date,
	.timeline-item:nth-child(even) .timeline-date {
		position: relative;
		right: auto;
		left: auto;
		top: 0;
		margin-bottom: 10px;
	}
	
	.timeline-item:nth-child(odd) .timeline-dot,
	.timeline-item:nth-child(even) .timeline-dot {
		left: 19px;
	}
} */