/**
 * TechBBQ Volunteering Join — centered closing CTA.
 *
 * Figma refs in widget PHP (1440 / 1024 / 768 / 360).
 * Section vertical spacing lives on .techbbq-volunteering-join-wrap (Elementor container).
 *
 * Breakpoints (mobile-first): 0–767 (base), 768–1023, 1024–1439, 1440+.
 */

.techbbq-volunteering-join {
	box-sizing: border-box;
	width: 100%;
	padding: 0;
	color: var(--techbbq-content-primary);
	background-color: var(--techbbq-bg-main);
}

.techbbq-volunteering-join__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.techbbq-volunteering-join__content {
	display: flex;
	flex-direction: column;
	gap: var(--techbbq-space-2);
	align-items: center;
	width: 100%;
	text-align: center;
}

.techbbq-volunteering-join__title-block {
	display: flex;
	flex-direction: column;
	gap: var(--techbbq-space-1);
	align-items: center;
	width: 100%;
}

.techbbq-volunteering-join__title {
	margin: 0;
	font-family: var(--techbbq-font-family-heading);
	font-size: 46px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: -0.01em;
}

.techbbq-volunteering-join__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--techbbq-space-1);
	justify-content: center;
	width: 100%;
}

.techbbq-volunteering-join__actions .techbbq-btn {
	width: 100%;
}

/* ── Tablet (768–1023) ── */
@media (min-width: 768px) {
	.techbbq-volunteering-join__content {
		gap: var(--techbbq-space-3);
	}

	.techbbq-volunteering-join__title-block {
		gap: var(--techbbq-space-2);
	}

	.techbbq-volunteering-join__title {
		font-size: 64px;
		letter-spacing: -0.01em;
	}

	.techbbq-volunteering-join__actions .techbbq-btn {
		width: auto;
	}
}

/* ── Desktop (1024–1439) ── */
@media (min-width: 1024px) {
	.techbbq-volunteering-join__title {
		font-size: 76px;
		letter-spacing: -0.01em;
	}
}
