.badge::after {
	align-self: start;
	border-radius: 10px;
	color: #fff;
	display: inline-block;
	font-size: .7em;
	letter-spacing: 1px;
	padding: 0 1em;
	margin-bottom: .5em;
	margin-left: 3em;
	text-transform: uppercase;
}
	.badge--best-seller:after {content:'MAIS VENDIDO'; background:#ff8484}
	.badge--customizable:after {content:'PERSONALIZÁVEL'; background:#3483fa}
	.badge--deal:after {content:'OFERTA'; background:#ff8484}
	.badge--highlight:after {content:'DESTAQUE'; background:#1a73e8}
	.badge--new:after {content:'NOVO'; background:#3483fa}
	.badge--premium:after {content:'LINHA PREMIUM'; background:#d39b39}
	.badge--sale:after {content:'OFERTA'; background:#ff8484}
	.badge--special-price:after {content:'PREÇO ESPECIAL'; background:#ff8484}
.section-cards-listing {
	display: block;
}
.section-cards-listing__container {
    align-items: stretch;
    display: flex;
    flex-flow: row wrap;
    flex-wrap: wrap;
    gap: 2em;
    justify-content: flex-start;

}
	.rowed-fixed .section-cards-listing__container {
		box-sizing: border-box;
		flex-flow: row;
		margin-left: -3em;
		overflow-x: auto;
		padding: 1em 3em;
		scrollbar-width: none;
		width: calc(100% + 6em);
	}
.section-cards-listing__container .card {
	background: #fff;
	box-shadow: 0 8px 16px 0px rgba(0, 0, 0, 0.1);
    border: 1px solid #ffead4;
	border-radius: 18px;
	display: flex;
	flex: 1 1 calc(33% - 2em);
	flex-flow: column;
/*	max-width: calc(35% - 2em);*/
	overflow: hidden;
	min-width: 0;
	padding-bottom: 1em;
	position: relative;
	top: 0;
	transition: all 0.6s ease 0s;
}

	.section-cards-listing__container .card:has(.badge--highlight) {
		flex: 1 1 50%;
/*		max-width: 50%;*/
	}
	.rowed-fixed .section-cards-listing__container .card {
		flex: 1 1 232px;
		min-width: 232px;
	}
	.section-cards-listing__container .card:hover {
		box-shadow: 0 1px 17px 5px rgba(0, 0, 0, 0.2);
		text-decoration: none;
		top: -.25em;
	}
.section-cards-listing__container .card.badge {
	position: absolute;
}
	
.section-cards-listing__container .img {
	flex-flow: column;
	margin-bottom: .5em;
}
.section-cards-listing__container .img__src {
	aspect-ratio: 4 / 3;
	height: unset;
	object-fit: cover;
	width: 100%;
}
.section-cards-listing__container .card__label {
	color: #363636;
	overflow: hidden;
	padding: 0 2em;
}
.section-cards-listing__container .card__price {
	color: var(--wxp-accent);
    font-size: 1.2em;
	padding: 0 1.6em
}
.section-cards-listing__container .card__sumary {
	-webkit-box-orient: vertical;
	display: -webkit-box;
	color: #868686;
	font-size: .75em;
	-webkit-line-clamp: 2;
	line-height: 1.4em;
	overflow: hidden;
	padding: 0.1em 2.6em .4em;
}
	.section-cards-listing__container :is(.img__label, .card__sumary):empty {
		display: none;
	}

@media screen and (max-width: 700px) {
	.rowed-fixed .section-cards-listing__container {
		margin-left: -4em;
		padding: 1em 2em 1em 4em;
		width: calc(100% + 6em);
	}
	.section-cards-listing .card[data-size="1"] {
		flex: 1 1 calc(50% - 2em);
		max-width: 440px;
	}	
}
@media screen and (max-width: 500px) {
	.section-cards-listing__container :is(.card__label, .card__price) {
		font-size: .8em;
		padding: 0 1em;
	}
}
