.smw-strategy-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  background-color: #ffffff;
  border-radius: 24px;
  padding: 24px 24px 30px;
  text-decoration: none;
  transition: all 0.3s;
}

.smw-strategy-card.has-link {
  cursor: pointer;
}

.smw-strategy-card-title {
  color: #350F6B;
  font-family: "ObviouslyNarrow" !important;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.3;
  text-transform: uppercase;
  margin: 0;
  transition: color 0.25s ease;
}

.smw-strategy-card-desc {
  color: #350F6B;
  font-family: "NeueMontreal" !important;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  transition: color 0.25s ease;
}

.smw-strategy-card:hover {
  background-color: #7D24FF;
}

.smw-strategy-card:hover .smw-strategy-card-desc,
.smw-strategy-card:hover .smw-strategy-card-title {
  color: #fff;
}

@media (max-width: 1199px) {
  .smw-strategy-card-title {
    font-size: 24px;
  }


}

@media (max-width: 767px) {
  .smw-strategy-card {
    padding: 28px;
    min-height: unset;
  }
}