.mr-sid-brand-list {
  margin: 2rem;
  text-align: center;
  padding: 0 2rem;
}
.brand-list-inline {
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.brand-item {
  position: relative;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.brand-link {
  color: var(--headings);
  text-decoration: none !important;
  &:hover {
    text-decoration: underline !important;
  }
}
.brand-link::after {
  content: '•';
  margin: 0 0.5rem;
  color: var(--headings);
  display: inline-block;
}
.brand-item:last-child .brand-link::after {
  content: '';
  margin: 0;
}
.mr-sid-featured-brands-wrapper {
  width: 100%;
  max-width: 100% !important;
}
.mr-sid-featured-brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 2rem;
  margin: 0 auto;
  width: 95%;
  max-width: 1200px;
  padding: 2rem;
}
.brand-tile {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  text-decoration: none;
  background-color: #f9f9f9;
  border-radius: 0;
  max-width: 100%;
  color: inherit;
}
.brand-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid #fff;
  z-index: 2;
  pointer-events: none;
  transform-origin: center center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.brand-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(36, 36, 36, 0.32);
  transition: background-color 0.3s ease;
  z-index: 1;
}
.brand-tile:hover::before {
  transform: var(--mr-sid-tile-hover, scale(1.04));
}
.brand-tile:hover::after {
  background-color: rgba(36, 36, 36, 0.45);
}
.brand-tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  pointer-events: none;
  z-index: 3;
}
.brand-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.brand-title,
.brand-logo {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  max-width: 90%;
  pointer-events: none;
}
.brand-title {
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.brand-logo {
  max-height: 100px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

@media only screen and (max-width: 768px) {
	.mr-sid-featured-brands-grid {
	  display: flex;
	  flex-direction: column;
	  justify-content: center;
	  width: 100%;
	  gap: 0;
	  padding: 0;
	}
	.brand-item {
	  font-size: 1rem;
	}
	.brand-tile::before {
		display: none;
	}
}