/* ==========================================================================
   Powerblanket Main Page — Specific Styles
   Requires: powerblanket-common.css
   ========================================================================== */

/* ---------- Welcome Section ---------- */
.powerblanket .pb-welcome {
	background: #fff;
	padding: 80px 0;
}

.pb-welcome__row {
	display: flex;
	align-items: center;
	gap: 48px;
}

.pb-welcome__text {
	flex: 1;
}

.pb-welcome__title {
	font-size: 38px;
	font-weight: 700;
	color: #da291c;
	letter-spacing: -1.47px;
	line-height: 45.6px;
	margin: 0 0 20px;
}

.pb-welcome__text p {
	font-size: 17px;
	font-weight: 400;
	color: #000;
	line-height: 28.9px;
	max-width: 784px;
	margin: 0;
}

.pb-welcome__image {
	flex-shrink: 0;
}

.pb-welcome__image img {
	width: 420px;
	height: 320px;
	border-radius: 6px;
	object-fit: cover;
	display: block;
}


/* ---------- Innovative Solutions ---------- */
.powerblanket .pb-solutions {
	background: #fff;
	padding: 80px 0;
}

.pb-solutions__header {
	text-align: center;
	margin-bottom: 40px;
}

.pb-solutions__header h2 {
	font-size: 38px;
	font-weight: 700;
	color: #4d4d4f;
	letter-spacing: -1.47px;
	max-width: 818px;
	margin: 0 auto 16px;
}

.pb-solutions__header p {
	font-size: 17px;
	font-weight: 400;
	color: #000;
	line-height: 28.9px;
	max-width: 860px;
	margin: 0 auto;
}

.pb-solutions__subheading {
	font-size: 32px;
	font-weight: 700;
	color: #272727;
	letter-spacing: -1.26px;
	text-align: center;
	margin: 0 0 40px;
}

.pb-solutions__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	column-gap: 24px;
	row-gap: 40px;
}

/* Single Product Tile */
.pb-product {
	text-align: center;
	text-decoration: none;
	color: inherit;
	display: block;
}

.pb-product:hover {
	text-decoration: none;
	color: inherit;
}

.pb-product__img {
	width: 100%;
	aspect-ratio: 1 / 1;
	max-width: 202px;
	margin: 0 auto;
	background: #f3f4f6;
	border-radius: 6px;
	overflow: hidden;
}

.pb-product__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.pb-product:hover .pb-product__img img {
	transform: scale(1.03);
}

.pb-product__label {
	display: block;
	margin-top: 12px;
	font-size: 15px;
	font-weight: 600;
	color: #4d4d4f;
	letter-spacing: -0.5px;
}


/* ---------- Responsive — Main Page Specific ---------- */
/* ---------- Mid-range (991px to 1340px) ---------- */
@media (min-width: 991px) and (max-width: 1340px) {
	.powerblanket .pb-welcome,
	.powerblanket .pb-solutions {
		padding-left: 40px;
		padding-right: 40px;
	}
}

@media (max-width: 992px) {
	.pb-welcome__row {
		flex-direction: column;
		gap: 32px;
	}

	.pb-welcome__image img {
		width: 100%;
		height: auto;
		max-width: 420px;
	}

	.pb-welcome__title {
		font-size: 32px;
		line-height: 40px;
	}

	.pb-solutions__grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.pb-solutions__header h2 {
		font-size: 32px;
	}

	.pb-solutions__subheading {
		font-size: 26px;
	}
}

@media (max-width: 768px) {
	.powerblanket .pb-welcome {
		padding: 48px 0;
	}

	.pb-welcome__title {
		font-size: 26px;
		line-height: 34px;
	}

	.pb-welcome__text p {
		font-size: 15px;
		line-height: 26px;
	}

	.pb-welcome__image img {
		width: 100%;
		max-width: 100%;
		height: auto;
	}

	.powerblanket .pb-solutions {
		padding: 48px 0;
	}

	.pb-solutions__header h2 {
		font-size: 26px;
	}

	.pb-solutions__subheading {
		font-size: 22px;
	}

	.pb-solutions__grid {
		grid-template-columns: repeat(2, 1fr);
		column-gap: 16px;
		row-gap: 24px;
	}

	.pb-product__img {
		max-width: 160px;
	}

	.pb-product__label {
		font-size: 13px;
	}
}
