.cl-container {
    max-width: 680px;
}

.cl-header {
    margin-bottom: 2rem;
}

.cl-header p {
    opacity: 0.7;
}

.cl-timeline {
    display: flex;
    flex-direction: column;
}

.cl-entry {
    padding: 1.4rem 0;
    border-bottom: 1px solid var(--card-border);
}

.cl-entry:last-child {
    border-bottom: none;
}

.cl-entry.cl-latest {
    background: rgba(74, 111, 165, 0.07);
    border: 1px solid rgba(74, 111, 165, 0.25);
    border-radius: 10px;
    padding: 1.25rem 1.25rem;
    margin-bottom: 0.25rem;
}

.cl-entry-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.85rem;
    flex-wrap: wrap;
}

.cl-version {
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    letter-spacing: 0.02em;
}

.cl-latest .cl-version {
    color: var(--primary-blue-hover);
    background: rgba(74, 111, 165, 0.15);
    border-color: rgba(74, 111, 165, 0.4);
}

.cl-badge-latest {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-blue-hover);
    background: rgba(74, 111, 165, 0.15);
    border: 1px solid rgba(74, 111, 165, 0.4);
    padding: 0.15rem 0.55rem;
    border-radius: 20px;
}

.cl-date {
    font-size: 0.78rem;
    color: var(--text-gray);
    opacity: 0.5;
    margin-left: auto;
    font-style: italic;
}

.cl-changes {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.cl-changes li {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.55;
    padding-left: 1.25rem;
    position: relative;
}

.cl-changes li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-size: 0.7rem;
    top: 0.2em;
}

@media (max-width: 600px) {
    .cl-entry.cl-latest {
        padding: 1rem;
    }

    .cl-date {
        margin-left: 0;
        width: 100%;
    }
}
