.solution-card-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.solution-icon {
  width: 66px;
  height: 66px;
  border: 1px solid #3b4248;
  background: linear-gradient(145deg, #1c2024, #131619);
  display: grid;
  place-items: center;
  transition: border-color .25s, background .25s, transform .25s;
}

.solution-icon svg {
  width: 38px;
  height: 38px;
  stroke: var(--yellow);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-card:hover .solution-icon {
  border-color: var(--yellow);
  background: #211f17;
  transform: translateY(-3px);
}

.solution-card h3 {
  margin-top: 24px;
}

@media (width <= 760px) {
  .solution-icon {
    width: 58px;
    height: 58px;
  }

  .solution-icon svg {
    width: 33px;
    height: 33px;
  }

  .solution-card-head {
    gap: 15px;
  }
}
