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

/* ============================================
   TIN ORE CONTENT SECTION
   ============================================ */

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

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

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

.tin-ore-content-header {
	width: 100%;
	text-align: center;
}

.tin-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 0 24px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

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

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

.tin-ore-content-description {
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--color-pure-white);
	margin: 0;
	max-width: 785px;
	margin-left: auto;
	margin-right: auto;
}

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

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

/* Mobile styles */
@media (max-width: 768px) {
	.tin-ore-content-wrapper {
		width: 100%;
		max-width: 100%;
		padding: 0;
	}
	
	.tin-ore-content-description {
		text-align: center;
	}
	
	/* Fix for animated specifications table wrapper */
	.tin-ore-content-section .animate-on-scroll.fade-in-up.animate-delay-400.animated,
	.tin-ore-content-section .animate-on-scroll.animated {
		width: 100%;
		max-width: 100%;
	}
}

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