.kgx-commitment {
  --kgx-commitment-accent: #78be88;
  position: relative;
  margin: 48px auto 0;
  padding: 28px 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(14, 19, 16, 0.92);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.kgx-commitment::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, var(--kgx-commitment-accent), transparent);
  opacity: 0.8;
}

.kgx-commitment--kt,
.kgx-commitment--nt,
.kgx-commitment--tc {
  --kgx-commitment-accent: #6aac77;
}

.kgx-commitment__header {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-bottom: 20px;
}

.kgx-commitment__seal {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--kgx-commitment-accent);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.kgx-commitment__seal svg {
  width: 28px;
  height: 28px;
}

.kgx-commitment__title {
  margin: 0 0 10px;
  color: #f4f6f4;
  font-size: clamp(1.85rem, 1.45rem + 1vw, 2.45rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  text-transform: none;
}

.kgx-commitment__desc {
  color: #c6cdc7;
  font-size: 0.98rem;
  line-height: 1.72;
  max-width: 760px;
}

.kgx-commitment__desc > *:first-child {
  margin-top: 0;
}

.kgx-commitment__desc > *:last-child {
  margin-bottom: 0;
}

.kgx-commitment__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.kgx-commitment__item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.kgx-commitment__item-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--kgx-commitment-accent);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

.kgx-commitment__item-text {
  color: #edf1ee;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.45;
}

@media only screen and (max-width: 1023px) {
  .kgx-commitment__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 767px) {
  .kgx-commitment {
    margin-top: 36px;
    padding: 22px 18px 18px;
  }

  .kgx-commitment__header {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 18px;
  }

  .kgx-commitment__seal {
    width: 42px;
    height: 42px;
  }

  .kgx-commitment__seal svg {
    width: 22px;
    height: 22px;
  }

  .kgx-commitment__title {
    font-size: clamp(1.55rem, 6.8vw, 2rem);
    margin-bottom: 8px;
  }

  .kgx-commitment__desc {
    font-size: 0.95rem;
    line-height: 1.66;
  }

  .kgx-commitment__list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .kgx-commitment__item {
    min-height: 0;
    padding: 12px 14px;
  }

  .kgx-commitment__item-text {
    font-size: 0.95rem;
  }
}
