.hero_secundair-layout {
	position: relative;
	background: #1a1a1a;
	color: var(--dc-white);
	overflow: hidden;
}

.hero_secundair-layout::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: max(37.5rem, calc(37.5 * var(--su)));
	height: 100%;
	background-image: url("data:image/svg+xml,%3Csvg%20width%3D%22600%22%20height%3D%22800%22%20viewBox%3D%220%200%20600%20800%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ccircle%20cx%3D%22688%22%20cy%3D%22960%22%20r%3D%22582%22%20stroke%3D%22white%22%20stroke-width%3D%228%22%20stroke-linejoin%3D%22round%22%20stroke-dasharray%3D%226%2020%22%2F%3E%3C%2Fsvg%3E");
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: 100% 100%;
	pointer-events: none;
	z-index: 2;
}

.hero_secundair-layout .pk-row {
	padding-block: max(5rem, calc(5 * var(--su)));
	padding-top: max(6rem, calc(7.5 * var(--su)));
}

.hero_secundair__grid {
	align-items: stretch;
}

.hero_secundair__content,
.hero_secundair__media {
	grid-row: 1;
}

.hero_secundair__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1.5rem;
	padding-right: max(1.5rem, calc(2.5 * var(--su)));
	z-index: 3;
}

.hero_secundair__body,
.hero_secundair__copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.hero_secundair__body {
	gap: max(1.5rem, calc(1.5 * var(--su)));
}

.hero_secundair__copy {
	gap: max(1rem, calc(1 * var(--su)));
}

.hero_secundair-layout .hero_secundair__title {
	margin: 0;
	color: var(--dc-white);
	font-size: max(2.5rem, calc(3 * var(--su)));
	letter-spacing: -.04em;
}

.hero_secundair__text {
	color: var(--dc-white);
}

.hero_secundair__buttons.pk-button-group {
	margin-top: 0;
	gap: max(.6875rem, calc(.6875 * var(--su)));
}

.hero_secundair__buttons:not(:has(.pk-button:nth-child(2))) .pk-button {
    background-color: var(--button-bg-2, transparent);
	border:1px solid #999;
	color: var(--dc-white);
}

.hero_secundair__buttons:not(:has(.pk-button:nth-child(2))) .pk-button::after {
	transform: rotate(90deg);
}

.hero_secundair__buttons:not(:has(.pk-button:nth-child(2))) .pk-button:hover::after {
	transform: rotate(90deg) translateX(max(.125rem, calc(.125 * var(--su))));
}

.hero_secundair__buttons .pk-button:nth-child(2) {
	border-color: #999;
	color: var(--dc-white);
}

.hero_secundair__buttons .pk-button:nth-child(2)::after {
	transform: rotate(90deg);
}

.hero_secundair__buttons .pk-button:nth-child(2):hover::after {
	transform: rotate(90deg) translateX(max(.125rem, calc(.125 * var(--su))));
}

.hero_secundair__media {
	position: relative;
	height: auto;
	aspect-ratio: 652 / 526;
	border-radius: max(.5rem, calc(.5 * var(--su)));
	z-index: 1;
}

.hero_secundair__media .hero_secundair__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	border-radius: inherit;
}

.hero_secundair__card {
	position: absolute;
	left: max(-7rem, calc(-7 * var(--su)));
	bottom: max(3.5rem, calc(4 * var(--su)));
	display: flex;
	padding: max(1.5rem, calc(1.5 * var(--su)));
	border-radius: max(.5rem, calc(.5 * var(--su)));
	background: #FCEEE4;
	color: var(--dc-black);
	z-index: 2;
}

.hero_secundair__card--statistic {
	width: min(100%, max(16rem, calc(19.875 * var(--su))));
	flex-direction: column;
	align-items: flex-start;
	gap: max(.5rem, calc(.5 * var(--su)));
}

.hero_secundair__card--promotion {
	left: max(-4rem, calc(-4 * var(--su)));
	width: min(100%, max(15rem, calc(17 * var(--su))));
	align-items: flex-end;
	justify-content: space-between;
	gap: max(1rem, calc(1 * var(--su)));
}

.hero_secundair__statistic {
	font-family: var(--pk-heading-font-family);
	font-size: var(--scaling-h3);
	font-weight: var(--pk-heading-font-weight);
	line-height: var(--pk-heading-line-height);
}

.hero_secundair__promotion-title {
	display: block;
	margin-bottom: max(.25rem, calc(.25 * var(--su)));
	font-size: var(--desktop-body-md);
	font-weight: 700;
}

.hero_secundair__card-text p {
	margin: 0;
}

.hero_secundair__card-link {
	width: max(2.5rem, calc(2.5 * var(--su)));
	height: max(2.5rem, calc(2.5 * var(--su)));
	display: grid;
	place-items: center;
	background: #fd9644;
	color: var(--dc-black);
	text-decoration: none;
	flex: 0 0 auto;
	transition: transform 180ms ease, background-color 180ms ease;
	border-radius: 4px;
}

.hero_secundair__card-link:hover {
	background: var(--dc-orange);
	transform: translateX(max(.125rem, calc(.125 * var(--su))));
}

.hero_secundair__card-link:focus-visible {
	outline: max(.125rem, calc(.125 * var(--su))) solid var(--dc-black);
	outline-offset: max(.125rem, calc(.125 * var(--su)));
}

@media (max-width: 991px) {
	.hero_secundair-layout .pk-row {
		padding-block: max(5rem, calc(6 * var(--su)));
	}

	.hero_secundair__grid {
		row-gap: max(3rem, calc(3 * var(--su)));
	}

	.hero_secundair__content,
	.hero_secundair__media {
		grid-row: auto;
	}

	.hero_secundair__content {
		height: auto;
		gap: max(3rem, calc(3 * var(--su)));
		padding-right: 0;
	}

}

@media (max-width: 767px) {
	.hero_secundair-layout .pk-row {
		padding-block: max(4rem, calc(4 * var(--su)));
	}

	.hero_secundair__grid {
		row-gap: max(2.5rem, calc(2.5 * var(--su)));
	}

	.hero_secundair__body {
		gap: max(2rem, calc(2 * var(--su)));
	}

	.hero_secundair__media {
		margin-bottom: max(4rem, calc(4 * var(--su)));
	}

	.hero_secundair__card,
	.hero_secundair__card--promotion {
		left: max(1rem, calc(1 * var(--su)));
		right: max(1rem, calc(1 * var(--su)));
		bottom: max(-4rem, calc(-4 * var(--su)));
		width: auto;
	}

	.hero_secundair-layout::before {
		width: max(24rem, calc(24 * var(--su)));
		background-size: auto 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero_secundair__card-link {
		transition: none;
	}

	.hero_secundair__card-link:hover {
		transform: none;
	}
}
