.sol-oss {
	padding: 80px 0;
}
.oss-content {
	display: grid;
	/* grid-template-columns: 1fr 1fr; */
	gap: 60px;
	align-items: start;
	margin-bottom: 60px;
}
.oss-text h2 {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
	color: white;
}
.oss-text p {
	color: #e0e0e0;
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 30px;
}
.product-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	margin-top: 80px;
	max-width: 100% !important;
}

.product-card {
	background: rgba(20, 20, 40, 0.6);
	border-radius: 16px;
	overflow: hidden;
	border: 2px solid rgba(97, 88, 237, 0.3);
	transition: all 0.3s ease;
	max-width: 100%;
}

.product-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(97, 88, 237, 0.3);
	border-color: rgba(97, 88, 237, 0.6);
}

.product-card img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 14px;
	max-width: 100% !important;
}

.code-snippets {
	position: relative;
	min-height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.code-box {
	position: relative;
	width: 100%;
	height: 100px;
}

/* Code Images */
.code-img {
	position: absolute;
	width: 85%;
	max-width: 600px;
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
	border: 2px solid rgba(97, 88, 237, 0.5);
}

/* Top code snippet */
.code-img-top {
	top: -100%;
	right: 177px;
	z-index: 0;
	width: 70%;
}
/* Bottom code snippet */
.code-img-bottom {
	bottom: -100px;
	left: 177px;
	z-index: 1;
	width: 70%;
}

@media (max-width: 1024px) {
	.code-box {
		width: 50%;
	}
	.code-img-top {
		top: -95%;
		right: 80px;
		z-index: 0;
		width: 125%;
	}

	.code-img-bottom {
		bottom: -85px;
		left: 80px;
		width: 125%;
	}
	.product-cards {
		grid-template-columns: 1fr 1fr;
		gap: 30px;
	}
}

@media (max-width: 768px) {
	.code-snippets {
		margin-top: 30px;
	}
	.code-box {
		width: 50%;
	}
	.code-img-top {
		top: -100%;
		right: 230px;
		z-index: 0;
		width: 90%;
	}

	.code-img-bottom {
		bottom: -100px;
		left: 232px;
		width: 90%;
	}
	.product-cards {
		grid-template-columns: 1fr;
		gap: 24px;
		margin-top: 50px;
	}
}

@media (max-width: 576px) {
	.code-snippets {
		margin-top: 30px;
	}
	.code-box {
		width: 50%;
	}
	.code-img {
		width: 95%;
	}
	.product-cards {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 425px) {
	.code-box {
		width: 50%;
	}
	.code-img-top {
		width: 150%;
		right: 30px;
		top: -75px;
	}

	.code-img-bottom {
		width: 150%;
		left: 30px;
	}
	.product-cards {
		margin-top: 40px;
		gap: 20px;
	}
}
