/* =========================================
   RECOVERY TIMELINE
========================================= */

.timeline-wrapper {

    display: flex;

    flex-direction: column;

    gap: 26px;
}

.timeline-item {

    position: relative;

    padding-left: 34px;
}

.timeline-line {

    position: absolute;

    left: 13px;
    top: 0;
    bottom: -26px;

    width: 2px;

    background:
        rgba(255,255,255,0.08);
}

.timeline-dot {

    position: absolute;

    left: 0;
    top: 28px;

    width: 28px;
    height: 28px;

    border-radius: 999px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        rgba(59,130,246,0.18);

    color: #60a5fa;

    z-index: 5;
}

.timeline-card {

    background:
        rgba(8,20,43,0.84);

    border:
        1px solid rgba(255,255,255,0.05);

    border-radius: 30px;

    overflow: hidden;

    padding: 28px;
}

.timeline-top {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 22px;
}

.timeline-pet {

    display: flex;

    align-items: center;

    gap: 18px;
}

/* =========================================
   FIXED IMAGE SIZE
========================================= */

.timeline-pet-image {

    width: 82px;
    height: 82px;

    border-radius: 22px;

    object-fit: cover;

    object-position: center;

    background: #091224;

    flex-shrink: 0;

    border:
        1px solid rgba(255,255,255,0.06);
}

.timeline-event-title {

    font-size: 24px;

    font-weight: 800;

    margin-bottom: 6px;
}

.timeline-event-subtitle {

    color: #9fb0d9;
}

.timeline-time {

    color: #94a3b8;

    white-space: nowrap;

    font-size: 14px;
}

.timeline-location {

    font-size: 16px;

    line-height: 1.7;

    color: #dbe4ff;
}

.timeline-map-link {

    margin-top: 18px;
}

.map-view-btn {

    display: inline-flex;

    align-items: center;

    padding: 12px 18px;

    border-radius: 16px;

    background:
        rgba(59,130,246,0.12);

    color: #60a5fa;

    font-weight: 700;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .timeline-top {

        flex-direction: column;
    }

    .timeline-pet {

        align-items: flex-start;
    }

    .timeline-time {

        margin-left: 100px;
    }
}