.customer-case-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.customer-case-group {
  min-width: 0;
  padding: 24px;
  background: #fff;
  border: 1px solid #dce4e7;
  border-top: 3px solid #e7592b;
}

.customer-case-group > div > span {
  display: block;
  margin-bottom: 7px;
  color: #b74220;
  font-size: 13px;
  font-weight: 700;
}

.customer-case-group h3 {
  margin: 0;
  color: #18333e;
  font-size: 19px;
  line-height: 1.35;
}

.customer-case-group ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.customer-case-group li {
  padding: 7px 10px;
  color: #263e47;
  background: #f0f4f5;
  border-left: 2px solid #8ba0a8;
  font-size: 13px;
  line-height: 1.35;
}

@media (max-width: 760px) {
  .customer-case-groups {
    grid-template-columns: 1fr;
  }

  .customer-case-group {
    padding: 20px;
  }
}
