.patient-step-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  align-items: flex-start;
}

.patient-step-icon {
  position: relative;
  display: inline-grid;
  width: 56px;
  height: 56px;
  margin-bottom: 1.35rem;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(0, 157, 219, 0.24);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(229, 249, 255, 0.98), rgba(188, 229, 246, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 12px 28px rgba(6, 57, 98, 0.1);
  color: #0876ad;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
}

.patient-step-icon::after {
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(0, 157, 219, 0.12);
  border-radius: 10px;
  content: "";
  pointer-events: none;
}

.patient-step-icon-list {
  padding-right: 0.1em;
  font-size: 1.5rem;
}

.patient-step-icon-write {
  padding-bottom: 0.08em;
  font-size: 1.55rem;
}

.patient-step-icon-check {
  font-size: 1.8rem;
}

.patient-step-icon-care {
  font-size: 1.55rem;
}

.patient-step-card h3 {
  margin-bottom: 0.7rem;
}

@media (max-width: 640px) {
  .patient-step-card {
    min-height: 0;
  }

  .patient-step-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 1.1rem;
    border-radius: 15px;
  }
}