  .stepList-item {
	 border-top: none;
	 padding: 1.25rem 0 0.25rem;
}
 .stepList-item:last-child {
	 border-bottom: none;
}
 .stepList-item-content {
	 position:relative;
	 display: flex;
	     padding-left: 0;
}
.stepList-item-content::before {
    content: counter(step-list-counter);
    display: block;
    background-color: #fdb814;
    height: 2rem;
    width: 2rem;
    line-height: 2.1rem;
    text-align: center;
    font-size: 1.5rem;
    color: var(--gfColors-navy);
    border-radius: 50%;
    font-family: sans-serif;
    margin-right: 1rem;
    font-weight: normal;
    flex-shrink: 0;
}

/*lightbulb icon*/
.lightbulb-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem; /* Space between image and text */
}

.lightbulb-icon img {
  height: 1em; /* Matches text size */
  width: auto;
  display: block;
}

/*left lines on navy tile block*/
.u-gold-left.slate-left {
    border-left: 2px solid var(--gfColors-slate100);
    padding-left: 1rem;
}
