/**
 * Manufacturer (product_brand) filter — show full brand logos, uncropped.
 *
 * Blocksy's .ct-media-container forces a square placeholder (:before
 * padding-bottom) and object-fit: cover, which crops the wide brand
 * logo images attached to product_brand terms. Constrain to a fixed
 * slot and letterbox the logo instead. (Task: 86ey6h6m5, Jayr QA round 3)
 */
.ct-filter-widget .ct-filter-item .ct-media-container {
	width: 60px;
	flex: 0 0 60px;
}

.ct-filter-widget .ct-filter-item .ct-media-container:before {
	content: none;
}

.ct-filter-widget .ct-filter-item .ct-media-container img {
	position: static;
	aspect-ratio: auto !important;
	width: 100%;
	height: auto;
	max-height: 26px;
	object-fit: contain;
}
