.wcofs { --wcofs-cols: 4; }
.wcofs-title { line-height: 1.2; margin: 0 0 12px; }
.wcofs-desc { line-height: 1.9em; font-size: 16px; margin: 0 0 24px; }

.wcofs-grid {
  display: flex;
  grid-template-columns: repeat(var(--wcofs-cols), minmax(0, 1fr));
  align-items: start;
  gap: 70px;
  position: relative;
}

.wcofs-item {
  /*display: grid;
  align-content: start;
  gap: 8px;*/
}

.wcofs-item-value {
  font-size: 60px;
  line-height: 1;
  font-weight: 600;
}

.wcofs-item-label {
  font-size: 16px;
  line-height: 1.9;
  opacity: 0.9;
  margin-top:13px;
}

.wcofs-has-dividers {
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
}

.wcofs-divider {
  display: block;
  width: 48px;
  background: #fff; 
  opacity: 1;
  height: 1px;
  align-self: stretch;
  margin-top: 13px;
}

.wcofs-item-card{
  width: fit-content;
}

@media (max-width: 1024px) {
  .wcofs { --wcofs-cols: 2; }
}

@media (max-width: 640px) {
  .wcofs { --wcofs-cols: 1; }
  .wcofs-divider { display: none; }
  .wcofs-grid {
    flex-wrap: wrap;
    justify-content: space-around;
  }
}
