/* MTT Volunteers — Frontend styles */

.mtt-volunteers {
	background: #263765;
	color: #fff;
	padding: 90px 0;
	position: relative;
	overflow: hidden;
}

.mtt-volunteers::before {
	content: "";
	position: absolute;
	top: -200px;
	right: -200px;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
}

.mtt-volunteers-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 32px;
}

/* Eyebrow */
.mtt-volunteers-eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #fff;
	padding: 6px 14px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	margin-bottom: 20px;
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Title */
.mtt-volunteers h2.mtt-volunteers-title {
	color: #fff;
	font-family: 'Fraunces', Georgia, serif;
	font-size: clamp(30px, 3.5vw, 44px);
	font-weight: 400;
	line-height: 1.15;
	margin: 0 0 18px 0;
}

.mtt-volunteers h2.mtt-volunteers-title em {
	font-style: normal;
	color: oklch(0.78 0.12 75);
	font-weight: 400;
}

/* Paragraphs */
.mtt-volunteers p.mtt-volunteers-text {
	color: rgba(255, 255, 255, 0.8);
	font-size: 17px;
	line-height: 1.65;
	margin: 0 0 18px 0;
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Button */
.mtt-volunteers a.mtt-volunteers-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: 999px;
	font-size: 14.5px;
	font-weight: 700;
	letter-spacing: 0.01em;
	transition: all 0.2s;
	cursor: pointer;
	text-decoration: none;
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, 0.35);
	margin-top: 8px;
	box-shadow: none;
	outline: none;
	line-height: 1.4;
}

.mtt-volunteers a.mtt-volunteers-btn:hover,
.mtt-volunteers a.mtt-volunteers-btn:focus {
	background: rgba(255, 255, 255, 0.18);
	border-color: #fff;
	color: #fff;
	text-decoration: none;
}

.mtt-volunteers .mtt-volunteers-arr {
	transition: transform 0.2s;
}

.mtt-volunteers a.mtt-volunteers-btn:hover .mtt-volunteers-arr {
	transform: translateX(3px);
}

/* Stats grid */
.mtt-volunteers-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	background: rgba(255, 255, 255, 0.12);
	border-radius: 20px;
	overflow: hidden;
}

.mtt-volunteers-stat {
	background: #263765;
	padding: 32px 30px;
}

.mtt-volunteers-num {
	font-family: 'Fraunces', Georgia, serif;
	font-size: 52px;
	font-weight: 400;
	color: #fff;
	line-height: 1;
	letter-spacing: -0.02em;
}

.mtt-volunteers-num sup {
	font-size: 26px;
	color: oklch(0.78 0.12 75);
}

.mtt-volunteers-lbl {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	margin-top: 10px;
	line-height: 1.4;
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Responsive */
@media (max-width: 1024px) {
	.mtt-volunteers-inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

@media (max-width: 640px) {
	.mtt-volunteers {
		padding: 70px 0;
	}

	.mtt-volunteers-inner {
		padding: 0 20px;
	}

	.mtt-volunteers-stats {
		grid-template-columns: 1fr;
	}
}
