.los-features {
  background: var(--los-purple-900);
  padding: 24px 0 56px;
}

.los-features__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.los-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.los-feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.los-feature__icon img {
  object-fit: contain;
}

.los-feature__title {
  font-family: var(--los-font-display);
  font-size: 18px;
  line-height: 1.1;
  margin: 0 0 6px;
  color: #fff;
  letter-spacing: 0.5px;
}

.los-feature__desc {
  color: var(--los-text-muted-2);
  font-size: 13px;
  margin: 0;
}

@media (max-width: 900px) {
  .los-features__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .los-feature {
    justify-content: flex-start;
  }
}
