/**
 * Solution Card Widget base styles.
 */

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
}

.solution-card {
  display: flex;
  flex-direction: column;
}

.solution-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
}

.solution-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.solution-title {
	max-width: 8ch;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 96%;
  letter-spacing: 0%;
  color: #003361;
  margin-bottom: 2rem;
}

.solution-desc {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 132%;
  letter-spacing: 0%;
  color: #828282;
  margin-bottom: 2rem;
}

.solution-btn {
  padding: 0.4rem 2rem;
  font-size: 14px;
  font-weight: 700;
}
