/**
 * TechBBQ Text with big image — eyebrow, intro copy, optional CTA, and supporting photo.
 *
 * Figma Volunteering About: 5368:30173 / 6609:48070 / 6609:48128 / 6609:48150
 * Figma Startups Hear from Startups: 7157:69875 / 7136:46097 / 7136:46605 / 7136:46956 / 7136:47300
 * Breakpoints (mobile-first): 0–767, 768–1023, 1024–1439, 1440+.
 */

.techbbq-text-with-big-image {
	box-sizing: border-box;
	width: 100%;
	color: var(--techbbq-content-primary);
	background-color: var(--techbbq-bg-main);
}

.techbbq-text-with-big-image__inner {
	display: flex;
	flex-direction: column;
	gap: var(--techbbq-space-4);
	align-items: stretch;
}

.techbbq-text-with-big-image__content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-width: 0;
}

.techbbq-text-with-big-image__header {
	display: flex;
	flex-direction: column;
	gap: var(--techbbq-space-3);
	align-items: flex-start;
}

.techbbq-text-with-big-image__intro {
	display: flex;
	flex-direction: column;
	gap: var(--techbbq-space-sm);
	align-items: flex-start;
	width: 100%;
}

.techbbq-text-with-big-image__title {
	margin: 0;
}

.techbbq-text-with-big-image__paragraphs {
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 100%;
	max-width: 576px;
}

.techbbq-text-with-big-image__paragraph {
	margin: 0;
	font-family: var(--techbbq-font-family-body);
	font-size: var(--techbbq-text-paragraph-m-size);
	font-weight: 400;
	line-height: 1.4;
	color: var(--techbbq-content-secondary);
}

.techbbq-text-with-big-image__actions {
	display: flex;
	flex-direction: column;
	gap: var(--techbbq-space-1);
	width: 100%;
}

.techbbq-text-with-big-image__button {
	align-self: stretch;
	width: 100%;
}

.techbbq-text-with-big-image__media {
	overflow: hidden;
	flex-shrink: 0;
	width: 100%;
	height: auto;
	margin: 0;
	border-radius: var(--techbbq-radius-sm);
}

.techbbq-text-with-big-image__image {
	display: block;
	width: 100%;
	height: auto;
}

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

	.techbbq-text-with-big-image__title {
		font-size: 42px;
		letter-spacing: -0.42px;
	}

	.techbbq-text-with-big-image__paragraph {
		font-size: 20px;
	}

	.techbbq-text-with-big-image__actions {
		width: auto;
	}

	.techbbq-text-with-big-image__button {
		align-self: flex-start;
		width: auto;
	}
}

/* ── Desktop (1024–1439) ──────────────────────────────────────── */
@media (min-width: 1024px) {
	.techbbq-text-with-big-image__inner {
		flex-direction: row;
		gap: var(--techbbq-space-1);
		align-items: flex-start;
	}

	.techbbq-text-with-big-image__content,
	.techbbq-text-with-big-image__media {
		flex: 1 1 0;
		min-width: 0;
	}

	.techbbq-text-with-big-image__title {
		font-size: 44px;
		letter-spacing: -0.44px;
	}

	.techbbq-text-with-big-image__paragraph {
		font-size: var(--techbbq-text-paragraph-l-size);
		letter-spacing: var(--techbbq-text-paragraph-letter-spacing);
	}
}

/* ── Wide screen (1440+) ──────────────────────────────────────── */
@media (min-width: 1440px) {
	.techbbq-text-with-big-image__title {
		font-size: var(--techbbq-text-h3-size);
		letter-spacing: var(--techbbq-text-h3-letter-spacing);
	}

	.techbbq-text-with-big-image__media {
		flex: 0 0 692px;
		width: 692px;
		height: auto;
	}
}
