.steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--e-global-color-6606447);
    border: 1px solid var(--e-global-color-6606447);
    border-radius: 10px;
    overflow: hidden;
}

.step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 2rem 1.75rem;
    background: var(--e-global-color-text);
    transition: background 180ms ease, transform 180ms ease;
    position: relative;
}

.step::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--e-global-color-d49ac81);
    transition: width .25s ease;
}

.step:hover {
    background: #fffaf5;
}

.step:hover::after {
    width: 3px;
}

.step-n {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--e-global-color-435bebe);
    color: var(--e-global-color-d49ac81);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    transition: background .2s ease, color .2s ease;
}

.step:hover .step-n {
    background: var(--e-global-color-d49ac81);
    color: white;
}

.step .step-title {
    font-size: 1.2rem;
    margin-bottom: .5rem;
    /* color: var(--text); */
}

.step p {
    font-size: .9rem;
}



/* Why List */
.why-list {
    counter-reset: why-counter;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--e-global-color-6606447);
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 900px) {

    .steps,
    .why-list {
        grid-template-columns: 1fr;
    }
}

.why-item {
    padding: 1.75rem;
    background: white;
    border-bottom: 1px solid var(--e-global-color-6606447);
    border-right: 1px solid var(--e-global-color-6606447);
    transition: background .18s ease;
    counter-increment: why-counter;
    position: relative;
    height: 260px;
    display: flex;
    flex-direction: column;
}

.why-item::before {
    content: counter(why-counter, decimal-leading-zero);
    display: block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--e-global-color-d49ac81);
    margin-bottom: .65rem;
    font-family: "Inter", sans-serif;
}

.why-item:hover {
    background: #fffcf8;
}

.why-item:nth-child(2n) {
    border-right: none;
}

.why-item:nth-child(n+3) {
    border-bottom: none;
}

.why-item h3 {
    font-size: 2rem;
    margin-bottom: .45rem;
    /* color: var(--text); */
    height: 80px;
}

.why-item p {
    font-size: .9rem;
}