.up-home-products {
	--up-home-products-text: #103a51;
	--up-home-products-accent: #0071bc;
	--up-home-products-badge-bg: #e6f1f9;
	--up-home-products-card-bg: #ffffff;
	font-family: 'Manrope', sans-serif;
	margin: 0 auto;
	max-width: 1217px;
	padding: 0;
	width: 100%;
}

.up-home-products__header {
	align-items: flex-start;
	display: flex;
	gap: 16px;
	justify-content: space-between;
	margin-bottom: 47px;
}

.up-home-products__title {
	color: var(--up-home-products-text);
	font-family: 'Manrope', sans-serif;
	font-size: 36px;
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.4;
	margin: 0;
}

.up-home-products__more {
	align-items: center;
	color: var(--up-home-products-accent);
	display: inline-flex;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 500;
	gap: 12px;
	letter-spacing: 0.24em;
	line-height: 1.1;
	margin-top: 19px;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}

.up-home-products__grid {
	display: grid;
	gap: 32px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.up-home-products__card {
	min-width: 0;
	position: relative;
}

.up-anim-ready .up-home-products__card {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.55s ease, transform 0.55s ease;
}

.up-anim-ready .up-home-products__card.up-anim-in {
	opacity: 1;
	transform: translateY(0);
}

.up-home-products__image-link {
	border-radius: 16px;
	display: block;
	height: 520px;
	min-width: 359px;
	overflow: hidden;
	position: relative;
	text-decoration: none;
	width: 100%;
}

.up-home-products__image-tag,
.up-home-products__image-placeholder {
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.up-home-products__image-placeholder {
	background: linear-gradient(180deg, #dfe7f2 0%, #c7d3e2 100%);
}

.up-home-products__badge {
	align-items: center;
	background: var(--up-home-products-badge-bg);
	border-radius: 8px;
	bottom: 104px;
	color: var(--up-home-products-text);
	display: inline-flex;
	gap: 6px;
	left: 27px;
	min-height: 55px;
	padding: 8px 10px;
	position: absolute;
	z-index: 2;
}

.up-home-products__badge-icon {
	align-items: center;
	display: inline-flex;
	flex: 0 0 auto;
	justify-content: center;
}

.up-home-products__badge-copy {
	display: flex;
	flex-direction: column;
	font-family: 'Manrope', sans-serif;
	line-height: 1;
}

.up-home-products__badge-copy strong {
	font-size: 16px;
	font-weight: 500;
}

.up-home-products__badge-copy small {
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.04em;
}

.up-home-products__content {
	align-items: center;
	background: var(--up-home-products-card-bg);
	border-radius: 8px;
	bottom: 12px;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	left: 27px;
	min-height: 83px;
	padding: 19px 19px 19px 24px;
	position: absolute;
	right: 28px;
	z-index: 2;
}

.up-home-products__copy {
	min-width: 0;
	padding-right: 16px;
}

.up-home-products__category {
	color: var(--up-home-products-accent);
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	margin: 0 0 8px;
}

.up-home-products__name {
	color: var(--up-home-products-text);
	font-family: 'Manrope', sans-serif;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.2;
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.up-home-products__card-arrow {
	align-items: center;
	color: var(--up-home-products-accent);
	display: inline-flex;
	flex: 0 0 auto;
	justify-content: center;
	transform: translateY(2px);
}

@media (max-width: 1199px) {
	.up-home-products__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.up-home-products__image-link {
		height: 440px;
	}

	.up-home-products__title {
		font-size: 32px;
	}
}

@media (max-width: 767px) {
	.up-home-products__header {
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
		margin-bottom: 28px;
	}

	.up-home-products__title {
		font-size: 28px;
	}

	.up-home-products__more {
		font-size: 11px;
		gap: 8px;
		letter-spacing: 0.18em;
		margin-top: 0;
	}

	.up-home-products__grid {
		gap: 20px;
		grid-template-columns: 1fr;
	}

	.up-home-products__image-link {
		height: 480px;
		min-width: 0;
	}

	.up-home-products__badge {
		bottom: 94px;
		left: 16px;
		min-height: 50px;
		padding: 8px;
	}

	.up-home-products__content {
		bottom: 12px;
		left: 16px;
		padding: 16px;
		right: 16px;
	}

	.up-home-products__name {
		font-size: 17px;
	}
}