.promo-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
.promo-card {
	position: relative;
	flex: 1 1 calc(50% - 15px);
	min-width: 290px;
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
}
.promo-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.promo-image {
	width: 100%;
	height: 240px;
	background-size: cover;
	background-position: center;
	position: relative;
}
.promo-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	background: #68492B;
	color: #ffffff;
	padding: 6px 16px;
	font-weight: bold;
	border-radius: 20px;
	font-size: 14px;
	z-index: 2;
}
.promo-content {
	padding: 25px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.promo-title {
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 12px;
	color: #68492B;
}
.promo-text {
	font-size: 15px;
	color: #555555;
	line-height: 1.6;
	margin-bottom: 20px;
	flex-grow: 1;
}
.promo-text small {
	display: block;
	margin-top: 10px;
	font-size: 12px;
	color: #888888;
	line-height: 1.4;
}
.promo-btn {
	display: inline-block;
	text-align: center;
	background: #68492B;
	color: #ffffff !important;
	padding: 12px 24px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: bold;
	font-size: 15px;
	transition: background 0.2s ease;
	align-self: flex-start;
}
.promo-btn:hover {
	background: #4e341c;
}
@media (max-width: 768px) {
	.promo-card {
		flex: 1 1 100%;
	}
	.promo-grid {
		gap: 20px;
	}
}
