.imta-promotion-single {
	width: 100%;
	padding: 32px 16px 56px;
	background: #fff;
}

.imta-promotion-single__article {
	display: grid;
	grid-template-columns: minmax(280px, 355px) minmax(0, 1fr);
	gap: 62px;
	width: min(1170px, 100%);
	margin: 0 auto;
	align-items: start;
}

.imta-promotion-single__article.no-thumbnail {
	grid-template-columns: minmax(0, 820px);
	justify-content: center;
}

.imta-promotion-single__media {
	overflow: hidden;
	border-radius: 6px;
	background: #f7f7f7;
}

.imta-promotion-single__media img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.imta-promotion-single__body {
	min-width: 0;
	padding-top: 16px;
}

.imta-promotion-single__title {
	margin: 0;
	color: #4a4f57;
	font-size: 34px;
	font-weight: 400;
	line-height: 1.45;
	letter-spacing: 0;
	text-transform: uppercase;
}

.imta-promotion-single__divider {
	width: 100%;
	height: 1px;
	margin: 8px 0 24px;
	background: #d9d9d9;
}

.imta-promotion-single__content {
	color: #0f1720;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.45;
}

.imta-promotion-single__content p {
	margin: 0 0 16px;
}

.imta-promotion-single__content p:last-child {
	margin-bottom: 0;
}

.imta-promotion-single__content a {
	color: #006fd6;
	text-decoration: none;
}

.imta-promotion-single__content a:hover {
	text-decoration: underline;
}

.imta-promotion-single__content img {
	max-width: 100%;
	height: auto;
}

.imta-promotion-products {
	width: min(1170px, 100%);
	margin: 56px auto 0;
}

.imta-promotion-products__title {
	margin: 0 0 26px;
	color: var(--primary-color);;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: 0;
	text-align: center;
}

.imta-promotion-products__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.imta-promotion-product-card {
	display: flex;
	flex-direction: column;
	min-height: 360px;
	overflow: hidden;
	background: #fff;
	border: 1px solid #dedede;
	border-radius: 28px;
	cursor: pointer;
	text-align: center;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.imta-promotion-product-card:hover {
	border-color: var(--primary-color);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}

.imta-promotion-product-card:focus-visible {
	outline: 3px solid rgba(255, 121, 0, 0.35);
	outline-offset: 4px;
}

.imta-promotion-product-card__image {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #f7f7f7;
}

.imta-promotion-product-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.imta-promotion-product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: center;
	padding: 10px 14px 22px;
}

.imta-promotion-product-card__title {
	display: -webkit-box;
	min-height: 40px;
	overflow: hidden;
	color: var(--primary-color);;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.25;
	text-decoration: none;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.imta-promotion-product-card__title:hover {
	color: #e86d00;
	text-decoration: none;
}

.imta-promotion-product-card__price {
	margin-top: 10px;
	color: #111;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.2;
}

.imta-promotion-product-card__price del {
	display: block;
	color: #777;
	font-size: 12px;
	font-weight: 600;
}

.imta-promotion-product-card__price ins {
	background: transparent;
	text-decoration: none;
}

.imta-promotion-product-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	margin-top: 18px;
	padding: 0 26px;
	color: #fff;
	background: var(--primary-color);
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
}

.imta-promotion-product-card__button:hover {
	color: #fff;
	background: #e86d00;
	text-decoration: none;
}

@media (max-width: 1024px) {
	.imta-promotion-single__article {
		grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
		gap: 36px;
	}

	.imta-promotion-single__title {
		font-size: 28px;
	}

	.imta-promotion-products__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.imta-promotion-single {
		padding: 20px 14px 40px;
	}

	.imta-promotion-single__article {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.imta-promotion-single__media {
		width: min(420px, 100%);
		margin: 0 auto;
	}

	.imta-promotion-single__body {
		padding-top: 0;
	}

	.imta-promotion-single__title {
		font-size: 24px;
		line-height: 1.35;
	}

	.imta-promotion-single__divider {
		margin: 10px 0 18px;
	}

	.imta-promotion-single__content {
		font-size: 15px;
	}

	.imta-promotion-products {
		margin-top: 36px;
	}

	.imta-promotion-products__title {
		margin-bottom: 18px;
		font-size: 21px;
	}

	.imta-promotion-products__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}

	.imta-promotion-product-card {
		min-height: 0;
		border-radius: 18px;
	}

	.imta-promotion-product-card__body {
		padding: 10px 10px 18px;
	}

	.imta-promotion-product-card__title,
	.imta-promotion-product-card__price {
		font-size: 14px;
	}

	.imta-promotion-product-card__button {
		min-height: 38px;
		margin-top: 14px;
		padding: 0 20px;
		font-size: 14px;
	}
}
