/* Club Blog Posts Section Styles */
.club-blog-posts-section {
	padding: 80px 0;
	background-color: #ffffff;
	position: relative;
	z-index: 5;
}

.blog-posts-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.blog-posts-header {
	text-align: center;
	margin-bottom: 60px;
}

.blog-posts-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #333;
	margin: 0 0 15px 0;
	font-family: 'Georgia', serif;
}

.blog-posts-subtitle {
	font-size: 1.2rem;
	color: #666;
	margin: 0;
}

.blog-posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	margin-bottom: 50px;
}

.blog-post-card {
	background: #ffffff;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
}

.blog-post-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-post-image {
	width: 100%;
	height: 250px;
	overflow: hidden;
	position: relative;
}

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

.blog-post-card:hover .blog-post-image img {
	transform: scale(1.05);
}

.blog-post-content {
	padding: 25px;
}

.blog-post-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
	font-size: 0.9rem;
}

.blog-post-date {
	color: #666;
	font-weight: 500;
}

.blog-post-category {
	background: #d2691e;
	color: #ffffff;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.blog-post-title {
	margin: 0 0 15px 0;
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 1.4;
}

.blog-post-title a {
	color: #333;
	text-decoration: none;
	transition: color 0.3s ease;
}

.blog-post-title a:hover {
	color: #d2691e;
}

.blog-post-excerpt {
	color: #666;
	line-height: 1.6;
	margin: 0 0 20px 0;
	font-size: 0.95rem;
}

.blog-post-read-more {
	display: inline-block;
	color: #d2691e;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	position: relative;
}

.blog-post-read-more::after {
	content: '→';
	margin-left: 8px;
	transition: transform 0.3s ease;
}

.blog-post-read-more:hover::after {
	transform: translateX(5px);
}

.blog-posts-footer {
	text-align: center;
}

.blog-posts-view-all {
	display: inline-block;
	background: #d2691e;
	color: #ffffff;
	padding: 15px 40px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 30px;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(210, 105, 30, 0.3);
}

.blog-posts-view-all:hover {
	background: #b8571a;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(210, 105, 30, 0.4);
	color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
	.club-blog-posts-section {
		padding: 60px 0;
	}
	
	.blog-posts-container {
		padding: 0 15px;
	}
	
	.blog-posts-title {
		font-size: 2rem;
	}
	
	.blog-posts-subtitle {
		font-size: 1rem;
	}
	
	.blog-posts-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-bottom: 40px;
	}
	
	.blog-post-image {
		height: 200px;
	}
	
	.blog-post-content {
		padding: 20px;
	}
	
	.blog-posts-view-all {
		padding: 12px 30px;
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	.blog-posts-title {
		font-size: 1.8rem;
	}
	
	.blog-post-title {
		font-size: 1.2rem;
	}
	
	.blog-post-content {
		padding: 15px;
	}
}
