.products-solutions {
	background: #f4f5f6;
	padding: 96px 24px 56px 24px !important;
}

.products-solutions__inner {
	max-width: 1200px;
	margin: 0 auto;
}

.products-solutions__eyebrow-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.products-solutions__eyebrow-bar {
	display: inline-block;
	width: 40px;
	height: 3px;
	background: #da291c;
}

.products-solutions__eyebrow {
	font-family: "Oswald", system-ui, sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #da291c;
	margin: 0;
}

.products-solutions__heading {
	font-family: "Oswald", system-ui, sans-serif;
	font-weight: 700;
	font-size: 48px;
	line-height: 1;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #111c24;
	margin: 0 0 16px;
}

.products-solutions__intro {
	font-family: "Montserrat", system-ui, sans-serif;
	font-size: 18px;
	line-height: 1.55;
	color: #4a5568;
	max-width: 1120px;
	margin: 0 0 48px;
}

.products-solutions__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.product-card {
	position: relative;
	display: block;
	height: 320px;
	border-radius: 2px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
	text-decoration: none;
	border-bottom: 3px solid #da291c;
}

.product-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(17, 28, 36, 0.95) 0%,
		rgba(17, 28, 36, 0.55) 60%,
		rgba(17, 28, 36, 0.2) 100%
	);
}

.product-card__content {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 24px;
}

.product-card__title {
	font-family: "Oswald", system-ui, sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.25;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #ffffff;
	margin: 0 0 8px;
}

.product-card__description {
	font-family: "Montserrat", system-ui, sans-serif;
	font-size: 14px;
	line-height: 1.4;
	color: #e5e7eb;
	margin: 0 0 12px;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height 0.25s ease, opacity 0.2s ease, margin-bottom 0.25s ease;
}

.product-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	border-radius: 4px;
	background: #da291c;
	font-family: "Montserrat", system-ui, sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #ffffff;
	transition: gap 0.25s ease, padding-right 0.25s ease;
}

.product-card__cta-icon {
	display: inline-block;
	width: 13px;
	height: 13px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 13' fill='none'%3E%3Cpath d='M2.71 6.5H10.29' stroke='white' stroke-width='1.08' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.5 2.71L10.29 6.5L6.5 10.29' stroke='white' stroke-width='1.08' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}

.product-card:hover .product-card__description,
.product-card:focus-visible .product-card__description {
	max-height: 80px;
	opacity: 1;
	margin-bottom: 16px;
}

.product-card:hover .product-card__cta,
.product-card:focus-visible .product-card__cta {
	gap: 16px;
	padding-right: 28px;
}

.products-solutions__footer {
	display: flex;
	justify-content: center;
	margin-top: 48px;
}

.products-solutions__view-all {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 16px 32px;
	border-radius: 4px;
	background: #da291c;
	font-family: "Montserrat", system-ui, sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #ffffff;
	text-decoration: none;
	transition: filter 0.2s ease;
}

.products-solutions__view-all:hover,
.products-solutions__view-all:focus-visible {
	filter: brightness(0.9);
	color: #ffffff;
}

.products-solutions__view-all-icon {
	display: inline-block;
	width: 16px;
	height: 16px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 13' fill='none'%3E%3Cpath d='M2.71 6.5H10.29' stroke='white' stroke-width='1.08' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.5 2.71L10.29 6.5L6.5 10.29' stroke='white' stroke-width='1.08' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}

@media (max-width: 992px) {
	.products-solutions__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.products-solutions {
		padding: 56px 16px !important;
	}

	.products-solutions__heading {
		font-size: 34px;
	}
}

@media (max-width: 600px) {
	.products-solutions__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.product-card__description {
		max-height: none;
		opacity: 1;
		margin-bottom: 16px;
		overflow: visible;
	}
}
