.pyrotech-solutions {
	background: #fff;
	padding: 78px 0 60px;
}

.pyrotech-solutions .section-inner {
	max-width: 900px;
}

.pyrotech-solutions .heading-common {
	color: #111;
	max-width: none;
}

.pyrotech-solutions .heading-common-light {
	font-weight: 400;
	margin: 0;
}

.pyrotech-solutions .heading-common-line--heavy {
	font-weight: 900;
}

.pyrotech-solutions .heading-common-desc {
	color: #333;
	line-height: 160%;
	max-width: 720px;
}

/* Full-bleed carousel (same breakout as precision) */
/* Footer: nav below full-bleed carousel (aligned with section-inner) */
.pyrotech-solutions__footer {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 32px;
	width: 100%;
}

.pyrotech-solutions__nav {
	display: flex;
	gap: 12px;
	flex-shrink: 0;
}

.pyrotech-solutions__nav-btn {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #1a232c;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s ease;
}

.pyrotech-solutions__nav-btn:hover {
	opacity: 0.9;
}

.pyrotech-solutions__nav-btn svg {
	width: 24px;
	height: 24px;
}

.pyrotech-solutions__nav-btn path {
	stroke: #1a232c;
}

.pyrotech-solutions__carousel-wrap {
	position: relative;
	margin-bottom: 0;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding-left: 0;
	padding-right: 0;
	box-sizing: border-box;
	display: block;
}

.pyrotech-solutions .swiper.pyrotech-solutions-swiper {
	overflow: hidden;
	padding: 4px 0;
	width: 100%;
	max-width: 100%;
	display: block;
}

/* One horizontal row only — theme/block CSS often sets flex-wrap on flex children */
.pyrotech-solutions .swiper-wrapper {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: stretch;
}

/*
 * When all slides fit (watchOverflow → isLocked), center the row.
 * Swiper 11 may not add .swiper-lock on the root; carousels.js toggles .pyrotech-solutions--locked.
 * When unlocked (carousel scrolls), keep default flex-start so translate works from the left edge.
 */
.pyrotech-solutions-swiper.pyrotech-solutions--locked .swiper-wrapper {
	justify-content: center !important;
}

.pyrotech-solutions-swiper.swiper-horizontal .swiper-wrapper {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: stretch;
}

/* Swiper default .swiper-slide { width: 100% } — last slide can eat remaining row width on wide screens */
.pyrotech-solutions-swiper .swiper-slide {
	flex: 0 0 302px !important;
	width: 302px !important;
	min-width: 302px !important;
	max-width: 302px !important;
	height: auto;
	box-sizing: border-box;
	/* Block theme CSS often sets .swiper-slide to flex; that + flex children on <a> can break the row */
	display: block !important;
}

.pyrotech-solutions__card {
	width: 302px !important;
	max-width: 302px !important;
	height: 361px;
	min-height: 361px;
	border-radius: 14px;
	padding: 0;
	box-sizing: border-box;
	/* Block + absolute children avoids theme link/flex rules fighting Swiper */
	display: block !important;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
	text-decoration: none;
}

.pyrotech-solutions__card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
	border-radius: 14px;
	z-index: 1;
}

.pyrotech-solutions__card-label {
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: 24px;
	z-index: 2;
	
	font-weight: 600;
	font-size: 18px;
	
	
	text-transform: uppercase;
	color: #fff;
	margin: 0;
	text-align: left;
}

.pyrotech-solutions-swiper .swiper-slide > a.pyrotech-solutions__card {
	display: block !important;
	width: 302px !important;
	max-width: 302px !important;
	height: 361px;
	min-height: 361px;
	box-sizing: border-box;
}

