/* assets/src/entries/showroom-entry.css */
.wm-showroom-brand-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 1rem;
}
.wm-showroom-brand {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0.75rem;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1px solid #d8dee8;
  border-radius: 0.75rem;
  box-shadow: 0 0.25rem 1rem rgb(15 23 42 / 8%);
  cursor: pointer;
}
.wm-showroom-brand__cover {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.wm-showroom-brand__identity {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  color: #fff;
  background: rgb(15 23 42 / 82%);
  border-radius: 0.5rem;
}
.wm-showroom-brand__logo {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  background: #fff;
  border-radius: 0.25rem;
}
.wm-showroom-brand__name {
  min-width: 0;
  font-weight: 600;
  line-height: 1.4;
  overflow-wrap: anywhere;
}
.wm-showroom-brand:focus-visible {
  outline: 3px solid #2563eb;
  outline-offset: 3px;
}
.wm-showroom-brand--unavailable {
  opacity: 0.45;
  filter: grayscale(1);
  cursor: not-allowed;
  box-shadow: none;
}
