.ge-cbl {
  margin: 0 0 24px;
  padding: 18px;
  background: #fff;
  border: 1px solid #e5e7eb;
}

.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, 1fr));
  gap: 12px;
}

.ge-cbl__item {
  display: flex;
  min-width: 0;
  min-height: 126px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 10px;
  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: 70px;
  align-items: center;
  justify-content: center;
}

.ge-cbl__logo {
  display: block;
  width: auto;
  max-width: 140px;
  height: auto;
  max-height: 70px;
  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, 1fr));
  }
}

@media (max-width: 575px) {
  .ge-cbl {
    padding: 12px;
  }

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

  .ge-cbl__item {
    min-height: 112px;
    padding: 12px 8px;
  }
}
