.promotion__card {
	display: flex;
	flex-direction: column;
	gap: 30px;
	padding: 20px;
	border-radius: var(--radius-lg);
	background-color: var(--white-a15);
}

.promotion__card-media {
	border-radius: var(--radius-md);
	overflow: hidden;
}

.promotion__card-image {
	width: 100%;
	transform: scale(1.2);
	aspect-ratio: 4 / 2;
}

.promotion__card-body {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.promotion__time-period {
	font-weight: 600;
/* 	font-size: 20px; */
	font-size: clamp(16px, calc(14.7636px + 0.3636vw), 20px);
	line-height: 1;
	color: var(--white);
	margin-top: 20px;
	margin-bottom: 20px;
	opacity: 0.8;
}


.promotion__card-title {
	font-weight: 700;
/* 	font-size: 28px; */
	font-size: clamp(20px, calc(17.5273px + 0.7273vw), 28px);
	line-height: 1;
	color: var(--white);
	margin-bottom: 10px;
}

.promotion__card-text {
/* 	font-size: 18px; */
	font-size: clamp(15px, calc(14.0727px + 0.2727vw), 18px);
	line-height: 1.2;
	color: var(--white);
}

.promotion__button {
	margin-top: 30px;
}

@media screen and (max-width: 600px) {
	.promotion__card {
		padding: 10px;
		border-radius: 10px;
	}
	.promotion__card-media {
		border-radius: 7px;
	}
}