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

.caec-card {
	--caec-bg: #fff3e8;
	width: 100%;
	overflow: hidden;
	background: var(--caec-bg);
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 10px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.10);
}

.caec-card,
.caec-card * {
	box-sizing: border-box;
}

.caec-card__image {
	width: calc(100% - 32px);
	height: 192px;
	margin: 16px 16px 0;
	overflow: hidden;
	background: #d6dde2;
}

.caec-card__image img,
.caec-card__image-placeholder,
.caec-card__image-placeholder svg {
	display: block;
	width: 100%;
	height: 100%;
}

.caec-card__image img {
	object-fit: cover;
}

.caec-card__image-placeholder {
	color: #52616b;
}

.caec-card__content {
	padding: 22px 28px;
}

.caec-card__title {
	margin: 0 0 8px;
	font-size: 22px;
	line-height: 1.05;
	font-weight: 700;
	color: #111;
}

.caec-card__description {
	margin: 0 0 22px;
	font-size: 16px;
	line-height: 1.45;
	color: #292929;
}

.caec-card__description > *:first-child {
	margin-top: 0;
}

.caec-card__description > *:last-child {
	margin-bottom: 0;
}

.caec-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.caec-card__price {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 24px;
	line-height: 1;
	font-weight: 700;
	color: #111;
}

.caec-card__price-regular,
.caec-card__price-sale {
	color: inherit;
}

del.caec-card__price-regular {
	font-size: .72em;
	font-weight: 400;
	opacity: .65;
}

.caec-card__price-sale {
	text-decoration: none;
}

.caec-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 40px;
	padding: 10px 14px;
	border-radius: 3px;
	background: #ff5a1f;
	color: #111;
	text-decoration: none;
	font-size: 14px;
	line-height: 1;
	font-weight: 700;
	transition: background-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.caec-card__button:hover,
.caec-card__button:focus {
	background: #d9440f;
	color: #fff;
	transform: translateY(-1px);
	text-decoration: none;
}

.caec-card__button svg {
	width: 1em;
	height: 1em;
}

.caec-editor-notice {
	padding: 18px;
	border: 1px dashed #b6b6b6;
	border-radius: 6px;
	background: #fafafa;
	color: #444;
	font-size: 13px;
	line-height: 1.5;
	text-align: center;
}

@media (max-width: 480px) {
	.caec-card__footer {
		align-items: flex-start;
		flex-direction: column;
	}

	.caec-card__button {
		width: 100%;
	}
}
