/*........................ 
  Brand Box
........................*/
.brand-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  min-height: 120px;            /* височина на кутията */
  padding: 16px 18px;
  border: 1px solid #e5e7eb;    /* светлосив бордер */
  border-radius: 12px;
  background: #fff;

  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

/* Ховър/фокус ефект */
.brand-tile:hover,
.brand-tile:focus-visible {
  border-color: #c7ced6;
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
  transform: translateY(-2px);
  outline: none;
}

.brand-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
  color: #111827;               /* почти черно */
  word-break: break-word;
  text-wrap: balance;           /* по-приятно пренасяне (поддържано от модерни браузъри) */
}

/* По-компактни кутии на много малки екрани */
@media (max-width: 576px) {
  .brand-tile { min-height: 100px; padding: 14px; }
  .brand-title { font-size: .95rem; }
}