/* Block: cmc/push-doc */

.cmc-push-doc {
	display: block;
	position: relative;
	text-decoration: none;
	border-radius: 16px;
	border: 3px solid var(--cmc-push-doc-color);
	overflow: hidden;
	max-width: 450px !important;
	margin-inline: auto;
	margin-top: 40px;
	margin-bottom: 40px;
	padding: var(--wp--preset--spacing--60) var(--wp--preset--spacing--60);
	text-align: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: opacity 0.2s ease;
}

.cmc-push-doc::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: color-mix(
		in srgb,
		var(--cmc-push-doc-color) 15%,
		rgba(253, 250, 249, 0.85)
	);
	z-index: 0;
}

.cmc-push-doc:hover {
	opacity: 0.9;
}

/* Type color variants */
.cmc-push-doc--famille {
	--cmc-push-doc-color: var(--wp--preset--color--secondary);
}

.cmc-push-doc--entreprise {
	--cmc-push-doc-color: var(--wp--preset--color--tertiary);
}

.cmc-push-doc--creche {
	--cmc-push-doc-color: var(--wp--preset--color--accent);
}

/* Icon */
.cmc-push-doc__icon {
	display: grid !important;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background-color: var(--wp--preset--color--white);
	color: var(--cmc-push-doc-color);
	font-size: 1.5rem;
	margin: 0 auto var(--wp--preset--spacing--30);
	position: relative;
	z-index: 1;
}

/* Title */
.cmc-push-doc .cmc-push-doc__title {
	display: block;
	font-family: var(--wp--preset--font-family--body);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--wp--preset--color--primary);
	line-height: 1.3;
	position: relative;
	z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
	.cmc-push-doc {
		padding: var(--wp--preset--spacing--50) var(--wp--preset--spacing--30);
	}

	.cmc-push-doc .cmc-push-doc__title {
		font-size: 1.375rem;
	}
}
