/* ═══════════════════════════════════════
   Kloecup Feature Blocks — Widget CSS
   Author: Leonelkrea
   Version: 1.0.0
   ═══════════════════════════════════════ */

.lkrea-fb-wrapper {
	display: flex;
	align-items: center;
	gap: 60px;
	width: 100%;
}

.lkrea-fb-wrapper.layout-right {
	flex-direction: row-reverse;
}

.lkrea-fb-content {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.lkrea-fb-image-side {
	flex: 1;
	border-radius: 32px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	line-height: 0;
}

.lkrea-fb-image-side img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}

/* ── Header ── */
.lkrea-fb-icon {
	width: 64px !important;
	height: 64px !important;
	background-color: #fff5f2; /* fc-orange-light */
	border-radius: 16px;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	margin-bottom: 24px;
	flex-shrink: 0 !important;
	overflow: hidden !important;
	box-sizing: border-box !important;
	transition: all 0.3s ease;
}

.lkrea-fb-icon i, 
.lkrea-fb-icon svg { 
	font-size: 28px !important;
	width: 1em !important;
	height: 1em !important;
	line-height: 1 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	margin: 0 !important;
}

.lkrea-fb-icon svg {
	width: 28px !important;
	height: 28px !important;
}

.lkrea-fb-title {
	font-size: 2.25rem;
	font-weight: 900;
	color: #232550; /* fc-slate-900 */
	margin: 0 0 16px 0;
	line-height: 1.2;
}

.lkrea-fb-description {
	font-size: 1.1rem;
	color: #4a5769; /* fc-slate-600 */
	line-height: 1.6;
	margin-bottom: 32px;
}

/* ── Content Type: Bullets ── */
.lkrea-fb-bullets {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.lkrea-fb-bullet-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	background: #f4f6f9; /* fc-slate-100 */
	padding: 16px 20px;
	border-radius: 16px;
	transition: background 0.3s;
}

.lkrea-fb-bullet-item:hover {
	background: #e5e9f0; /* fc-slate-200 */
}

.lkrea-fb-bullet-check {
	color: #F96431;
	flex-shrink: 0;
	margin-top: 2px;
}

.lkrea-fb-bullet-text {
	font-weight: 600;
	color: #364255; /* fc-slate-700 */
	font-size: 1rem;
}

/* ── Content Type: Cards ── */
.lkrea-fb-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.lkrea-fb-card-item {
	background: #fff;
	border: 1px solid #e5e9f0;
	border-radius: 20px;
	padding: 24px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lkrea-fb-card-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
	border-color: #F96431;
}

.lkrea-fb-card-tag {
	font-size: 0.8rem;
	font-weight: 900;
	color: #F96431;
	text-transform: uppercase;
	margin-bottom: 8px;
	display: block;
}

.lkrea-fb-card-title {
	font-size: 1.25rem;
	font-weight: 900;
	color: #232550;
	margin: 0 0 12px 0;
}

.lkrea-fb-card-desc {
	font-size: 0.95rem;
	color: #68768b;
	line-height: 1.5;
	margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
	.lkrea-fb-wrapper {
		gap: 40px;
	}
	.lkrea-fb-title {
		font-size: 1.75rem;
	}
}

@media (max-width: 768px) {
	.lkrea-fb-wrapper {
		flex-direction: column !important;
		gap: 32px;
	}
	.lkrea-fb-image-side {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.lkrea-fb-cards {
		grid-template-columns: 1fr;
	}
	.lkrea-fb-title {
		font-size: 1.5rem;
	}
}
