.aura-astra-product-highlight {
	position: relative;
	isolation: isolate;
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	padding: clamp(64px, 7vw, 112px) clamp(16px, 3vw, 40px);
	overflow-x: clip;
	background: #fff;
	color:  var(--aura-color-burgundy);
}

.aura-astra-product-highlight__background {
    position: absolute;
    top: 42%;
    left: 50%;
    z-index: 0;
    display: block;
    width: min(180%, 1300px);
    aspect-ratio: 1 / 1;
    background-image: url("../../img/signes-astro/astra-back-product-highlight.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.7;
    pointer-events: none;
    transform: translate(-50%, -50%);
    animation: aura-astra-product-highlight-background-rotate 72s linear infinite;
}
.aura-astra-product-highlight__inner {
	position: relative;
	z-index: 1;
	display: grid;
	gap: clamp(34px, 6vw, 72px);
	width: min(100%, var(--aura-site-max-width, 1440px));
	margin-inline: auto;
}

.aura-astra-product-highlight__content,
.aura-astra-product-highlight__visual {
	min-width: 0;
}

.aura-astra-product-highlight__content {
	display: grid;
	align-content: center;
	gap: 18px;
}

.aura-astra-product-highlight__kicker {
	margin: 0;
	color:  var(--aura-color-burgundy);
	font-family: var(--aura-font-body, Manrope, sans-serif);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	line-height: 1.2;
	text-transform: uppercase;
}

.aura-astra-product-highlight__title {
	max-width: 10em;
	margin: 0;
	color:  var(--aura-color-burgundy);
	font-family: var(--aura-font-editorial, Fraunces, serif);
	font-size: clamp(34px, 4vw, 56px);
	font-weight: 520;
	line-height: 1.04;
}

.aura-astra-product-highlight__text {
	max-width: 46em;
	margin: 0;
	color:  var(--aura-color-burgundy);
	font-family: var(--aura-font-body, Manrope, sans-serif);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.72;
}

.aura-astra-product-highlight__capsules {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 2px 0 0;
	padding: 0;
	list-style: none;
}

.aura-astra-product-highlight__capsule {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 11px;
    border: 1px solid rgba(75, 28, 34, 0.16);
    border-radius: 999px;
    background: #fff;
    z-index: 1;
    color:  var(--aura-color-burgundy);
    font-family: var(--aura-font-body, Manrope, sans-serif);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

.aura-astra-product-highlight__visual {
	position: relative;
	display: grid;
	place-items: center;
	gap: 20px;
	isolation: isolate;
}

.aura-astra-product-highlight__orbit {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: min(100%, 420px);
	max-width: 100%;
	aspect-ratio: 1 / 1;
	margin-inline: auto;
	overflow: visible;
}

.aura-astra-product-highlight__zodiac,
.aura-astra-product-highlight__image {
	grid-area: 1 / 1;
	display: block;
	max-width: 100%;
	object-fit: contain;
	pointer-events: none;
	user-select: none;
}

.aura-astra-product-highlight__zodiac {
    width: 100%;
    filter: brightness(0.5);
    height: 100%;
    object-fit: contain;
    opacity: 0.85;
    transform-origin: 50% 50%;
    animation: aura-astra-product-highlight-rotate 64s linear infinite;
}

.aura-astra-product-highlight__image {
    width: 70%;
    height: auto;
	max-height: 64%;
	filter: drop-shadow(0 24px 34px rgba(75, 28, 34, 0.16));
	animation: aura-astra-product-highlight-levitate 5.8s ease-in-out infinite;
}

.aura-astra-product-highlight .aura-astra-product-highlight__zodiac {
	width: 90%;
	height: 90%;
}

.aura-astra-product-highlight .aura-astra-product-highlight__image,
.aura-astra-product-highlight .aura-astra-product-highlight__assurance-icon {
	height: auto;
}

.aura-astra-product-highlight__assurances {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 10px;
	width: min(100%, 430px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.aura-astra-product-highlight__assurance {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 0;
	color: rgba(75, 28, 34, 0.76);
	font-family: var(--aura-font-body, Manrope, sans-serif);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.35;
	text-align: left;
}

.aura-astra-product-highlight__assurance-icon {
	display: block;
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.aura-astra-product-highlight__assurance-text {
	min-width: 0;
}

@keyframes aura-astra-product-highlight-rotate {
	to {
		transform: rotate(360deg);
	}
}

@keyframes aura-astra-product-highlight-background-rotate {
	to {
		transform: translate(-50%, -50%) rotate(-360deg);
	}
}

@keyframes aura-astra-product-highlight-levitate {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-8px);
	}
}

@media (min-width: 1024px) {
	.aura-astra-product-highlight__inner {
		grid-template-columns: 45% 55%;
		align-items: center;
		gap: clamp(32px, 5vw, 72px);
	}

	.aura-astra-product-highlight__visual {
		transform: none;
		transform-origin: center;
	}
}

@media (max-width: 760px) {
	.aura-astra-product-highlight {
		padding: 54px 16px 62px;
	}

.aura-astra-product-highlight__background {
    width: 400vw;
    background-position: center;
    background-size: auto 50%;
    opacity: 0.7;
}
	.aura-astra-product-highlight__inner {
		grid-template-columns: minmax(0, 1fr);
		gap: 34px;
	}

	.aura-astra-product-highlight__content {
		gap: 16px;
	}

	.aura-astra-product-highlight__title {
		max-width: 10em;
		font-size: clamp(32px, 10vw, 42px);
	}

	.aura-astra-product-highlight__text {
		font-size: 14px;
		line-height: 1.68;
	}

	.aura-astra-product-highlight__orbit {
		width: 340px;
	}

	.aura-astra-product-highlight__image {
		width: 78%;
	}

	.aura-astra-product-highlight__capsules {
		gap: 7px;
	}

	.aura-astra-product-highlight__capsule {
		min-height: 26px;
		padding: 6px 10px;
		font-size: 10px;
		white-space: normal;
	}

	.aura-astra-product-highlight__assurances {
		width: min(100%, 340px);
	}

	.aura-astra-product-highlight .aura-astra-product-highlight__zodiac {
    width: 100%;
    height: 100%;
}
}

@media (prefers-reduced-motion: reduce) {
	.aura-astra-product-highlight__background,
	.aura-astra-product-highlight__image,
	.aura-astra-product-highlight__zodiac {
		animation: none;
	}
}
