.wh-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.wh-steps-grid .wh-highlight-color {
  color: #0F52AF;
}

@media (min-width: 768px) {
  .wh-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.wh-step-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.wh-step-icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wh-step-icon-mask {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wh-step-label {
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
}

.wh-steps-header {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (min-width: 768px) {
    .wh-steps-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
    
    .wh-steps-header-content {
        max-width: 65%;
    }
    
    .wh-steps-header-actions {
        flex-shrink: 0;
    }
}
