.knowledge-section {
  padding: clamp(54px, 4.4vw, 72px) 48px clamp(58px, 4.8vw, 78px);
  color: #edf6f8;
}

.knowledge-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.knowledge-heading {
  margin-bottom: clamp(34px, 3.6vw, 48px);
}

.knowledge-heading .eyebrow {
  color: #6fe3bd;
}

.knowledge-heading p:not(.eyebrow) {
  color: rgba(208, 225, 231, 0.72);
}

.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(129, 165, 176, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.014)),
    rgba(14, 28, 38, 0.62);
  overflow: hidden;
}

.knowledge-item {
  display: grid;
  gap: 12px;
  min-height: 212px;
  padding: 26px 24px;
  border-right: 1px solid rgba(129, 165, 176, 0.14);
  color: inherit;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.knowledge-item:last-child {
  border-right: 0;
}

.knowledge-item:hover,
.knowledge-item:focus-visible {
  background: rgba(111, 227, 189, 0.055);
  outline: none;
  transform: translateY(-2px);
}

.knowledge-item span {
  color: #ffd54d;
  font-size: 12px;
  font-weight: 900;
}

.knowledge-item strong {
  color: #f7fbff;
  font-size: 20px;
  line-height: 1.18;
}

.knowledge-item p {
  margin: 0;
  color: rgba(208, 225, 231, 0.72);
  font-size: 14px;
  line-height: 1.6;
}

.knowledge-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

@media (max-width: 980px) {
  .knowledge-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .knowledge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .knowledge-item:nth-child(2) {
    border-right: 0;
  }

  .knowledge-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(129, 165, 176, 0.14);
  }
}

@media (max-width: 620px) {
  .knowledge-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .knowledge-heading {
    margin-bottom: 32px;
  }

  .knowledge-grid {
    grid-template-columns: 1fr;
  }

  .knowledge-item,
  .knowledge-item:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(129, 165, 176, 0.14);
  }

  .knowledge-item:last-child {
    border-bottom: 0;
  }
}
