.mc-shopware-list__items {
  display: grid;
  grid-template-columns: repeat(var(--mc-shopware-columns, 3), minmax(0, 1fr));
  gap: 1.5rem;
}

.mc-shopware-product__image,
.mc-shopware-product__gallery-image {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  height: auto;
}

.mc-shopware-product__media {
  margin: 0 0 1rem;
  min-width: 0;
}

.mc-shopware-product__description {
  max-height: 12rem;
  overflow: hidden;
}

.mc-shopware-product__description ul,
.mc-shopware-product__description ol {
  padding-left: 1.25rem;
  margin: .5rem 0;
}

.mc-shopware-product__teaser,
.mc-shopware-product__feature,
.mc-shopware-product__detail {
  display: flex;
  gap: 1.5rem;
}

.mc-shopware-product__price {
  display: flex;
  gap: .5rem;
  font-weight: 700;
}

.mc-shopware-product__property {
  display: grid;
  grid-template-columns: minmax(8rem, 1fr) 2fr;
  gap: 1rem;
}

@media (max-width: 48rem) {
  .mc-shopware-list__items { grid-template-columns: 1fr; }
  .mc-shopware-product__teaser,
  .mc-shopware-product__feature,
  .mc-shopware-product__detail { flex-direction: column; }
}
