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

/* ============================================
   MANGAESE ORE CONTENT SECTION
   ============================================ */

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

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

.manganese-ore-content-wrapper {
	width: clamp(320px, 90vw, 1300px);
	margin: 0 auto;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}

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

.manganese-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;
}

.manganese-ore-content-title .title-text {
	color: var(--color-pure-white);
}

.manganese-ore-content-title .title-accent {
	color: var(--color-sky-pulse);
}

.manganese-ore-content-description {
	font-family: var(--font-family-body);
	font-size: var(--font-size-body);
	line-height: var(--line-height-body);
	color: var(--color-pure-white);
	margin: 0 auto;
	max-width: clamp(320px, 60vw, 800px);
	opacity: 0.9;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */

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

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

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