/* ============ DEFINITION SECTION ============ */
.definition {
  background: #fff;
  padding: 64px 0 80px;
}

.definition__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 16px;
  align-items: start;
}

.definition__text p {
  font-size: 14.9px;
  line-height: 1.625;
  color: var(--text-body);
  margin-bottom: 16px;
}

.definition__text em {
  font-style: italic;
}

.key-facts {
  border-radius: 16px;
  padding: 28px;
}

.key-facts--cyan {
  background: #d4fbfc;
}

.key-facts--orange {
  background: var(--orange-bg);
}

.key-facts__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--purple-deep);
  margin-bottom: 20px;
}

.key-facts__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.key-facts .check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.4px;
  line-height: 1.625;
  color: #404057;
}

.key-facts .check-icon {
  width: 20px;
  height: 20px;
  background: var(--red-btn);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.key-facts .check-icon::after{
	display: none;
}

@media (max-width: 860px) {
  .definition__layout {
    grid-template-columns: 1fr;
  }
}
