.hero-2 {
	padding: padding: 0 1rem;
	background: #ffffff;
}

.hero-2,
.hero-2 * {
	box-sizing: border-box;
}

.hero-2__inner {
	width: min(100%, 1680px);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
	gap: clamp(2rem, 4vw, 5rem);
	align-items: center;
}

.hero-2__content {
	max-width: 45rem;
	padding-left: clamp(0rem, 2vw, 2rem);
}

.hero-2__title {
	margin: 0 0 1rem;
	color: #171952;
	font-size: clamp(2.15rem, 1.7rem + 1.5vw, 3.6rem);
	line-height: 1.06;
	font-weight: 700;
	letter-spacing: -0.04em;
	font-size: 38px;
}

.hero-2__copy {
	color: #1d1d1d;
	font-size: clamp(1rem, 0.95rem + 0.3vw, 1.18rem);
	line-height: 1.52;
	font-weight: 400;
}

.hero-2__copy * {
	font-size: 18px;
}

.hero-2__copy + .hero-2__copy {
	margin-top: 1.8rem;
}

.hero-2__copy > *:first-child {
	margin-top: 0;
}

.hero-2__copy > *:last-child {
	margin-bottom: 0;
}

.hero-2__media {
	min-width: 0;
}

.hero-2__image,
.hero-2__placeholder {
	display: block;
	width: 100%;
	aspect-ratio: 1.05 / 1;
	border-radius: 20px;
}

.hero-2__image {
	object-fit: cover;
}

.hero-2__placeholder {
	background: linear-gradient(180deg, #d8dde4 0%, #eef1f4 100%);
}

@media (max-width: 1199px) {
	.hero-2__inner {
		grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
	}
}

@media (max-width: 991px) {
	.hero-2__inner {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.hero-2__content {
		max-width: 100%;
		padding-left: 0;
		order: 1;
	}

	.hero-2__media {
		order: 2;
	}
}

@media (max-width: 767px) {
	.hero-2 {
		padding: 2rem 1rem;
	}

	.hero-2__title {
		margin-bottom: 1rem;
		font-size: 2rem;
	}

	.hero-2__copy {
		font-size: 1rem;
		line-height: 1.55;
	}

	.hero-2__copy + .hero-2__copy {
		margin-top: 1.25rem;
	}

	.hero-2__image,
	.hero-2__placeholder {
		border-radius: 1.25rem;
	}

	.hero-2__image {
		height: auto;
	}

}