.bento-grid-container-be944a8d {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-flow: dense;
	gap: 20px;
}

.bento-card-be944a8d {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	background-color: #222;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-decoration: none !important;
}

.bento-card-be944a8d:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.bento-size-1x1 { grid-column: span 1; grid-row: span 1; min-height: 250px; }
.bento-size-2x1 { grid-column: span 2; grid-row: span 1; min-height: 250px; }
.bento-size-1x2 { grid-column: span 1; grid-row: span 2; min-height: 520px; }
.bento-size-2x2 { grid-column: span 2; grid-row: span 2; min-height: 520px; }

.bento-card-bg-be944a8d {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.6s ease;
	z-index: 1;
}

.bento-card-be944a8d:hover .bento-card-bg-be944a8d {
	transform: scale(1.08);
}

.bento-card-overlay-be944a8d {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0) 100%);
	transition: opacity 0.3s ease;
	z-index: 2;
}

.bento-card-be944a8d:hover .bento-card-overlay-be944a8d {
	opacity: 0.85;
}

.bento-card-content-be944a8d {
	position: relative;
	z-index: 3;
	padding: 24px;
	color: #fff;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.bento-card-header-be944a8d {
	margin-bottom: auto;
	display: flex;
	justify-content: flex-start;
}

.bento-card-cat-be944a8d {
	background: #ff4757;
	color: #fff;
	padding: 4px 10px;
	border-radius: 4px;
	font-size: 11px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.bento-card-footer-be944a8d {
	display: flex;
	flex-direction: column;
}

.bento-card-title-be944a8d { 
	margin: 0 0 10px 0; 
	color: #fff; 
	font-size: 20px;
	line-height: 1.3;
}

.bento-size-2x2 .bento-card-title-be944a8d {
	font-size: 28px;
}

.bento-card-meta-be944a8d { 
	font-size: 12px; 
	color: #e0e0e0; 
	margin-bottom: 12px; 
	font-weight: 400;
}

.bento-card-excerpt-be944a8d { 
	font-size: 14px; 
	color: #ccc;
	line-height: 1.5;
	display: -webkit-box; 
	-webkit-line-clamp: 2; 
	-webkit-box-orient: vertical; 
	overflow: hidden; 
}

/* Responsive */
@media (max-width: 1024px) {
	.bento-grid-container-be944a8d { 
		grid-template-columns: repeat(2, 1fr); 
	}
	.bento-size-2x1 { grid-column: span 2; }
	.bento-size-1x2 { grid-column: span 1; min-height: 350px; }
	.bento-size-2x2 { grid-column: span 2; grid-row: span 1; min-height: 350px; }
	.bento-size-1x1 { min-height: 250px; }
}

@media (max-width: 767px) {
	.bento-grid-container-be944a8d { 
		grid-template-columns: 1fr; 
	}
	.bento-size-1x1, .bento-size-2x1, .bento-size-1x2, .bento-size-2x2 {
		grid-column: span 1;
		grid-row: span 1;
		min-height: 300px;
	}
}
