/*************************************
 ** - 15 - Blog Section CSS (New Style)
 *************************************/

.blog-area {
	background: #ffffff;
	padding: 80px 0;
}

.blog-area .section-title {
	margin-bottom: 50px;
}

.blog-area .single-blog {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.blog-area .single-blog:hover {
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	transform: translateY(-5px);
	border-color: #e50914;
}

.blog-area .post-img {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16/10;
}

.blog-area .post-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.blog-area .single-blog:hover .post-img img {
	transform: scale(1.05);
}

.blog-area .single-blog .blog-content {
	padding: 25px;
	text-align: left;
}

.blog-content .blog-meta {
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
	font-size: 13px;
	color: #666;
}

.blog-content .blog-meta i {
	color: #e50914;
	margin-right: 5px;
}

.blog-content .blog-date,
.blog-content .blog-category {
	display: flex;
	align-items: center;
}

.blog-area .single-blog .blog-content h3 {
	margin-bottom: 12px;
	height: 50px;
}

.blog-area .single-blog .blog-content h3 a {
	color: #1a1a2e;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: color 0.3s ease;
}

.blog-area .single-blog .blog-content h3 a:hover {
	color: #e50914;
}

.blog-area .single-blog .blog-body-text {
	margin-bottom: 20px;
}

.blog-area .single-blog .blog-body-text p {
	color: #666;
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}

.blog-bottom-text-link {
	margin-top: auto;
}

.single-blog .blog-content .blog-bottom-text-link a {
    color: #e50914;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.single-blog .blog-content .blog-bottom-text-link a i {
	font-size: 12px;
	transition: transform 0.3s ease;
}

.single-blog .blog-content .blog-bottom-text-link a:hover {
	color: #c40812;
}

.single-blog .blog-content .blog-bottom-text-link a:hover i {
	transform: translateX(3px);
}
