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

.lh-promo-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, .07);
	transition: transform .25s ease, box-shadow .25s ease;
}

.lh-promo-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 16px 42px rgba(0, 0, 0, .12);
}

.lh-promo-card__media {
	display: block;
	height: 260px;
	overflow: hidden;
	background: #f4f5f5;
}

.lh-promo-card__image,
.lh-promo-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}

.lh-promo-card:hover .lh-promo-card__image,
.lh-promo-card:hover .lh-promo-card__media img {
	transform: scale(1.035);
}

.lh-promo-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 22px;
}

.lh-promo-card__title {
	margin: 0 0 10px;
	font-size: 22px;
	line-height: 1.25;
}

.lh-promo-card__title a {
	color: inherit;
	text-decoration: none;
}

.lh-promo-card__excerpt {
	margin-bottom: 18px;
	color: #666;
}

.lh-promo-card__excerpt > :last-child {
	margin-bottom: 0;
}

.lh-promo-card__count {
	margin-top: auto;
	margin-bottom: 12px;
	font-size: 13px;
	font-weight: 600;
	color: #777;
}

.lh-promo-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	align-self: flex-start;
	margin-top: auto;
	padding: 11px 16px;
	border-radius: 999px;
	background: #97bf39;
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	transition: background-color .2s ease, color .2s ease;
}

.lh-promo-card__button:hover {
	background: #789b2b;
	color: #fff;
}

.lh-promo-card__arrow {
	font-size: 20px;
	line-height: 1;
	transition: transform .25s ease;
}

.lh-promo-card:hover .lh-promo-card__arrow {
	transform: translateX(4px);
}

.lh-promotion-page {
	padding-top: 30px;
	padding-bottom: 60px;
}

.lh-promotion-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
	align-items: center;
	gap: 42px;
	margin-bottom: 48px;
}

.lh-promotion-hero--no-image {
	grid-template-columns: 1fr;
}

.lh-promotion-hero__title {
	margin: 0 0 18px;
	font-size: clamp(36px, 5vw, 64px);
	line-height: 1.05;
}

.lh-promotion-hero__content > :last-child {
	margin-bottom: 0;
}

.lh-promotion-hero__image {
	overflow: hidden;
	border-radius: 20px;
	background: #f4f5f5;
}

.lh-promotion-hero__image img {
	display: block;
	width: 100%;
	height: auto;
}

.lh-promotion-products-title {
	margin-bottom: 24px;
}

.lh-promo-empty {
	padding: 28px;
	border-radius: 12px;
	background: #f5f6f6;
	text-align: center;
}

@media (max-width: 1024px) {
	.lh-promo-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lh-promotion-hero {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.lh-promo-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.lh-promo-card__media {
		height: 220px;
	}

	.lh-promotion-page {
		padding-top: 15px;
	}

	.lh-promotion-hero {
		gap: 24px;
		margin-bottom: 32px;
	}
}

.lh-promo-editor-empty {
	padding: 22px 24px;
	border: 1px dashed #c7cdd3;
	border-radius: 12px;
	background: #f8fafb;
	color: #2c3338;
	line-height: 1.6;
}

.lh-promo-editor-empty a {
	display: inline-block;
	margin-top: 8px;
	font-weight: 700;
}

.lh-promo-card--editor-hidden {
	position: relative;
	outline: 2px dashed rgba(154, 103, 0, .45);
	outline-offset: -2px;
}

.lh-promo-card__editor-note {
	position: absolute;
	z-index: 3;
	top: 12px;
	left: 12px;
	right: 12px;
	padding: 8px 11px;
	border-radius: 8px;
	background: rgba(255, 244, 204, .96);
	box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
	color: #6e4b00;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.35;
}
