.round-linked-brand-products {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  margin: 15px 0;
}
.round-brand-button {
  display: inline-block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #f5f5f5;
  flex-shrink: 0;
  text-decoration: none;
  transition: transform 0.2s;
}
.round-brand-button:hover {
  transform: scale(1.1);
  border: 2px solid #00834e;
}
.round-brand-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.round-brand-button-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 24px;
  color: #ccc;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
