/**********************************
 *
 * Navigation
 *
 **********************************/

.release-notes-navigation {
    padding: 28px 15px 40px;
    gap: 10px;
}

.release-timeline {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    position: relative;
}

.release-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(201, 148, 58, 0.2) 10%, rgba(201, 148, 58, 0.2) 90%, transparent);
}

.release-entry {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    cursor: pointer;
    position: relative;
    text-decoration: none;
}

.release-dot {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    border: 1px solid rgba(201, 148, 58, 0.2);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.18s;
    position: relative;
}

.release-entry:first-child .release-dot {
    border-color: rgba(74, 173, 168, 0.4);
    background: rgba(74, 173, 168, 0.08);
}

.release-entry.active:not(:first-child) .release-dot {
    border-color: rgba(201, 148, 58, 0.5);
    background: rgba(201, 148, 58, 0.1);
    box-shadow: 0 0 8px rgba(201, 148, 58, 0.15);
}

.release-dot::after {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(201, 148, 58, 0.3);
}

.release-entry:first-child .release-dot::after {
    background: var(--teal);
    box-shadow: 0 0 5px rgba(74, 173, 168, 0.4);
}

.release-entry.active:not(:first-child) .release-dot::after {
    background: var(--gold);
    box-shadow: 0 0 5px rgba(201, 148, 58, 0.5);
}

.release-entry .release-name {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--mist-dim);
    transition: color 0.18s;
    line-height: 1.2;
}

.release-entry:first-child .release-name {
    color: var(--teal);
}

.release-entry.active:not(:first-child) .release-name {
    color: var(--gold-light);
}

.release-date {
    font-size: 14px;
    color: var(--mist-dim);
    font-style: italic;
    opacity: 0.6;
    margin-top: 2px;
    margin-bottom: 4px;
}

.release-entry.active .release-date {
    color: var(--mist-dim);
}
