.brands-page {
  background: #f8fafc;
}
.brand-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
}
.brand-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 28px;
  background: #fff;
  border-bottom: 1px solid #eef2f7;
}
.brand-logo-wrap img {
  width: 100%;
  height: 124px;
  object-fit: contain;
}
.brand-card-body {
  padding: 22px;
}
.brand-card-body h2 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #152f57;
}
.brand-card-body p {
  margin: 0;
  color: #64748b;
  line-height: 1.65;
}
