.result-card {
    margin-top: 20px;
    padding: 24px;
    color: var(--ink);
}

.tracking-result-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e6e1d6;
}

.tracking-result-head span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.tracking-result-head strong {
    overflow-wrap: anywhere;
}

.tracking-timeline {
    display: grid;
    max-height: 320px;
    margin-top: 18px;
    overflow: auto;
}

.tracking-event {
    position: relative;
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;
    padding-bottom: 20px;
}

.tracking-event:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 16px;
    bottom: 2px;
    width: 2px;
    background: #dce8e3;
}

.tracking-event:last-child {
    padding-bottom: 0;
}

.tracking-event .status-dot {
    z-index: 1;
    width: 13px;
    height: 13px;
    margin-top: 3px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(8, 127, 91, .12);
}

.tracking-event strong {
    display: block;
    color: var(--ink);
    font-size: 14px;
    line-height: 1.35;
}

.tracking-event small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
}
