/**
 * TechBBQ Page Info Cards — layout overrides for techbbq-text-with-cards on internal pages.
 *
 * Figma refs:
 * - Startups (stacked cards until desktop): [768 7156:67621](https://www.figma.com/design/5yXrB09CMVaqf3V343o3yZ/Website-%7C-TechBBQ--Copy-?node-id=7156-67621), [1024 7141:66832](https://www.figma.com/design/5yXrB09CMVaqf3V343o3yZ/Website-%7C-TechBBQ--Copy-?node-id=7141-66832)
 * - About Us (3 columns from tablet): [768 4628:15264](https://www.figma.com/design/5yXrB09CMVaqf3V343o3yZ/Website-%7C-TechBBQ--Copy-?node-id=4628-15264), [1024 4628:15076](https://www.figma.com/design/5yXrB09CMVaqf3V343o3yZ/Website-%7C-TechBBQ--Copy-?node-id=4628-15076)
 * - Volunteering (2 columns from desktop): [1440 703:2195](https://www.figma.com/design/5yXrB09CMVaqf3V343o3yZ/Website-%7C-TechBBQ--Copy-?node-id=703-2195)
 * - North Star Pitch Who Can Apply: [1440 7164:70731](https://www.figma.com/design/5yXrB09CMVaqf3V343o3yZ/Website-%7C-TechBBQ--Copy-?node-id=7164-70731)
 *
 * Grid breakpoints (default): mobile + tablet = 1 column; desktop (1024+) = grid_columns.
 * About Us overrides tablet via .techbbq-page-info-cards--tablet-cols-3.
 */

.techbbq-page-info-cards .techbbq-text-with-cards {
	--techbbq-text-with-cards-gap: 48px;
	--techbbq-text-with-cards-card-desc-size: var(--techbbq-text-paragraph-m-size);
}

/* Stack cards on internal pages — override theme widget 2-col tablet grid. */
.techbbq-page-info-cards .techbbq-text-with-cards__grid {
	grid-template-columns: minmax(0, 1fr);
	grid-template-rows: none;
	min-height: 0;
}

.techbbq-page-info-cards .techbbq-text-with-cards__card {
	justify-content: flex-start;
	gap: var(--techbbq-space-3);
	min-height: 0;
}

@media (min-width: 768px) {
	.techbbq-page-info-cards .techbbq-text-with-cards {
		--techbbq-text-with-cards-gap: var(--techbbq-space-7);
		--techbbq-text-with-cards-title-size: 42px;
		--techbbq-text-with-cards-desc-size: 20px;
		--techbbq-text-with-cards-card-title-size: var(--techbbq-text-h5-size);
		--techbbq-text-with-cards-card-desc-size: var(--techbbq-text-paragraph-m-size);
	}

	.techbbq-page-info-cards .techbbq-text-with-cards__card {
		justify-content: space-between;
		gap: 0;
		min-height: 260px;
	}

	.techbbq-page-info-cards--tablet-cols-3 .techbbq-text-with-cards--cols-3 .techbbq-text-with-cards__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.techbbq-page-info-cards .techbbq-text-with-cards--cols-4 .techbbq-text-with-cards__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.techbbq-page-info-cards .techbbq-text-with-cards--cols-4.techbbq-text-with-cards--card-size-compact .techbbq-text-with-cards__card {
		min-height: 256px;
	}
}

@media (min-width: 1024px) {
	.techbbq-page-info-cards .techbbq-text-with-cards--cols-2 .techbbq-text-with-cards__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.techbbq-page-info-cards .techbbq-text-with-cards--cols-3 .techbbq-text-with-cards__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.techbbq-page-info-cards .techbbq-text-with-cards--cols-4 .techbbq-text-with-cards__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}
