.brands a {
  outline: none;
}
.brands__tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.brands__tab {
  padding: 10px 25px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  display: inline-block;
  background-color: gray;
}
.brands__tab:hover {
  color: #fff;
}
.brands__tab--active {
  background-color: #ffcc00;
  color: #000;
  border-right: none;
}
.brands__tab--active:hover {
  color: #000;
}
.brands__row {
  border-top: 1px solid #ccc;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.brands__row:last-child {
  border-bottom: 1px solid #ccc;
}
.brands__content {
  flex: 1;
}
.brands__header {
  margin-bottom: 5px;
}
.brands__name {
  color: #0044aa;
  font-weight: bold;
  text-decoration: underline;
  font-size: 16px;
}
.brands__region {
  color: #666;
  font-size: 14px;
}
.brands__description {
  font-size: 14px;
  margin-bottom: 10px;
  color: #000;
  line-height: 1.4;
}
.brands__links {
  font-size: 12px;
  display: flex;
  gap: 15px;
}
.brands__link {
  color: #0044aa;
  text-decoration: none;
}
.brands__link:hover {
  text-decoration: underline;
}
.brands__logo {
  margin-left: 20px;
}
.brands__logo img {
  max-width: 180px;
  max-height: 60px;
  object-fit: contain;
}
