/* ==========================================================================
   MyCreaTools Promo & Ads Card Widget Styles (Compact & Responsive Layout)
   ========================================================================== */

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

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

.mct-promo-card-outer {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	padding: 8px;
	box-sizing: border-box;
}

.mct-promo-card-inner {
	border-radius: 14px;
	padding: 20px 18px;
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
	border: 1px solid #000000;
}

.mct-promo-card-auth .mct-promo-card-inner {
	background-color: #dc2626;
	color: #ffffff;
}

.mct-promo-card-header {
	margin-bottom: 12px;
}

.mct-promo-badge {
	display: inline-block;
	background: #FEB521;
	color: #0D0D0D;
	font-size: 10.5px;
	font-weight: 800;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 6px;
}

.mct-promo-card-body {
	position: relative;
	z-index: 2;
}

.mct-promo-title {
	font-size: 18px;
	font-weight: 800;
	line-height: 1.3;
	margin: 0 0 8px 0;
	color: inherit;
	letter-spacing: -0.01em;
	word-break: break-word;
}

.mct-promo-desc {
	font-size: 13px;
	line-height: 1.45;
	margin: 0 0 16px 0;
	opacity: 0.92;
	color: inherit;
	max-width: 100%;
}

.mct-promo-action {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
}

.mct-promo-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 18px;
	border-radius: 9999px;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none !important;
	transition: all 0.2s ease;
	cursor: pointer;
	line-height: 1.2;
	width: 100%;
	box-sizing: border-box;
	text-align: center;
}

.mct-promo-btn-white {
	background: #ffffff;
	color: #dc2626 !important;
}

.mct-promo-btn-white:hover {
	background: #f8fafc;
	transform: translateY(-1px);
}

.mct-promo-svg-graphic {
	position: absolute;
	right: -20px;
	bottom: -20px;
	width: 140px;
	height: 140px;
	pointer-events: none;
	z-index: 1;
}

.mct-promo-svg-graphic svg {
	width: 100%;
	height: 100%;
}

/* ==========================================================================
   Unauthenticated / Guest Card (#FEB521 background & #0D0D0D text)
   ========================================================================== */
.mct-promo-card-unauth .mct-promo-card-inner {
	background-color: #FEB521;
	color: #0D0D0D;
	border-radius: 20px;
	padding: 24px 20px;
	box-sizing: border-box;
	border-color: #e2e8f0;
}

.mct-unauth-title {
	font-size: 21px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	margin: 0 0 8px 0;
	color: #0D0D0D;
	line-height: 1.25;
	word-break: break-word;
}

.mct-unauth-subtitle {
	font-size: 15px;
	font-weight: 700;
	margin: 0 0 10px 0;
	color: #0D0D0D;
	line-height: 1.35;
	word-break: break-word;
}

.mct-unauth-desc {
	font-size: 13px;
	line-height: 1.5;
	color: #0D0D0D;
	opacity: 0.9;
	margin: 0 0 18px 0;
	max-width: 100%;
}

.mct-unauth-actions {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 10px;
	width: 100%;
}

.mct-unauth-actions .mct-promo-btn {
	width: 100%;
	box-sizing: border-box;
	text-align: center;
	padding: 10px 16px;
	font-size: 13px;
}

.mct-promo-btn-dark {
	background: #0D0D0D;
	color: #ffffff !important;
	border: 1.5px solid #0D0D0D;
}

.mct-promo-btn-dark:hover {
	background: #1f1f1f;
	border-color: #1f1f1f;
	transform: translateY(-1px);
	color: #ffffff !important;
}

.mct-promo-btn-outline-dark {
	background: transparent;
	color: #0D0D0D !important;
	border: 1.5px solid #0D0D0D;
}

.mct-promo-btn-outline-dark:hover {
	background: rgba(13, 13, 13, 0.08);
	color: #0D0D0D !important;
}