/**
 * Homepage Blog Section - Dark Theme with Lime Green Accents
 * Static 3-column grid layout
 *
 * @package kadence
 */

:root {
	--blog-accent: #a3e635;
	--blog-accent-hover: #84cc16;
	--blog-dark: #0a0a0a;
	--blog-card: #141414;
	--blog-border: #1f1f1f;
	--blog-text: #ffffff;
	--blog-text-muted: #9ca3af;
	--blog-text-secondary: #6b7280;
}

/* Container */
.home-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 48px;
}

/* Main Section */
.home-blog-section {
	padding: 100px 0;
	background: var(--blog-dark);
}

/* Section Title */
.home-section-title {
	font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 800;
	color: var(--blog-text);
	margin: 0;
	line-height: 1.15;
	letter-spacing: -0.01em;
}

.home-accent {
	color: var(--blog-accent);
}

/* Header with title and view blog link */
.home-blog-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 50px;
}

.home-blog-header .home-section-title {
	margin-bottom: 0;
}

/* View Blog Link */
.home-blog-view-all {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--blog-text-muted);
	font-weight: 500;
	font-size: 0.85rem;
	text-decoration: none;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: all 0.3s ease;
}

.home-blog-view-all svg {
	width: 14px;
	height: 14px;
	transition: transform 0.3s ease;
}

.home-blog-view-all:hover {
	color: var(--blog-accent);
	gap: 12px;
}

.home-blog-view-all:hover svg {
	transform: translateX(3px);
}

/* Blog Grid - 3 columns */
.home-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

/* Blog Cards */
.home-blog-card {
	background: transparent;
	overflow: hidden;
	transition: all 0.3s ease;
}

.home-blog-card:hover {
	transform: translateY(-4px);
}

/* Thumbnail - Large featured image */
.home-blog-thumbnail {
	display: block;
	position: relative;
	overflow: hidden;
	aspect-ratio: 16/10;
	margin-bottom: 20px;
}

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

.home-blog-card:hover .home-blog-thumbnail img {
	transform: scale(1.03);
}

/* Content */
.home-blog-content {
	padding: 0;
}

/* Meta - Date and Category */
.home-blog-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 0.75rem;
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.home-blog-date {
	color: var(--blog-text-muted);
}

.home-blog-category {
	color: var(--blog-accent);
	font-weight: 600;
}

/* Title */
.home-blog-title {
	font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0;
	letter-spacing: -0.01em;
}

.home-blog-title a {
	color: var(--blog-text);
	text-decoration: none;
	transition: all 0.2s ease;
}

.home-blog-title a:hover {
	color: var(--blog-accent);
}

/* Responsive */
@media (max-width: 1024px) {
	.home-blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.home-blog-section {
		padding: 60px 0;
	}

	.home-blog-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.home-blog-grid {
		grid-template-columns: 1fr;
	}

	.home-blog-thumbnail {
		aspect-ratio: 16/9;
	}

	.home-blog-title {
		font-size: 1.1rem;
	}
}