.wpbce-feature-strip {
  --wpbce-fs-muted: color-mix(in srgb, var(--wpbce-fs-text), transparent 38%);
  background: var(--wpbce-fs-bg);
  border: 1px solid #1f1d1714;
  border-radius: 8px;
  color: var(--wpbce-fs-text);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  overflow: hidden;
}

.wpbce-feature-strip *,
.wpbce-feature-strip *::before,
.wpbce-feature-strip *::after {
  box-sizing: border-box;
}

.wpbce-fs-item {
  align-items: center;
  display: flex;
  gap: 14px;
  min-height: 72px;
  padding: 14px 22px;
}

.wpbce-fs-item + .wpbce-fs-item {
  border-left: 1px solid rgba(31, 29, 23, 0.08);
}

.wpbce-fs-item i {
  color: var(--wpbce-fs-text);
  flex: 0 0 auto;
  font-size: 28px;
  line-height: 1;
}

.wpbce-fs-item strong,
.wpbce-fs-item span {
  display: block;
}

.wpbce-fs-item strong {
  color: var(--wpbce-fs-text);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.wpbce-fs-item span {
  color: var(--wpbce-fs-muted);
  font-size: 13px;
  line-height: 1.3;
  margin-top: 4px;
}

@media (max-width: 1024px) {
  .wpbce-feature-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wpbce-fs-item + .wpbce-fs-item {
    border-left: 0;
  }

  .wpbce-fs-item:nth-child(2n) {
    border-left: 1px solid rgba(31, 29, 23, 0.08);
  }

  .wpbce-fs-item:nth-child(n + 3) {
    border-top: 1px solid rgba(31, 29, 23, 0.08);
  }
}

@media (max-width: 640px) {
  .wpbce-feature-strip {
    grid-template-columns: 1fr;
  }

  .wpbce-fs-item,
  .wpbce-fs-item:nth-child(2n),
  .wpbce-fs-item:nth-child(n + 3) {
    border-left: 0;
    border-top: 1px solid rgba(31, 29, 23, 0.08);
  }

  .wpbce-fs-item:first-child {
    border-top: 0;
  }
}
