<style>
.brand-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.brand-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid #e8e0d0;
  border-radius: 12px;
  background: #faf8f4;
  text-decoration: none;
  color: inherit;
  transition: background 0.18s, border-color 0.18s, box-shadow 0.18s;
  cursor: pointer;
}

.brand-card:hover {
  background: #fff8ec;
  border-color: #c9a84c;
  box-shadow: 0 2px 12px rgba(201,168,76,0.12);
}

.brand-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #f0e8d0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  color: #b8882a;
}

.brand-card-body {
  flex: 1;
  min-width: 0;
}

.brand-card-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.brand-card-desc {
  font-size: 0.82rem;
  color: #888;
  line-height: 1.4;
}

.brand-card-arrow {
  color: #c9a84c;
  font-size: 1.1rem;
  flex-shrink: 0;
  opacity: 0.7;
  transition: transform 0.18s, opacity 0.18s;
}

.brand-card:hover .brand-card-arrow {
  transform: translateX(4px);
  opacity: 1;
}    
</style>