/* Root container */
.brand-wrapper {
  font-family: 'Montserrat', sans-serif;
  padding: 1rem;
}

/* Headings */
.brand-heading {
  font-size: 2rem;
  font-weight: 900;
  color: #455581;
  margin-bottom: 1rem;
}

.brand-subheading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #d2a333;
  margin-top: 2rem;
}

.brand-letter {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 2rem;
}

/* Brand Grid */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.brand-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.brand-block:hover {
  transform: scale(1.05);
}

.brand-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 1px solid #ddd;
  padding: 10%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #222;
}

/* Responsive layout */
@media (max-width: 768px) {
  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
