.block_3 {
	width: 100%;
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	min-height: 580px;
	background-color: var(--color-lightblue);
}

.block_3 .inner-content {
	display: grid;
	grid-template-columns: 1fr 460px;
	width: 100%;
	gap: 2em;
	max-width: 1400px;
	background-color: var(--color-primary);
	margin-block: 4.125em;
	position: relative;
	padding: 2em;
	padding-left: 4em;
	padding-right: 3em;
	margin-inline: 2em;
	clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 220px), calc(100% - 220px) 100%, 0% 100%);
}

.block_3 .inner-content .text-content {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}

.block_3 .dynamic-content *,
.block_3 .dynamic-content {
	color: var(--color-secondary-contrast) !important;
	font-weight: 300;
}

.block_3 h2 {
	color: var(--color-secondary-contrast) !important;
}

.block_3 .single_image {
	width: auto; /* or whatever fixed size you want */
	height: calc(100% - 4em);
	position: absolute;
	top: 2em;
	right: 3em;
	object-fit: contain;
	z-index: 1;
	pointer-events: none;
}

.block_3 .btn-secondary {
	min-width: 290px;
}

.block_3 .btn-secondary .icon {
	width: 24px;
	height: 24px;
	margin-left: 8px;
	position: absolute;
	right: 25px;
}

.block_3 .btn-secondary:hover {
	background-color: var(--color-secondary-contrast) !important;
	color: var(--color-secondary) !important;
}

@media screen and (max-width: 1400px) {
	.block_3 .inner-content {
		display: grid;
	}
}

@media screen and (max-width: 1050px) {
	.block_3 .inner-content {
		grid-template-columns: 1fr;
		gap: 2em;
		padding: 2em;
		clip-path: none;
	}

	.block_3 .inner-content .text-content {
		gap: 1.5em;
	}

	.block_3 .single_image {
		position: relative;
		width: 100%;
		display: flex;
		justify-self: center;
		height: auto;
		max-width: 500px;
		top: 0;
		right: 0;
	}

	.block_3 .single_image img {
		max-width: 500px;
	}

	.block_3 .btn-secondary .icon {
		right: 40px;
	}
}

@media screen and (max-width: 650px) {
	.block_3 .single_image img {
		width: 100%;
		max-width: none;
	}

	.block_3 .btn-secondary {
		min-width: 0;
		width: 100%;
	}
	.block_3 .btn-secondary img{
		display: none;
	}
}