.product-ads-item {
	flex: 0 0 100%;
	display: flex;
	flex-flow: column;
	padding: 20px;
	border-radius: 28px;
	background-color: $color-green;
	background-size:
		auto 100%,
		cover;
	background-repeat: no-repeat, no-repeat;
	background-position:
		bottom right,
		bottom right;
	background-image: url('/images/product-ads/mobile/car.png'), url('/images/product-ads/mobile/bg.png');
	overflow: hidden;
	box-sizing: border-box;

	@include retina {
		background-image: url('/images/product-ads/mobile/car@2x.png'), url('/images/product-ads/mobile/bg@2x.png');
	}

	@include mobile {
		aspect-ratio: 328 / 161;
	}

	@include desktop {
		padding: 24px;
		border-radius: 32px;
		flex: 0 0 calc(100% / 3 - 40px / 3);
		background-size: contain, cover;
		background-image: url('/images/product-ads/desktop/car.png'), url('/images/product-ads/desktop/bg.png');

		@include retina {
			background-image: url('/images/product-ads/desktop/car@2x.png'), url('/images/product-ads/desktop/bg@2x.png');
		}
	}
}

.product-ads-item__title {
	max-width: 198px;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: $color-white;

	@include desktop {
		font-size: 24px;
		max-width: 249px;
	}
}

.product-ads-item__desc {
	margin-top: 10px;
	font-size: 16px;
	line-height: 18px;
	color: $color-white;

	@include mobile {
		display: none;
	}
}

.product-ads-item__label {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	gap: 6px;
	color: $color-white;
	margin-top: auto;

	svg {
		width: 24px;
		height: 24px;
	}

	span {
		font-size: 14px;
		font-weight: 500;
		line-height: 16px;
	}

	@include desktop {
		margin-top: 20px;

		span {
			font-size: 16px;
			line-height: 18px;
		}
	}
}
