/**
 * Life at Pyrotech — intro band (Products-style section-head: title left, copy right) + mosaic.
 */

.site-main .page-life-at-pyrotech {
	max-width: none;
	width: 100%;
	margin: 0;
	padding: 0;
}

/* Hero: title only — same two-line treatment as Our / Products */
.page-life-at-pyrotech .pyrotech-products-hero .heading-common {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.1em;
}

.page-life-at-pyrotech .pyrotech-products-hero .heading-common-light,
.page-life-at-pyrotech .pyrotech-products-hero .heading-common-line--heavy {
	display: block;
}

/* Right column: two paragraphs (same width rules as single .heading-common-desc on Products) */
.life-at-pyrotech-intro .section-head .life-at-pyrotech-intro__desc {
	flex: 1 1 320px;
	max-width: 560px;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.life-at-pyrotech-intro .section-head .life-at-pyrotech-intro__desc .heading-common-desc {
	margin: 0;
}

/* Mosaic section */
.life-at-pyrotech--mosaic {
	padding: clamp(48px, 8vw, 96px) 0 clamp(64px, 10vw, 120px);
	background: #f4f6fa;
}

.life-at-pyrotech__inner {
	max-width: var(--container-max-width);
}

.life-at-pyrotech__mosaic {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	grid-template-rows: 1fr 1fr;
	gap: clamp(14px, 2.5vw, 22px);
	min-height: min(72vw, 520px);
	max-height: 640px;
}

.life-at-pyrotech__cell {
	position: relative;
	margin: 0;
	overflow: hidden;
	border-radius: 14px;
	background: #e5e7eb;
	box-shadow:
		0 1px 2px rgba(15, 23, 42, 0.06),
		0 12px 32px rgba(15, 23, 42, 0.08);
}

.life-at-pyrotech__cell--tall {
	grid-row: 1 / -1;
	min-height: 280px;
}

.life-at-pyrotech__cell img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.life-at-pyrotech__cell--small {
	min-height: 0;
}

@media (max-width: 768px) {
	.life-at-pyrotech__mosaic {
		grid-template-columns: 1fr;
		grid-template-rows: none;
		min-height: 0;
		max-height: none;
	}

	.life-at-pyrotech__cell--tall {
		grid-row: auto;
		min-height: 240px;
		aspect-ratio: 4 / 5;
	}

	.life-at-pyrotech__cell--small {
		min-height: 200px;
		aspect-ratio: 16 / 10;
	}
}
