/* Timeline Horizontal — aum-tlh */
.aum-tlh-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}

.aum-tlh-track {
    display: grid;
    grid-template-columns: repeat(var(--aum-tlh-items, 5), 1fr);
    min-width: 600px;
    --aum-tlh-node-size: 44px;
    --aum-tlh-line-color: var(--border, rgba(0,0,0,0.12));
}

/* Item */
.aum-tlh-item {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-right: 0;
}

/* Node row — node + connector line */
.aum-tlh-node-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.aum-tlh-node {
    width: var(--aum-tlh-node-size, 44px);
    height: var(--aum-tlh-node-size, 44px);
    border-radius: 50%;
    background-color: var(--primary, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
    z-index: 1;
    position: relative;
}
.aum-tlh-node i, .aum-tlh-node svg { display: block; width: 1em; height: 1em; }

/* Connector line between nodes */
.aum-tlh-connector {
    flex: 1;
    height: 2px;
    background-color: var(--aum-tlh-line-color, rgba(0,0,0,0.12));
    margin: 0 0 0 0;
}

/* Body text */
.aum-tlh-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-right: 24px;
}

.aum-tlh-step {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary, #3b82f6);
    line-height: 1;
}

.aum-tlh-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-on-bg, #111110);
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.aum-tlh-content {
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-muted, #6f6e69);
    margin: 0;
}

/* Last item has no right padding */
.aum-tlh-item--last .aum-tlh-body { padding-right: 0; }
