/* 
 * Custom Cards Styles
 * @package kloecup-cc
 */

.lkrea-cc-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr); /* Override via Elementor Controls */
	gap: 30px;
	width: 100%;
}

.lkrea-cc-card {
	background-color: #ffffff;
	border-radius: 24px;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0,0,0,0.05); /* Default subtle shadow */
}

/* Header Container (Icon + Tag) */
.lkrea-cc-header {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 24px;
	width: 100%;
}

.lkrea-cc-icon {
	width: 64px;
	height: 64px;
	background-color: transparent;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.lkrea-cc-icon i, 
.lkrea-cc-icon svg {
	font-size: 28px;
	width: 1em;
	height: 1em;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	color: #F96431; /* Default fc-orange */
	transition: all 0.3s ease;
}

.lkrea-cc-icon svg {
	width: 28px;
	height: 28px;
}

.lkrea-cc-tag {
	font-size: 1.5rem;
	font-weight: 800;
	color: #F96431; /* fc-orange */
	display: inline-block;
	line-height: 1.2;
}

/* Titles and Description */
.lkrea-cc-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: #232550; /* fc-dark-blue */
	margin: 0 0 16px 0;
	line-height: 1.2;
}

.lkrea-cc-desc {
	font-size: 1.125rem;
	line-height: 1.6;
	color: #4a5769; /* Slate 600 / Muted blue */
	margin: 0;
}

.lkrea-cc-desc p:last-child {
	margin-bottom: 0;
}

/* =========================================================================
   Responsive Breakpoints
   ========================================================================= */

@media (max-width: 1024px) {
	/* Tablet */
	.lkrea-cc-card {
		padding: 32px;
	}
	.lkrea-cc-title {
		font-size: 2rem;
	}
}

@media (max-width: 767px) {
	/* Mobile */
	.lkrea-cc-grid {
		grid-template-columns: 1fr !important; /* Force stack on mobile unless overridden */
	}
	.lkrea-cc-card {
		padding: 24px;
	}
	.lkrea-cc-title {
		font-size: 1.75rem;
	}
	.lkrea-cc-desc {
		font-size: 1rem;
	}
}
