@import url('../../teddy-premium/css/styles.css');

/* Timeline */
.teddy-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Central dashed line */
.teddy-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    border-left: 2px dashed var(--teddy-brown);
    transform: translateX(-50%);
}

.teddy-timeline-item {
    margin-bottom: 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    padding: 0 40px;
}

.teddy-timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.teddy-timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

/* Paw print bullet */
.teddy-timeline-item::after {
    content: '\f1b0';
    /* FontAwesome Paw */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 15px;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    color: var(--sage-green);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--sage-green);
    z-index: 10;
    font-size: 0.8rem;
}

.teddy-timeline-item:nth-child(odd)::after {
    right: -15px;
}

.teddy-timeline-item:nth-child(even)::after {
    left: -15px;
}

.teddy-timeline-item .time {
    font-weight: bold;
    color: var(--teddy-brown);
    margin-bottom: 5px;
    font-family: var(--font-body);
}

@media (max-width: 768px) {
    .teddy-timeline::before {
        left: 20px;
    }

    .teddy-timeline-item {
        width: 100%;
        padding-left: 60px;
        text-align: left;
    }

    .teddy-timeline-item:nth-child(odd),
    .teddy-timeline-item:nth-child(even) {
        left: 0;
    }

    .teddy-timeline-item:nth-child(odd)::after {
        left: 5px;
        right: auto;
    }

    .teddy-timeline-item:nth-child(even)::after {
        left: 5px;
    }
}