/**
 * Ore to Battery Materials Section Styles
 *
 * @package Eryvium
 * @since Eryvium 1.0.0
 */

.ore-to-battery-section {
	position: relative;
	background-color: #000000;
	padding: clamp(80px, 12vw, 160px) 0;
	overflow: hidden;
}

.ore-to-battery-decor {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1;
	pointer-events: none;
}

.ore-to-battery-decor img {
	width: 100%;
	height: auto;
	display: block;
}

.ore-to-battery-section .container {
	position: relative;
	z-index: 2;
	padding-left: 0;
	padding-right: 0;
}

.ore-to-battery-content {
	display: flex;
	gap: 129px;
	align-items: center;
}

.ore-to-battery-left {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.ore-to-battery-text-block {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.ore-to-battery-title {
	font-family: var(--font-heading);
	font-size: var(--font-size-h2);
	font-weight: var(--font-weight-h2);
	line-height: var(--line-height-h2);
	color: #ffffff;
	margin: 0;
}

.ore-to-battery-title .title-accent {
	color: #07B3F1;
}

.ore-to-battery-description {
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #EEEEEE;
}

.ore-to-battery-description p {
	color: #EEEEEE;
}

.ore-to-battery-description p {
	margin: 0 0 16px 0;
}

.ore-to-battery-description p:last-child {
	margin-bottom: 0;
}

.ore-to-battery-button {
	align-self: flex-start;
}

.ore-to-battery-button.btn-primary {
	background-color: var(--color-sky-pulse);
	border-color: var(--color-sky-pulse);
}

.ore-to-battery-button.btn-primary:hover {
	background-color: #0599C4;
	border-color: #0599C4;
}

.ore-to-battery-right {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.ore-to-battery-io-cards {
	display: flex;
	flex-direction: row;
	gap: 24px;
}

.ore-to-battery-io-card {
	background-color: #141414;
	border: 1px solid rgba(122, 122, 122, 0.3);
	border-radius: 16px;
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
	position: relative;
	overflow: hidden;
}

.ore-to-battery-card-circle {
	width: 153px;
	height: 153px;
	border-radius: 50%;
	background: linear-gradient(180deg, #003c88 0%, #07b3f1 100%);
	pointer-events: none;
	filter: blur(clamp(30px, 5vw, 80px));
	backface-visibility: hidden;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) translateZ(0);
	position: absolute !important;
}

.ore-to-battery-io-card > *,
.ore-to-battery-benefits-card > * {
	position: relative;
	z-index: 2;
}

.ore-to-battery-io-label {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	text-transform: uppercase;
	color: #cccccc;
	margin: 0;
}

.ore-to-battery-io-value {
	font-family: 'DM Sans', sans-serif;
	font-size: 24px;
	font-weight: 500;
	line-height: 36px;
	color: #ffffff;
	margin: 0;
}

.ore-to-battery-io-description {
	font-family: 'DM Sans', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #cccccc;
	margin: 0;
}

.ore-to-battery-benefits-card {
	background-color: #141414;
	border: 1px solid rgba(122, 122, 122, 0.3);
	border-radius: 16px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	position: relative;
	overflow: hidden;
}

.ore-to-battery-benefits-label {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	text-transform: uppercase;
	color: #cccccc;
	margin: 0;
}

.ore-to-battery-benefits-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.ore-to-battery-benefit {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.ore-to-battery-benefit-check {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
}

.ore-to-battery-benefit-check img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.ore-to-battery-benefit-text {
	font-family: 'DM Sans', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #cccccc;
}

/* Responsive styles */
@media (max-width: 1024px) {
	.ore-to-battery-content {
		flex-direction: column;
		gap: 60px;
	}
	
	.ore-to-battery-right {
		flex: 1;
		display: flex;
		flex-direction: column;
		gap: 24px;
		width: 100%;
	}
	
	.ore-to-battery-io-cards {
		flex-direction: row;
	}
}

@media (max-width: 768px) {
	.ore-to-battery-section {
		padding: 60px 0;
	}
	
	.ore-to-battery-content {
		gap: 40px;
	}
	
	.ore-to-battery-left {
		gap: 32px;
	}
	
	.ore-to-battery-text-block {
		gap: 20px;
	}
	
	.ore-to-battery-io-card,
	.ore-to-battery-benefits-card {
		padding: 20px;
	}
}

@media (max-width: 320px) {
	.ore-to-battery-section {
		padding: 60px 16px;
	}
	
	.ore-to-battery-io-cards {
		flex-direction: column;
	}
}
