.product-showcase {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

/* ── Hero ── */

.product-showcase__hero-wrap {
	position: relative;
	width: 825px;
	max-width: 100%;
	height: 450px;
	overflow: hidden;
}

.product-showcase__hero-img {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	max-width: 713px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-showcase__hero-front {
	transition: opacity 0.3s ease;
}

/* ── Subtitle ── */

.product-showcase__subtitle {
	font-family: 'Noto Sans Hebrew', 'Noto Sans', sans-serif;
	font-weight: 300;
	font-size: 16px;
	color: #d8dfeb;
	text-align: center;
	text-transform: uppercase;
	width: 100%;
	max-width: 1032px;
	margin: 0 auto;
	padding: 0;
}

.product-showcase__subtitle--mobile {
	display: none;
}

/* ── Grid ── */

.product-showcase__grid {
	display: flex;
	gap: 24px;
	width: 100%;
	max-width: 1032px;
	margin-top: 32px;
}

/* ── Card ── */

.product-showcase__card {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	cursor: pointer;
}

.product-showcase__card-image {
	background: #030b1a;
	border-radius: 8px;
	width: 100%;
	aspect-ratio: 240 / 200;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 3px solid transparent;
	transition: border-color 0.25s ease;
	box-sizing: border-box;
	overflow: hidden;
}

.product-showcase__card.active .product-showcase__card-image {
	border-color: #101826;
}

.product-showcase__card-image img {
	max-width: 70%;
	max-height: 62%;
	object-fit: cover;
}

/* ── Card footer ── */

.product-showcase__card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px;
	direction: rtl;
}

.product-showcase__title {
	font-family: 'Noto Sans Hebrew', 'Noto Sans', sans-serif;
	font-weight: 400;
	font-size: 18px;
	color: #f7f8fa;
	white-space: nowrap;
}

.product-showcase__title-link {
	text-decoration: none;
	color: inherit;
}

.product-showcase__arrow {
	display: inline-flex;
	text-decoration: none;
	line-height: 0;
}

/* ── Responsive ── */

@media (max-width: 1024px) {
	.product-showcase__grid {
		flex-wrap: wrap;
	}

	.product-showcase__card {
		flex: 0 0 calc(50% - 12px);
	}

	.product-showcase__hero-wrap {
		width: 100%;
		height: auto;
		aspect-ratio: 825 / 450;
	}

	.product-showcase__hero-img {
		height: auto;
		max-height: 400px;
	}
}

@media (max-width: 767px) {
	.product-showcase__grid {
		flex-wrap: wrap;
	}

	.product-showcase__card {
		flex: 0 0 calc(50% - 12px);
	}

	.product-showcase__hero-wrap {
		width: 100%;
		height: auto;
		aspect-ratio: 825 / 450;
	}

	.product-showcase__hero-img {
		max-height: 280px;
	}

	.product-showcase__subtitle--desktop {
		display: none;
	}

	.product-showcase__subtitle--mobile {
		display: block;
		font-size: 14px;
		padding: 0 16px;
	}
}
