.novaBlockThree {
	--block-section-bg: #fff;
	--block-surface: #fff;
	--block-text: #202020;
	--block-accent: #ef7c23;
	--block-radius: 24px;
	width: min(1440px, 100%);
	margin: 0 auto;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 40px;
	position: relative;
	isolation: isolate;
}

.novaBlockThree::before {
	content: "";
	position: absolute;
	top: 0;
	right: 50%;
	bottom: 0;
	left: 50%;
	margin-right: -50vw;
	margin-left: -50vw;
	background: var(--block-section-bg);
	pointer-events: none;
	z-index: -1;
}

.novaBlockThree__header {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.novaBlockThree__accent {
	background: var(--block-accent);
	border-radius: 4px;
	padding: 4px 2px;
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.novaBlockThree__text {
	font-size: 48px;
	font-weight: 500;
	line-height: 54px;
	text-transform: uppercase;
}

.novaBlockThree__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 461px;
	gap: 16px;
	align-items: stretch;
}

.novaBlockThree__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.novaBlockThree__card {
	min-height: 329px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	border-radius: var(--block-radius);
	background: var(--block-surface);
	color: var(--block-text);
}

.novaBlockThree__icon {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.novaBlockThree__body {
	flex: 1;
}

.novaBlockThree__body h2 {
	margin: 0 0 16px;
	font-size: 28px;
	font-weight: 600;
	line-height: 1.08;
}

.novaBlockThree__description {
	font-size: 16px;
	line-height: 22px;
}

.novaBlockThree__description p {
	margin: 0;
}

.novaBlockThree__cta {
	width: 44px;
	height: 44px;
	margin-top: auto;
	margin-left: auto;
	border: 0;
	border-radius: 999px;
	background: #1d1d1f;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.novaBlockThree__cta:hover,
.novaBlockThree__cta:focus-visible {
	background: var(--block-accent);
}

.novaBlockThree__cta img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.novaBlockThree__cta.is-active {
	transform: scale(0.94);
}

.novaBlockThree__visual {
	position: relative;
	overflow: hidden;
	min-height: 674px;
	border-radius: var(--block-radius);
	background: #f5f5f7;
}

.novaBlockThree__photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 33% center;
}

.novaBlockThree__nova {
	position: absolute;
	left: -10px;
	top: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	height: 100%;
	justify-content: space-between;
}

.novaBlockThree__nova img {
	display: block;
	width: 158px;
	height: auto;
}

@media (max-width: 1200px) {
	.novaBlockThree__layout {
		grid-template-columns: 1fr;
	}

	.novaBlockThree__visual {
		display: none;
	}
}

@media (max-width: 820px) {
	.novaBlockThree {
		padding: 24px 16px 48px;
	}

	.novaBlockThree__grid {
		grid-template-columns: 1fr;
	}

	.novaBlockThree__accent,
	.novaBlockThree__text {
		font-size: 38px;
		line-height: 1.1;
	}
}
