.rs-blog {
	padding: 80px 0;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	line-height: 1.6;
	color: #333;
}
.rs-blog .container {
    position: relative;
    padding: 50px 100px;
}
.blog-wrap {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.blog-wrap:hover {
	transform: translateY(-8px);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}
.image-part {
	position: relative;
	overflow: hidden;
	background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
}
.blog-wrap:hover .image-part::before {
	opacity: 1;
}
.image-part img {
    width: 100%;          
    height: 250px;       
    object-fit: cover;   
    border-radius: 8px;    
    display: block;        
}
.image-part a {
	display: block;
	height: 100%;
	position: relative;
	z-index: 3;
}
.content-part {
	padding: 32px;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.title {
	margin: 0 0 20px 0;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.3;
	flex: 1;
}
.title a {
	text-decoration: none;
	color: #1a202c;
	transition: color 0.3s ease;
	background: linear-gradient(135deg, #667eea, #764ba2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.title a:hover {
	opacity: 0.8;
}
.blog-meta {
	list-style: none;
	padding: 0;
	margin: 0 0 20px 0;
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}
.blog-meta li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.875rem;
	color: #64748b;
	font-weight: 500;
}
.blog-meta i {
	width: 18px;
	height: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: white;
	border-radius: 50%;
	font-size: 0.75rem;
}
.desc {
	margin: 0 0 24px 0;
	color: #64748b;
	font-size: 1rem;
	line-height: 1.6;
}
.btn-part {
	margin-top: auto;
}
.readon-arrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: white;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 14px 28px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}
.readon-arrow::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}
.readon-arrow:hover::before {
	left: 100%;
}	
.readon-arrow::after {
	content: '→';
	margin-left: 4px;
	transition: transform 0.3s ease;
}
.readon-arrow:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}
.readon-arrow:hover::after {
	transform: translateX(4px);
}
/* Responsive Design */
@media (max-width: 768px) {
	.rs-blog {
		padding: 60px 0;
	}
	.content-part {
		padding: 24px;
	}
	.title {
		font-size: 1.25rem;
	}
	.blog-meta {
		gap: 16px;
	}
	.blog-meta li {
		font-size: 0.8rem;
	}
}
@media (max-width: 480px) {
	.rs-blog {
		padding: 40px 0;
	}
	.image-part {
		height: 200px;
	}
	.content-part {
		padding: 20px;
	}
	.title {
		font-size: 1.1rem;
		margin-bottom: 16px;
	}	
	.blog-meta {
		flex-direction: column;
		gap: 8px;
	}
	.readon-arrow {
		padding: 12px 24px;
		font-size: 0.85rem;
	}
}
/* Animation for loading */
.blog-wrap {
	animation: fadeInUp 0.6s ease-out forwards;
}
.blog-wrap:nth-child(2) {
	animation-delay: 0.1s;
}
.blog-wrap:nth-child(3) {
	animation-delay: 0.2s;
}
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}