/**
 * 3-point milestone timeline (dot + year + label), built from a native
 * Columns block. Apply `siku-timeline` to the Columns block, and
 * `siku-timeline-point` to each Column.
 */

.siku-timeline-point {
    position: relative;
    text-align: center;
    padding-top: 26px;
}

.siku-timeline-point::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, .2);
}

.siku-timeline-point:first-child::before {
    left: 50%;
}

.siku-timeline-point:last-child::before {
    right: 50%;
}

.siku-timeline-point::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--wp--preset--color--custom-siku-yellow-80);
    border: 2px solid var(--wp--preset--color--base-2);
}
