.unimis-productline {
  margin: 0.75rem 0;
}
.unimis-productline__label {
  margin-bottom: 0.375rem;
  font-weight: 600;
}
.unimis-productline__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.unimis-productline__tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  width: 5.25rem;
  padding: 0.375rem 0.25rem;
  border: 1px solid var(--bs-border-color, #dee2e6);
  border-radius: 0.5rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.unimis-productline__tile img {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
  border-radius: 0.375rem;
}
.unimis-productline__name {
  font-size: 0.75rem;
  line-height: 1.2;
}
a.unimis-productline__tile:hover {
  border-color: var(--bs-primary, #0d6efd);
  box-shadow: 0 0 0 1px var(--bs-primary, #0d6efd);
  text-decoration: none;
  color: inherit;
}
.unimis-productline__tile--current {
  border-color: var(--bs-primary, #0d6efd);
  box-shadow: 0 0 0 1px var(--bs-primary, #0d6efd);
}
.unimis-productline__tile--current .unimis-productline__name {
  font-weight: 600;
}
