.list__item {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.list__time {
    color: var(--red);
    width: 25%;
    font-weight: bold;
    font-size: 15px;
    white-space: nowrap;
    margin-right: 1em;
}

.list__desc {
    width: 60%;
    border-bottom: 1px solid #484C56;
    color: var(--blue);
    font-size: 15px;
    line-height: 22px;
    padding: 1em;
    position: relative;
}

.border {
    background: #2A2B31;
    width: 3px;
    position: absolute;
    top: 0;
    bottom: -1px;
    left: -8%;
}

.border:after {
    content: "";
    background: #3E414E;
    border: 5px solid #2A2B31;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    margin-top: -9px;
    left: -5px;
    width: 8px;
    height: 8px;
}

.list__item:last-of-type .list__desc {
    border-bottom: none;
}

@media (max-width: 550px) {
    .border {
        left: -5%;
    }
}