/**
 * TechBBQ Speakers Marketing Kit — centered CTA for the Speakers page.
 *
 * Figma refs in widget PHP (1440 / 1024 / 768 / 380).
 *
 * Button: components/button.css (.techbbq-btn--primary.techbbq-btn--large).
 * Breakpoints (mobile-first): 0–767 (base), 768–1023, 1024–1440, 1440+.
 */

.techbbq-speakers-marketing-kit {
	--techbbq-speakers-marketing-kit-section-gap: var(--techbbq-space-2);
	--techbbq-speakers-marketing-kit-text-gap: var(--techbbq-space-sm);
	--techbbq-speakers-marketing-kit-title-size: 46px;
	--techbbq-speakers-marketing-kit-description-size: var(--techbbq-text-paragraph-m-size);
	--techbbq-speakers-marketing-kit-description-line-height: var(--techbbq-text-paragraph-line-height);

	box-sizing: border-box;
	width: 100%;
	padding: var(--techbbq-section-space-small) 0 var(--techbbq-space-10);
	color: var(--techbbq-content-primary);
	background-color: var(--techbbq-bg-main);
}

.techbbq-speakers-marketing-kit__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.techbbq-speakers-marketing-kit__content {
	display: flex;
	flex-direction: column;
	gap: var(--techbbq-speakers-marketing-kit-section-gap);
	align-items: center;
	width: 100%;
	text-align: center;
}

.techbbq-speakers-marketing-kit__title-block {
	display: flex;
	flex-direction: column;
	gap: var(--techbbq-section-eyebrow-title-gap);
	align-items: center;
	width: 100%;
}

.techbbq-speakers-marketing-kit__text {
	display: flex;
	flex-direction: column;
	gap: var(--techbbq-speakers-marketing-kit-text-gap);
	align-items: center;
	width: 100%;
}

.techbbq-speakers-marketing-kit__title {
	margin: 0;
	font-family: var(--techbbq-font-family-heading);
	font-size: var(--techbbq-speakers-marketing-kit-title-size);
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: -0.01em;
}

.techbbq-speakers-marketing-kit__description {
	max-width: 576px;
	margin: 0;
	font-family: var(--techbbq-font-family-body);
	font-size: var(--techbbq-speakers-marketing-kit-description-size);
	font-weight: 400;
	line-height: var(--techbbq-speakers-marketing-kit-description-line-height);
	letter-spacing: var(--techbbq-text-paragraph-letter-spacing);
	color: var(--techbbq-content-secondary);
}

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

.techbbq-speakers-marketing-kit__actions .techbbq-btn {
	width: 100%;
}

/* ── Tablet (768–1023) ──────────────────────────────────────── */
@media (min-width: 768px) {
	.techbbq-speakers-marketing-kit {
		--techbbq-speakers-marketing-kit-section-gap: var(--techbbq-space-3);
		--techbbq-speakers-marketing-kit-title-size: 64px;
		--techbbq-speakers-marketing-kit-description-size: 20px;
		--techbbq-speakers-marketing-kit-description-line-height: 1.1;
	}

	.techbbq-speakers-marketing-kit__actions .techbbq-btn {
		width: auto;
	}
}

/* ── Desktop (1024–1440) ──────────────────────────────────────── */
@media (min-width: 1024px) {
	.techbbq-speakers-marketing-kit {
		--techbbq-speakers-marketing-kit-title-size: 76px;
		--techbbq-speakers-marketing-kit-description-size: var(--techbbq-text-paragraph-l-size);

		padding-bottom: 88px;
	}
}

/* ── Large desktop (1440+) ──────────────────────────────────── */
@media (min-width: 1440px) {
	.techbbq-speakers-marketing-kit {
		padding-bottom: var(--techbbq-section-space-large);
	}
}
