/** TIMELINE START */
:root {
    --c-grey-100: #f4f6f8;
    --c-grey-200: #e3e3e3;
    --c-grey-300: #b2b2b2;
    --c-grey-400: #7b7b7b;
    --c-grey-500: #3d3d3d;
    --c-blue-500: #688afd;
}

.timeline {
    margin-left: 30px;
    margin-right: 30px;
    display: flex;
    flex-direction: column;
    padding: 32px 0 32px 32px;
    border-left: 2px solid var(--c-grey-200);
    font-size: 1.125rem;
}

.timeline-item {
    display: flex;
    gap: 24px;
}
.timeline-item + * {
    margin-top: 24px;
}
.timeline-item + .extra-space {
    margin-top: 48px;
}

.timeline-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: -52px;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 0 0 6px #fff;
}
.timeline-item-icon svg {
    width: 20px;
    height: 20px;
}
.timeline-item-icon.faded-icon {
    background-color: var(--c-grey-100);
    color: var(--c-grey-400);
}
.timeline-item-icon.filled-icon {
    background-color: var(--c-blue-500);
    color: #fff;
}

.timeline-item-description {
    display: flex;
    padding-top: 6px;
    gap: 8px;
    color: var(--c-grey-400);
}
.timeline-item-description img {
    flex-shrink: 0;
}
.timeline-item-description a {
    color: var(--c-grey-500);
    font-weight: 500;
    text-decoration: none;
}
.timeline-item-description a:hover, .timeline-item-description a:focus {
    outline: 0;
    color: var(--c-blue-500);
}
.timeline-item-wrapper {
    width: 100%;
}
.timeline-item-wrapper .comment {
    margin-top: 12px;
    color: var(--c-grey-500);
    border: 1px solid var(--c-grey-200);
    box-shadow: 0 4px 4px 0 var(--c-grey-100);
    border-radius: 6px;
    padding: 16px;
    font-size: 1rem;
}
.timeline img {
    display: block;
    max-width: 100%;
}
.timeline .avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    aspect-ratio: 1/1;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}
.timeline .avatar.small {
    width: 28px;
    height: 28px;
}
.timeline .avatar img {
    -o-object-fit: cover;
    object-fit: cover;
}