/* ==========================================================================
   MyCreaTools Tips & Recommendations Widget CSS
   ========================================================================== */

.mct-tips-wrapper {
	width: 100%;
	box-sizing: border-box;
	font-family: inherit;
}

/* Sticky Sidebar Mode (Applies to wrapper and Elementor widget root element) */
.elementor-widget-mct_tips_recommendations.is-sticky-widget,
.elementor-widget-mct_tips_recommendations.is-sticky-widget > .elementor-widget-container,
.mct-tips-wrapper.is-sticky {
	position: -webkit-sticky !important;
	position: sticky !important;
	top: var(--mct-tips-sticky-top, 90px) !important;
	z-index: 99 !important;
}

/* Outer Card Container matching screenshot design */
.mct-tips-card {
	background: #ffffff;
	border: 1px solid #f1f5f9;
	border-radius: 24px;
	padding: 24px 22px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
	box-sizing: border-box;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
	width: 100%;
}

.mct-tips-card:hover {
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
	border-color: #e2e8f0;
}

/* Header Section */
.mct-tips-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}

.mct-tips-header-icon {
	font-size: 20px;
	color: #eab308;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.mct-tips-header-icon svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.mct-tips-title {
	font-size: 19px;
	font-weight: 800;
	color: #0f172a;
	margin: 0;
	line-height: 1.25;
	letter-spacing: -0.01em;
}

/* Items List */
.mct-tips-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.mct-tip-item {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 100%;
}

/* Link Box for each tip item */
.mct-tip-link {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 8px;
	border-radius: 16px;
	text-decoration: none !important;
	color: inherit;
	background: transparent;
	transition: background-color 0.2s ease;
	cursor: pointer;
	box-sizing: border-box;
	width: 100%;
}

.mct-tip-link:hover {
	background: #f8fafc;
}

/* Left Pastel Icon Circle Badge */
.mct-tip-badge {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	flex-shrink: 0;
	box-sizing: border-box;
	transition: transform 0.2s ease;
	margin-top: 2px;
}

.mct-tip-link:hover .mct-tip-badge {
	transform: scale(1.05);
}

.mct-tip-badge svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

/* Right Content Column */
.mct-tip-content {
	display: flex;
	flex-direction: column;
	min-width: 0;
	flex: 1;
}

.mct-tip-item-title {
	font-size: 15.5px;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 3px 0;
	line-height: 1.3;
	transition: color 0.2s ease;
}

.mct-tip-item-desc {
	font-size: 13.5px;
	font-weight: 500;
	color: #64748b;
	margin: 0;
	line-height: 1.4;
	word-break: break-word;
}
