h1 {
    font-size: 2.3rem;
    margin-bottom: .5em;
}

h2 {
    font-size: 2rem;
    line-height: 120%;
    margin-bottom: .5em;
}

.timeline-item {
    padding: 3em 2em 2em;
    margin: 0 32px 0 32px;
    position: relative;
    color: rgba(0, 0, 0, 0.7);
    border-left: 2px solid #ec5800;
}
.timeline-item::before {
    content: attr(date-is);
    position: absolute;
    left: 2em;
    font-weight: bold;
    top: 1em;
    display: block;
    font-size: .785rem;
}
.timeline-item::after {
    width: 10px;
    height: 10px;
    display: block;
    top: 1em;
    position: absolute;
    left: -6px;
    border-radius: 10px;
    content: '';
    border: 2px solid #ec5800;
    background: white ;
}
.timeline-item:last-child {
    -webkit-border-image: -webkit-gradient(linear, left top, left bottom, color-stop(60%, #ec5800), to(rgba(0, 0, 0, 0))) 1 100%;
    -webkit-border-image: linear-gradient(to bottom, #ec5800 60%, rgba(0, 0, 0, 0)) 1 100%;
    -o-border-image: linear-gradient(to bottom, #ec5800 60%, rgba(0, 0, 0, 0)) 1 100%;
    border-image: -webkit-gradient(linear, left top, left bottom, color-stop(60%, #ec5800), to(rgba(0, 0, 0, 0))) 1 100%;
    border-image: linear-gradient(to bottom, #ec5800 60%, rgba(0, 0, 0, 0)) 1 100%;
}
