/* Sales Highlight V2 block */
.sales-highlight-v2 {
	overflow: visible;
	padding-top: 11px;
}

/* Space below so the hanging image does not cover the next section */
.sales-highlight-v2:has(.sales-highlight-v2__large-img) {
	padding-bottom:0;
}

.sales-highlight-v2__inner {
	display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
		align-items: center;
		gap: 115px;
		max-width: 1145px;
		margin-left: auto;
		margin-right: auto;
		overflow: visible;
}

.sales-highlight-v2__visual {
	position: relative;
	flex-shrink: 0;
	min-height: 0;
	min-width: 0;
	align-self: center;
	overflow: visible;
}

.sales-highlight-v2__visual--portrait-only {
	min-height: clamp(120px, 28vw, 160px);
}

.sales-highlight-v2__large-wrap {
	position: relative;
	overflow: visible;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}

.sales-highlight-v2__large-img {
	display: block;
	width: min(100%, 433px);
	height: auto;
	max-width: none;
	transform: rotate(-3deg) translateY(93px);
	transform-origin: center bottom;
}

.sales-highlight-v2__portrait {
	position: absolute;
	top: 218px;
	right: 1%;
	width: 166px;
	height: 166px;
	z-index: 2;
	border-radius: 50%;
	border: 3px solid #fff;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	background: #fff;
}

.sales-highlight-v2__portrait-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sales-highlight-v2__content {
	display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 25px;
		max-width: 411px;
}

.sales-highlight-v2__title {
	margin: 0;
		font-size: 56px;
		font-weight: 400;
		line-height: 66px;
		color: #fff;
		font-family: 'Montserrat';
}

.sales-highlight-v2__title strong {
	font-weight: 700;
		display: block;
			font-family: 'Montserrat Bold';
}

.sales-highlight-v2__description {
	margin: 0;
		font-size: 22px;
		line-height: 32px;
		color: #fff;
}

.sales-highlight-v2__description p {
	margin: 0;
		font-size: 22px;
		line-height: 32px;
}

.sales-highlight-v2__description p:last-child {
	margin-bottom: 0;
}

.sales-highlight-v2__button.button {
	display: inline-block;
		align-self: flex-start;
		padding: 27px 30px;
		font-size: 18px;
		font-weight: 700;
		letter-spacing: 0.1rem;
		text-transform: uppercase;
		text-decoration: none;
		color: #172756;
		background: #fff;
		border: none;
		border-radius: 0;
		box-shadow: none;
		transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
		margin: 30px 0 0;
}

.sales-highlight-v2__button.button:hover,
.sales-highlight-v2__button.button:focus {
	color: #fff;
	background-color: #1D3C8B;
}

@media (max-width: 1080px) {
	.sales-highlight-v2__inner {
		grid-template-columns: 1fr;
		gap: 2rem;
		max-width:95%;
	}

	/* Stack: text first, former left column (visual) last */
	.sales-highlight-v2__content {
			order: -1;
				max-width: 90%;
				margin: 27px auto 0;
	}

			    .sales-highlight-v2__visual {
			    	order: 1;
			    	max-width: 491px;
			    	margin: -73px auto 0;
			    }
	.sales-highlight-v2__portrait {
		position: absolute;
		top: 163px;
		right: 42px;
		width: 120px;
		height: 120px;
		z-index: 2;
		border-radius: 50%;
		border: 3px solid #fff;
		box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
		overflow: hidden;
		background: #fff;
	}

	.sales-highlight-v2__large-wrap {
		margin-bottom: clamp(-2rem, -8vw, -3rem);
	}

	.sales-highlight-v2__large-img {
		width: min(80%, 320px);
	}
}
@media (max-width: 600px) {
.sales-highlight-v2__title {
	font-size:46px;
	line-height:56px;
}
}