/* =========================================================
   Renewal Hero
   ========================================================= */

.renewal-hero {
	position: relative;
	padding: 64px 0 72px;
	background: linear-gradient(135deg, #fff 0%, #fff 44%, var(--blue-hero-surface) 100%);
}

.renewal-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
	align-items: center;
	gap: clamp(38px, 6vw, 88px);
}

.renewal-hero__copy h1 {
	margin: 0;
	color: var(--blue);
	font-size: clamp(40px, 5vw, 52px);
	line-height: 1.35;
	letter-spacing: .04em;
}

.renewal-hero__lead {
	margin: 24px 0 0;
	color: var(--text-strong);
	font-size: 16px;
	font-weight: 700;
	line-height: 2;
}

.renewal-hero__visual {
	position: relative;
	min-height: 500px;
	overflow: hidden;
	border-radius: 6px;
	box-shadow: 0 24px 60px rgba(29,64,105,.16);
}

.renewal-hero__visual::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 48%, rgba(5,28,62,.24) 100%);
	pointer-events: none;
  backdrop-filter: blur(2px);
}

.renewal-hero__visual img {
	width: 100%;
	height: 100%;
	min-height: 500px;
	object-fit: cover;
}

@media screen and (max-width: 1024px) {
	.renewal-hero__visual,
	.renewal-hero__visual img { min-height: 430px; }
}

@media screen and (max-width: 760px) {
	.renewal-hero { padding: 48px 0 56px; }
	.renewal-hero__inner { grid-template-columns: 1fr; }
	.renewal-hero__copy h1 { font-size: clamp(36px, 10vw, 50px); }
	.renewal-hero__visual,
	.renewal-hero__visual img { min-height: 320px; }
}
