ul.replaced { display: flex; flex-direction: column; gap: 0.5rem; li { width: 100%; display: flex; align-items: center; justify-content: center; gap: 1rem; padding: 0; .talent { width: 100%; } } li:not(:first-child) { position: relative; &::before { content: ''; position: absolute; display: block; box-sizing: border-box; border: 0.0625rem solid var(--base-text-color); border-left: none; right: 0; top: -1rem; margin-right: -1rem; width: 0.625rem; height: 1.5rem; } &::after { content: ''; position: absolute; display: block; box-sizing: border-box; border: 0.0625rem solid var(--base-text-color); border-right: none; border-bottom: none; right: 0; top: 0.5rem; margin-right: -0.6875rem; margin-top: -0.03125rem; width: 0.375rem; height: 0.375rem; transform: rotate(-45deg); transform-origin: 0 0; } } }