.fbl-30fc4532-wrapper {
	font-family: var(--e-global-typography-primary-font-family, inherit);
	color: #334155;
	width: 100%;
}

/* Header */
.fbl-30fc4532-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
	padding-bottom: 15px;
	border-bottom: 2px solid #e2e8f0;
}

.fbl-30fc4532-header-title {
	font-size: 32px;
	font-weight: 800;
	color: #0f172a;
	margin: 0;
	text-transform: capitalize;
}

.fbl-30fc4532-header-count {
	font-size: 16px;
	font-weight: 600;
	color: #64748b;
}

/* Empty State */
.fbl-30fc4532-empty {
	background: #f8fafc;
	border: 1px dashed #cbd5e1;
	border-radius: 12px;
	padding: 60px 20px;
	text-align: center;
}
.fbl-30fc4532-empty h3 {
	margin-top: 0;
	color: #0f172a;
}

/* Featured Post */
.fbl-30fc4532-featured {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0,0,0,0.05);
	margin-bottom: 40px;
	transition: transform 0.3s ease;
	width: 100%;
}
@media (min-width: 768px) {
	.fbl-30fc4532-featured {
		flex-direction: row;
		align-items: center;
	}
}

.fbl-30fc4532-featured-img {
	width: 100%;
	height: 300px;
	background-size: cover;
	background-position: center;
}
@media (min-width: 768px) {
	.fbl-30fc4532-featured-img {
		width: 55%;
		height: 400px;
	}
}

.fbl-30fc4532-featured-content {
	padding: 40px;
	width: 100%;
}
@media (min-width: 768px) {
	.fbl-30fc4532-featured-content {
		width: 45%;
	}
}

.fbl-30fc4532-meta {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #64748b;
	margin-bottom: 12px;
	font-weight: 600;
}

.fbl-30fc4532-featured-title {
	font-size: 28px;
	line-height: 1.3;
	margin: 0 0 16px 0;
	color: #0f172a;
	font-weight: 800;
}

.fbl-30fc4532-featured-excerpt {
	font-size: 16px;
	line-height: 1.6;
	color: #475569;
	margin-bottom: 30px;
}

.fbl-30fc4532-featured-actions {
	display: flex;
	gap: 16px;
	align-items: center;
	flex-wrap: wrap;
}

/* Links & Buttons */
.fbl-30fc4532-read-more {
	color: #0f172a;
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
	transition: color 0.2s ease;
}
.fbl-30fc4532-read-more:hover {
	color: #3b82f6;
}

.fbl-30fc4532-btn {
	background-color: #2563eb;
	color: #fff;
	padding: 14px 28px;
	border-radius: 50px;
	font-weight: 700;
	text-decoration: none;
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
	transition: all 0.3s ease;
	display: inline-block;
	font-size: 15px;
}
.fbl-30fc4532-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
	color: #fff;
}

/* Grid */
.fbl-30fc4532-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	width: 100%;
}
@media (min-width: 600px) {
	.fbl-30fc4532-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 1024px) {
	.fbl-30fc4532-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.fbl-30fc4532-grid-item {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0,0,0,0.04);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	width: 100%;
}
.fbl-30fc4532-grid-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.fbl-30fc4532-grid-link-wrap {
	text-decoration: none;
	color: inherit;
	display: block;
}

.fbl-30fc4532-grid-img {
	height: 200px;
	background-size: cover;
	background-position: center;
	background-color: #e2e8f0;
	width: 100%;
}

.fbl-30fc4532-grid-content {
	padding: 24px;
}

.fbl-30fc4532-grid-title {
	font-size: 18px;
	line-height: 1.4;
	margin: 0;
	color: #0f172a;
	font-weight: 700;
}

/* Load More Button */
.fbl-30fc4532-load-more-wrap {
	text-align: center;
	margin-top: 50px;
}
.fbl-30fc4532-load-more.loading {
	opacity: 0.7;
	pointer-events: none;
}