.ge-cbl {
  margin: 0 0 10px;
  background: #fff;
}

.ge-cbl__title {
  margin: 0 0 14px;
  color: #1f2937;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.ge-cbl__grid {
  display: grid;
  grid-template-columns: repeat(var(--ge-cbl-cols-desktop), minmax(0, 150px));
  gap: 10px;
}

.ge-cbl__item {
  display: flex;
  width: 100%;
  max-width: 150px;
  height: 50px;
  max-height: 50px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 3px;
  color: #1f2937;
  text-align: center;
  text-decoration: none;
  border: 1px solid #e5e7eb;
  background: #fff;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.ge-cbl__item:hover,
.ge-cbl__item:focus {
  color: #111827;
  text-decoration: none;
  border-color: #f5a623;
  box-shadow: 0 4px 14px rgba(17, 24, 39, .08);
  transform: translateY(-1px);
}

.ge-cbl__logo-wrap {
  display: flex;
  width: 100%;
  height: 44px;
  max-height: 44px;
  align-items: center;
  justify-content: center;
}

.ge-cbl__logo {
  display: block;
  width: auto;
  max-width: 142px;
  height: auto;
  max-height: 44px;
  object-fit: contain;
}

.ge-cbl__name {
  display: block;
  width: 100%;
  overflow-wrap: anywhere;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
}

.ge-cbl__count {
  color: #6b7280;
  font-weight: 400;
}

@media (max-width: 991px) {
  .ge-cbl__grid {
    grid-template-columns: repeat(var(--ge-cbl-cols-tablet), minmax(0, 150px));
  }
}

@media (max-width: 575px) {
  .ge-cbl--hide-mobile {
    display: none;
  }

  .ge-cbl {
    padding: 12px;
  }

  .ge-cbl__grid {
    grid-template-columns: repeat(var(--ge-cbl-cols-mobile), minmax(0, 150px));
    gap: 10px;
  }

  .ge-cbl__item {
    height: 50px;
    min-height: 50px;
    max-height: 50px;
    padding: 3px;
  }
}
