/* Support CTA — Razzi Child */

.rc-support-cta {
	width: 100%;
	background-color: var(--color-background);
	font-family: var(--font-body);
	overflow: hidden;
	border-radius: 8px;
	padding: 0 20px;
}

.rc-support-cta__container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: var(--container-width);
	margin: 0 auto;
	padding-left: 40px;
}

.rc-support-cta__content {
	flex: 1;
	padding-right: 40px;
	color: var(--color-text);
}

.rc-support-cta__title {
	font-family: var(--font-heading);
	color: var(--color-primary);
	font-size: 1.35rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.5px;
	margin: 0 0 30px;
}

.rc-support-cta__links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.rc-support-cta__links li {
	display: flex;
	align-items: center;
	font-size: 0.95rem;
	margin-bottom: 15px;
	color: var(--color-muted);
}

.rc-support-cta__text p {
    margin: 0;
}

.rc-support-cta__links li:last-child {
	margin-bottom: 0;
}

.rc-support-cta__icon {
	width: 20px;
	height: 20px;
	margin-right: 12px;
	color: var(--color-muted);
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.rc-support-cta__icon svg {
	width: 20px;
	height: 20px;
}

.rc-support-cta__text {
	flex: 1;
}

.rc-support-cta__text a {
	color: var(--color-text);
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color 0.2s ease;
}

.rc-support-cta__text a:hover {
	color: var(--color-accent);
}

.rc-support-cta__image-wrap {
	flex: 1;
	max-width: 48%;
	display: flex;
	justify-content: flex-end;
}

.rc-support-cta__image {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-top-left-radius: 16px;
	border-bottom-left-radius: 16px;
	display: block;
}

section.rc-support-cta span.rc-support-cta__icon svg path {
    fill: #2B2560;
}

@media (max-width: 992px) {
	.rc-support-cta__container {
		padding-left: 24px;
	}

	.site-footer figure img {
		height: 35px;
	}
}

@media (max-width: 768px) {
	.rc-support-cta__container {
		flex-direction: column-reverse;
		padding: 0;
		gap: 20px;
	}

	.rc-support-cta__image-wrap {
		max-width: 100%;
		width: 100%;
	}

	.rc-support-cta__image {
		border-radius: 16px;
	}

	.rc-support-cta {
		padding: 0;
	}	

	.rc-support-cta__content {
		padding: 20px;
		padding-bottom: 40px;
		width: 100%;
	}

	.rc-support-cta {
		border-radius: 0;
	}

}
