/**
 * Chrome Ore Content Section Styles
 * Section with black background
 *
 * @package Eryvium
 * @since Eryvium 1.0.0
 */

/* ============================================
   CHROME ORE CONTENT SECTION
   ============================================ */

.chrome-ore-content-section {
	position: relative;
	padding: clamp(80px, 12vw, 160px) 0;
	background-color: var(--color-true-black);
	color: var(--color-pure-white);
}

.chrome-ore-content-section .container {
	padding: 0;
}

.chrome-ore-content-wrapper {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}

/* Header */
.chrome-ore-content-header {
	text-align: center;
	width: clamp(320px, 90vw, 700px);
}

.chrome-ore-content-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: var(--color-pure-white);
	margin: 0 auto 24px auto;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	align-items: baseline;
}

.chrome-ore-content-title .title-text {
	color: var(--color-sky-pulse);
}

.chrome-ore-content-title .title-accent {
	color: var(--color-pure-white);
}

.chrome-ore-content-description {
	font-family: var(--font-body);
	font-size: var(--font-size-body);
	font-weight: var(--font-weight-body);
	line-height: var(--line-height-body);
	color: var(--color-pure-white);
	margin: 0;
}

/* Regions section for Chrome Ore - 3 cards */
.chrome-ore-page .regions-cards {
	grid-template-columns: repeat(3, 1fr);
}

/* Responsive */
@media (max-width: 1400px) {
	.chrome-ore-content-wrapper {
		width: 100%;
		max-width: 100%;
	}
	
	/* Fix for animated specifications table wrapper */
	.chrome-ore-content-section .animate-on-scroll.fade-in-up.animate-delay-400.animated,
	.chrome-ore-content-section .animate-on-scroll.animated {
		width: 100%;
		max-width: 100%;
	}
}

@media (max-width: 1024px) {
	.chrome-ore-page .regions-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.chrome-ore-content-section {
		padding: clamp(60px, 10vw, 120px) 0;
	}
	
	.chrome-ore-content-wrapper {
		gap: 32px;
	}
	
	.chrome-ore-page .regions-cards {
		grid-template-columns: 1fr;
	}
}

/* Styles moved to specifications-table.css for better reusability */

@media (max-width: 768px) {
	/* Fix for animated specifications table wrapper */
	.chrome-ore-content-section .animate-on-scroll.fade-in-up.animate-delay-400.animated,
	.chrome-ore-content-section .animate-on-scroll.animated {
		width: 100%;
		max-width: 100%;
	}
}

@media (max-width: 320px) {
	.chrome-ore-content-section .container {
		padding: 0 16px;
	}
}