.vok-features {
  background: var(--vok-bg);
  border-top: 1px solid var(--vok-border);
  border-bottom: 1px solid var(--vok-border);
  padding: 40px 0;
}

.vok-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vok-features__card {
  display: flex;
  align-items: center;
  gap: 26px;
}

.vok-features__icon {
  flex: 0 0 auto;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vok-features__icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.vok-features__text {
  flex: 1;
  min-width: 0;
}

.vok-features__title {
  font-family: "Luckiest Guy", cursive;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.1;
}

.vok-features__desc {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 13px;
  line-height: 1.4;
  color: #fff;
  margin: 0;
}

@media (max-width: 900px) {
  .vok-features__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
