.promoparts {
	box-sizing: border-box;
	display: flex;
	gap: 18px;
	align-items: center;
	width: 100%;
	max-width: 760px;
	margin: 1.5em auto;
	padding: 18px;
	border: 1px solid #d8dee4;
	border-radius: 8px;
	background: #fff;
	color: #1f2328;
}

.promoparts--campaign {
	border-color: #f0b429;
	background: #fffdf4;
}

.promoparts--align-left {
	margin-left: 0;
	margin-right: auto;
}

.promoparts--align-center {
	margin-left: auto;
	margin-right: auto;
}

.promoparts--align-right {
	margin-left: auto;
	margin-right: 0;
}

.promoparts--vertical {
	flex-direction: column;
	align-items: stretch;
	max-width: 420px;
}

.promoparts__media {
	flex: 0 0 180px;
	text-align: center;
}

.promoparts__image {
	display: block;
	max-width: 100%;
	height: auto;
	max-height: 220px;
	margin: 0 auto;
	border-radius: 6px;
	object-fit: contain;
}

.promoparts__image-credit {
	margin-top: 6px;
	color: #6a737d;
	font-size: 0.78em;
	line-height: 1.4;
}

.promoparts__body {
	flex: 1 1 auto;
	min-width: 0;
}

.promoparts__title {
	margin: 0 0 8px;
	font-size: 1.08em;
	font-weight: 700;
	line-height: 1.45;
}

.promoparts__description {
	margin: 0 0 14px;
	line-height: 1.75;
}

.promoparts__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 18px;
	border-radius: 6px;
	background: #1168d8;
	color: #fff;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
}

.promoparts__button:hover,
.promoparts__button:focus {
	background: #0b56b3;
	color: #fff;
	text-decoration: none;
}

.promoparts__button-note {
	margin-top: 8px;
	color: #6a737d;
	font-size: 0.86em;
	line-height: 1.5;
}

.promoparts-error {
	margin: 1em 0;
	padding: 10px 12px;
	border-left: 4px solid #d63638;
	background: #fff5f5;
	color: #8a2424;
}

@media (max-width: 640px) {
	.promoparts,
	.promoparts--horizontal {
		flex-direction: column;
		align-items: stretch;
	}

	.promoparts__media {
		flex-basis: auto;
	}

	.promoparts__button {
		width: 100%;
	}
}
