/* ABOUT PAGE */

.about-main {
    background-color: var(--color-bg-body);
}

.about-block {
    margin-bottom: 2.5rem;
}

.timeline-item {
    position: relative;
    padding-inline-start: 1.6rem;
    margin-bottom: 1.2rem;
}

.timeline-item::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: 0.4rem;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background-color: var(--color-primary);
}

.timeline-item::after {
    content: "";
    position: absolute;
    inset-inline-start: 3px;
    top: 1rem;
    bottom: -0.6rem;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-primary), transparent);
}

.timeline-item:last-child::after {
    display: none;
}