.component-what-to-expect > div {
    display: flex;
    flex-direction: column;
}

.component-what-to-expect > div > span {
    padding-top: 1.5em;
    text-align: center;
    padding-bottom: 1em;
    width: 100%;
}

.component-what-to-expect > ul {
    padding: 1.5em;
    list-style: none;
    display: flex;
    flex-direction: column;
    color: var(--foreground-color);
}

.component-what-to-expect > ul > li {
    display: flex;
    gap: 2em;
}

.component-what-to-expect > ul > li > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.component-what-to-expect > ul > li > div:first-child > span {
    color: var(--foreground-color-2);
}

.component-what-to-expect > ul > li > div:first-child > hr {
    border: none;
    background-color: var(--foreground-color-2);
    height: calc(100% - 2em);
    width: 1px;
}

.component-what-to-expect > ul > li > div:last-child {
    display: flex;
    flex-direction: column;
    gap: .5em;
    padding-bottom: 2em;
}

.component-what-to-expect > ul > li:last-child > div:first-child > hr {
    display: none;
}

.component-what-to-expect > ul > li:last-child > div:last-child {
    padding-bottom: 0;
}