/* Brands page — a PORT of the design (.local/simoptions.com/Brands.dc.html).
   Declarations are the design's, verbatim; the brand hexes resolve through the
   theme tokens rather than being restated. */

.brands { background: #fff; }

.brands__list { padding: 64px 24px 40px; }
.brands__inner { max-width: 1000px; margin: 0 auto; }

.brands__head { text-align: center; margin-bottom: 44px; }
.brands__head h2 {
  font-size: var(--text-h2);
  font-weight: 500;
  letter-spacing: -.3px;
  margin: 0;
  line-height: 1.15;
  color: var(--ink-800);
}

.brands__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.brands__card {
  display: flex;
  align-items: center;
  gap: 22px;
  text-decoration: none;
  padding: 14px 8px;
}

.brands__logo {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  border-radius: var(--r-md);
  box-shadow: 0 12px 20px 0 rgba(0, 0, 0, .05);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
.brands__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }

.brands__name { font-size: var(--text-h3); font-weight: 500; color: var(--color-primary); }

.brands__dest { padding: 40px 24px 80px; }
.brands__panel {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
  background: var(--tint-1);
  border-radius: var(--r-3xl);
  padding: 56px 30px;
}
.brands__panel h2 {
  font-size: var(--text-h2);
  font-weight: 500;
  letter-spacing: -.3px;
  margin: 0;
  line-height: 1.15;
  color: var(--ink-800);
}
.brands__panel-sub {
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--ink-600);
  margin: 12px 0 0;
  line-height: 1.3;
}

.brands__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.brands__chip {
  text-decoration: none;
  background: #fff;
  border: 1px solid #E6E0F5;
  color: #4A4568;
  font-weight: 600;
  font-size: var(--text-sm);
  padding: 12px 22px;
  border-radius: var(--r-3xl);
}

.brands__cta {
  display: inline-flex;
  align-items: center;
  margin-top: 34px;
  background: var(--so-grad-btn);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: var(--text-md);
  padding: 0 44px;
  height: 50px;
  border-radius: var(--r-3xl);
}

@media (max-width: 760px) {
  .brands__list { padding: 40px 20px 24px; }
  .brands__head h2, .brands__panel h2 { font-size: var(--text-h3); }
  .brands__grid { grid-template-columns: 1fr; gap: 8px; }
  .brands__panel { padding: 36px 20px; border-radius: var(--r-2xl); }
}
