/* CTA Multi Button Widget - 678b7ddf */

.cta-678b7ddf {
	position: relative;
	overflow: hidden;
	border-radius: 4px;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
	background: #fff;
}

/* Classic Skin */
.cta-678b7ddf--classic {
	display: flex;
	flex-direction: column;
}

.cta-678b7ddf--classic .cta-678b7ddf-image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.cta-678b7ddf--classic .cta-678b7ddf-content {
	padding: 30px;
	display: flex;
	flex-direction: column;
}

/* Cover Skin */
.cta-678b7ddf--cover .cta-678b7ddf-content {
	position: relative;
	min-height: 300px;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.cta-678b7ddf--cover .cta-678b7ddf-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 0;
}

.cta-678b7ddf--cover .cta-678b7ddf-content-inner {
	position: relative;
	z-index: 1;
}

.cta-678b7ddf--cover .cta-678b7ddf-title,
.cta-678b7ddf--cover .cta-678b7ddf-description {
	color: #fff;
}

/* Content Inner */
.cta-678b7ddf-content-inner {
	display: flex;
	flex-direction: column;
}

/* Graphic */
.cta-678b7ddf-graphic {
	margin-bottom: 15px;
	line-height: 1;
}

.cta-678b7ddf-graphic img {
	max-width: 100%;
	height: auto;
}

.cta-678b7ddf-icon {
	font-size: 50px;
}

.cta-678b7ddf-icon svg {
	width: 50px;
	height: 50px;
}

/* Title */
.cta-678b7ddf-title {
	margin: 0 0 10px;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.3;
}

/* Description */
.cta-678b7ddf-description {
	margin: 0 0 5px;
	font-size: 15px;
	line-height: 1.6;
	color: #666;
}

/* Buttons Wrapper */
.cta-678b7ddf-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
	align-items: center;
}

/* Button Base */
.cta-678b7ddf-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-weight: 500;
	line-height: 1;
	border-radius: 3px;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	box-sizing: border-box;
}

/* Button Sizes */
.cta-678b7ddf-btn-size-xs {
	padding: 8px 16px;
	font-size: 12px;
}

.cta-678b7ddf-btn-size-sm {
	padding: 10px 22px;
	font-size: 14px;
}

.cta-678b7ddf-btn-size-md {
	padding: 13px 28px;
	font-size: 15px;
}

.cta-678b7ddf-btn-size-lg {
	padding: 16px 36px;
	font-size: 17px;
}

.cta-678b7ddf-btn-size-xl {
	padding: 20px 44px;
	font-size: 19px;
}

/* Primary Button Defaults */
.cta-678b7ddf-primary-btn {
	background-color: #61ce70;
	color: #fff;
}

.cta-678b7ddf-primary-btn:hover {
	opacity: 0.85;
}

/* Extra Button Defaults */
.cta-678b7ddf-extra-btn {
	background-color: #818a91;
	color: #fff;
}

/* Ribbon */
.cta-678b7ddf-ribbon {
	position: absolute;
	top: 0;
	z-index: 2;
	overflow: hidden;
	width: 150px;
	height: 150px;
}

.cta-678b7ddf-ribbon--right {
	right: 0;
}

.cta-678b7ddf-ribbon--left {
	left: 0;
}

.cta-678b7ddf-ribbon-inner {
	position: absolute;
	top: 26px;
	width: 200%;
	padding: 8px 0;
	text-align: center;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	background-color: #e74c3c;
	color: #fff;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.cta-678b7ddf-ribbon--right .cta-678b7ddf-ribbon-inner {
	left: 10%;
	transform: rotate(45deg);
	transform-origin: top left;
}

.cta-678b7ddf-ribbon--left .cta-678b7ddf-ribbon-inner {
	right: 10%;
	transform: rotate(-45deg);
	transform-origin: top right;
}
