.problem-title-banner > .col-inner {
  margin-left: unset;
  width: fit-content;
}
.problem-step-head {
  display: flex;
  gap: 12px;
}
.problem-step-head > *:first-child {
  width: fit-content;
  color: #fff;
  opacity: 0.5;
}
.problem-step-head > *:last-child {
  color: #fff;
}

.problem-step-foot > *:first-child {
  color: #0c4594;
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.problem-step-row {
  display: block;
  height: 100%;
}
.problem-step-row > *:last-child {
  position: absolute;
  bottom: 0;
}
.problem-steps{
	gap: 20px;
	display: flex;
	flex-wrap: nowrap;
}

@media screen and (max-width:550px){
	.problem-steps{
		overflow: auto;
	}
	.problem-step {
		max-width: 270px;
		min-width: 270px;
	}
}