.cl-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 8rem 2rem 6rem;
}

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

.cl-header__overline {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--indigo-400);
    margin-bottom: 1rem;
}

.cl-header h1 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.cl-header__sub {
    font-size: 1rem;
    color: var(--indigo-200);
    line-height: 1.7;
}

/* Timeline */
.cl-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.cl-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, rgba(129, 140, 248, 0.4), rgba(129, 140, 248, 0.05));
}

/* Release entry */
.cl-release {
    padding-left: 2rem;
    position: relative;
}

.cl-release::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 0.75rem;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--indigo-400);
    box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.2);
}

.cl-release__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.cl-release__date {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--slate-400);
    letter-spacing: 0.05em;
}

.cl-release__version {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--indigo-300);
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(165, 180, 252, 0.2);
    padding: 0.2rem 0.65rem;
    border-radius: 100px;
}

.cl-release__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.cl-release__summary {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--indigo-200);
    margin-bottom: 2rem;
    padding: 1rem 1.25rem;
    background: rgba(99, 102, 241, 0.07);
    border-left: 2px solid rgba(129, 140, 248, 0.4);
    border-radius: 0 8px 8px 0;
}

/* Change sections */
.cl-sections {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cl-section__label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 0.75rem;
}

.cl-section__label--security {
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.cl-section__label--added {
    background: rgba(34, 197, 94, 0.12);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.cl-section__label--changed {
    background: rgba(99, 102, 241, 0.15);
    color: var(--indigo-300);
    border: 1px solid rgba(165, 180, 252, 0.2);
}

.cl-section__label--fixed {
    background: rgba(251, 146, 60, 0.12);
    color: #fdba74;
    border: 1px solid rgba(251, 146, 60, 0.2);
}

.cl-section__label--accessibility {
    background: rgba(168, 85, 247, 0.12);
    color: #d8b4fe;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.cl-section__label--ci {
    background: rgba(20, 184, 166, 0.1);
    color: #5eead4;
    border: 1px solid rgba(20, 184, 166, 0.2);
}

.cl-section__label--tests {
    background: rgba(234, 179, 8, 0.1);
    color: #fde047;
    border: 1px solid rgba(234, 179, 8, 0.2);
}

.cl-section__label--performance {
    background: rgba(245, 158, 11, 0.1);
    color: #fcd34d;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.cl-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 0.25rem;
}

.cl-item {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--slate-300);
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(165, 180, 252, 0.06);
    display: flex;
    gap: 0.75rem;
}

.cl-item::before {
    content: '·';
    color: var(--indigo-400);
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 0.05rem;
}

.cl-item code {
    font-family: 'Courier New', monospace;
    font-size: 0.8125rem;
    background: rgba(99, 102, 241, 0.12);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    color: var(--indigo-300);
}

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

/* Divider between releases */
.cl-release + .cl-release {
    padding-top: 0.5rem;
}

@media (max-width: 768px) {
    .cl-header h1 { font-size: 2rem; }
    .cl-timeline::before { display: none; }
    .cl-release { padding-left: 0; }
    .cl-release::before { display: none; }
}
