.list {
    list-style: none;
    width: 600px;
    max-width: 90%;
}

.list a {
    text-decoration: none;
    color: var(--dark-blue);
}

.item {
    display: block;
    clear: both;
    counter-increment: list;
    padding-bottom: 4rem;
    font-size: 1.1rem;
    line-height: 1.375;
    position: relative;
}

.item:before {
    font: bold 2.25rem/1 Raleway;
    content: counter(list);
    width: 5rem;
    height: 5rem;
    float: left;
    margin: 0 1.5rem 0.75rem 0;
    color: white;
    background: var(--light-green)
        linear-gradient(
            to bottom right,
            var(--light-green) 25%,
            var(--light-blue)
        );
    text-shadow: 0 0 2px var(--light-green);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    shape-outside: ellipse();
    z-index: 1;
}

.item:after {
    width: 2.5rem;
    height: 2.5rem;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background: var(--light-green);
    z-index: -1;
    border-top-left-radius: 3px;
}

.headline {
    padding: 0rem 0 0 0;
    margin: 0 0 1rem 0;
    font: bold 2rem Raleway;
}
