/* Sales Highlight V3 block */
.sales-highlight-v3 {
	overflow: hidden;
	padding-top: 100px;
	padding-bottom: 87px;
	padding-left: 0;
	padding-right: 0;
	background: #fff;
}

.sales-highlight-v3__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
	align-items: center;
	gap: 0;
	max-width: 1061px;
	width:95%;
	margin-left: auto;
	margin-right: auto;
}

.sales-highlight-v3__inner > :only-child {
	grid-column: 1 / -1;
}

.sales-highlight-v3__content {
	min-width: 0;
	max-width: 36rem;
}

.sales-highlight-v3__content :first-child {
	margin-top: 0;
}

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

.sales-highlight-v3__content h1{
	margin: 0 0 0.5em;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: clamp(1.75rem, 3.5vw, 2.6rem);
	line-height: 1.15;
	color: #172756;
}
.sales-highlight-v3__content h2{
	margin: 0 0 40px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 56px;
	line-height: 66px;
	color: #172756;
	text-transform: capitalize;
}
.sales-highlight-v3__content h3 {
	margin: 0 0 35px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 22px;
	line-height: 32px;
	color: #172756;
}

.sales-highlight-v3__content h1 strong,
.sales-highlight-v3__content h2 strong,
.sales-highlight-v3__content h3 strong {
	font-family: 'Montserrat Bold', 'Montserrat', sans-serif;
	font-weight: 700;
}

.sales-highlight-v3__content p {
	margin: 0 0 25px;
		font-family: 'Montserrat', sans-serif;
		font-size: 18px;
		line-height: 32px;
		color: #172756;
		letter-spacing: 0;
}

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

.sales-highlight-v3__content a {
	color: #1B51DA;
	text-decoration: underline;
	text-underline-offset: 0.12em;
}

.sales-highlight-v3__content a:hover,
.sales-highlight-v3__content a:focus {
	color: #3a7bc8;
}

.sales-highlight-v3__visual {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 0;
	padding: 0;
}

.sales-highlight-v3__visual-inner {
	position: relative;
		display: flex;
		justify-content: center;
		align-items: flex-end;
		width: 100%;
		max-width: 693px;
}

/* Rounded panel behind lower portion of the image */
/* .sales-highlight-v3__visual-inner::before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 92%;
	height: 55%;
	transform: translateX(-50%);
	background: #f5f1ea;
	border-radius: clamp(12px, 2vw, 20px);
	z-index: 0;
} */

.sales-highlight-v3__img {
	position: relative;
		display: block;
		width: 100%;
		height: 100%;
		max-width: none;
		z-index: 1;
		aspect-ratio: 1 / 1;
		object-fit: contain;
}

@media (max-width: 781px) {
	.sales-highlight-v3__inner {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.sales-highlight-v3__content {
		order: 0;
		max-width: none;
		text-align: center;
				padding: 0 20px;
	}
		.sales-highlight-v3__content h2 {
			font-size: 46px;
			line-height: 56px;
		}

	.sales-highlight-v3__visual {
		order: 1;
	}
		.sales-highlight-v3 {
			padding-top: 40px;
				padding-bottom: 50px;
		}
}
