/* CTA BUTTON */

.cta-button {
	position: relative;
	display: inline-grid;
	grid-auto-flow: column;
	color: var(--color-white);
	font-size: 13px;
	font-weight: 500;
	line-height: 13px;
	letter-spacing: 0.5px;
	margin-right: 0;
	gap: 14px;
	border: 0;
	filter: url(#goo-filter);
	text-decoration: none;
	background: none;
	padding: 0;
	outline: none;
	cursor: pointer;
	font-family: inherit;
	appearance: none;
	-webkit-appearance: none;
	transition: color 0.2s ease-out;
}

.block-card-image .cta-button { display: inline-flex; }

.cta-button-patch {
	position: relative;
	display: inline-flex;
	transform: translateX(-7px);
	transition: transform 320ms cubic-bezier(0.2, 0.9, 0.2, 1),
		border-radius 320ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.cta-button:hover .cta-button-patch {
	transform: translateX(1.5px);
}

.cta-button-patch .circle {
	height: 100%;
	aspect-ratio: 1/1;
	background-color: var(--color-orange);
	display: flex;
	border-radius: 100%;
	align-items: center;
	justify-content: center;
	transform-origin: right;
	transform: scale(1.05);
	transition: background-color 0.2s ease-out;
}

.cta-button-patch .circle svg {
	width: 32%;
	position: absolute;
	height: auto;
	transform-origin: center;
	transform: scale(1);
	transition: transform 320ms cubic-bezier(0.2, 0.9, 0.2, 1), 
	rotate 320ms cubic-bezier(0.2, 0.9, 0.2, 1), fill 0.2s ease-out;
}

.cta-button:hover .cta-button-patch .circle svg {
	transform: scale(1.1);
	rotate: 45deg;
}

.cta-button-text {
	padding: 15px 22px;
	background-color: var(--color-orange);
	border-radius: 60px;
	text-transform: uppercase;
	z-index: 1;
	display: flex;
	align-items: center;
	white-space: nowrap;
	transform-origin: right;
	isolation: isolate;
	transition: background-color 0.2s ease-out;
}



.cta-button.cta-dark-orange {
	color: var(--color-orange);
}

.cta-button.cta-dark-orange .cta-button-text {
	background-color: var(--color-title-primary);
}

.cta-button.cta-dark-orange .cta-button-patch .circle {
	background-color: var(--color-title-primary);
}

.cta-button.cta-dark-orange .cta-button-patch .circle svg path {
	fill: var(--color-orange);
}

.cta-button.cta-sand {
	color: var(--color-orange);
}

.cta-button.cta-sand .cta-button-text {
	background-color: var(--color-sand);
}

.cta-button.cta-sand .cta-button-patch .circle {
	background-color: var(--color-sand);
}

.cta-button.cta-sand .cta-button-patch .circle svg path {
	fill: var(--color-orange);
}

.cta-button.cta-sand:hover .cta-button-patch .circle svg path {
	fill: var(--color-sand);
}



.cta-button.cta-sand:hover .cta-button-text {
	color: var(--color-sand);
}


.single-content .cta-button:hover .cta-button-text {
	background-color: var(--color-dark-sand);
}

.single-content .cta-button:hover .cta-button-patch .circle {
	background-color: var(--color-dark-sand);
}

@container page-content (max-width: 1500px) {
	.cta-button-text { padding: 13px 20px; }
}

@container page-content (max-width: 1080px) {
	.cta-button-text { padding: 13px 18px; }
}


@container page-content (max-width: 768px) {
	.cta-button { font-size: 12px; line-height:12px; gap: 7px; }

	.cta-button .cta-button-patch { transform: none; }

	.cta-button:hover .cta-button-patch {
		transform: none;
	}

	.cta-button:hover .cta-button-patch .circle svg {
		transform: scale(1);
		rotate: 0deg;
	}
	

}