/*
 * Knowledge overview only.
 * Keeps the existing card language while balancing the three destinations.
 */

.knowledge-overview {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

@media (min-width: 1024px) {
  .knowledge-overview .big-card {
    min-width: 0;
    padding: 36px 32px;
  }

  .knowledge-overview .big-card h2 {
    max-width: 100%;
    font-size: clamp(30px, 2.45vw, 38px);
    white-space: normal;
    overflow-wrap: break-word;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .knowledge-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .knowledge-overview .big-card:last-child {
    width: calc(50% - 12px);
    grid-column: 1 / -1;
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .knowledge-overview {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .knowledge-overview .big-card {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 430px) {
  .knowledge-overview {
    gap: 14px;
  }
}
