/* full-bleed row */
.badge-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* MOBILE sizes (<=639px) */
.badge-item {
  width: 56px;
  box-sizing: border-box;
  padding: 4px;
  border-radius: 8px;
}

.badge-img {
  width: 100%;
  height: 36px;
  object-fit: contain;
}

.badge-label {
  display: none;
}

/* DESKTOP sizes (>=640px) */
@media (min-width: 640px) {
  .badge-row {
    gap: 10px;
  }

  .badge-item {
    width: 120px;
    padding: 8px;
    border-radius: 10px;
  }

  .badge-img {
    height: 64px;
    margin-bottom: 4px;
  }

  .badge-label {
    display: block;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/* keep your raised look */
.badge-raised {
  position: relative;
  isolation: isolate;
  background: #fff;
  box-shadow: 0 12px 22px rgba(15, 23, 42, .10), 0 4px 10px rgba(15, 23, 42, .06);
  outline: 1px solid rgba(15, 23, 42, .06);
  border-radius: 12px;
}

.badge-raised::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .95), inset 0 -1px 0 rgba(15, 23, 42, .08);
}

#ourvalues>.container {
  padding-left: 0;
  padding-right: 0;
  max-width: 100%;
}