.cl-page {
    --cl-lime: #b8ff38;
    --cl-cyan: #42c9f5;
    overflow: hidden;
}

.cl-hero {
    position: relative;
    padding: 5.75rem 0 4.5rem;
    border-bottom: 1px solid var(--ap-card-border);
    background: linear-gradient(180deg, color-mix(in srgb, var(--ap-card-bg) 38%, transparent), transparent);
}

.cl-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .24;
    pointer-events: none;
    background-image:
        linear-gradient(var(--ap-card-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--ap-card-border) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.cl-hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
    gap: 5rem;
    align-items: end;
}

.cl-kicker {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    color: var(--cl-cyan);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.cl-kicker::before {
    content: "";
    width: 2px;
    height: 1.5rem;
    background: var(--cl-lime);
}

.cl-hero h1 {
    max-width: 760px;
    margin: 1.35rem 0 1.1rem;
    font-size: clamp(3rem, 6vw, 5.8rem);
    font-weight: 850;
    letter-spacing: -.06em;
    line-height: .92;
}

.cl-lead {
    max-width: 650px;
    margin: 0;
    color: var(--ap-muted);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.7;
}

.cl-summary {
    position: relative;
    padding: 1.45rem 1.5rem;
    border: 1px solid var(--ap-card-border);
    border-radius: 18px;
    background: color-mix(in srgb, var(--ap-card-bg) 88%, transparent);
    backdrop-filter: blur(12px);
}

.cl-summary::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 1.5rem;
    width: 3.5rem;
    height: 2px;
    background: var(--cl-lime);
}

.cl-summary__label {
    color: var(--ap-muted);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.cl-summary__date {
    margin: .65rem 0 .35rem;
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -.035em;
}

.cl-summary__title {
    color: var(--ap-muted);
    line-height: 1.5;
}

.cl-summary__count {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.15rem;
    padding-top: 1rem;
    border-top: 1px solid var(--ap-card-border);
    font-size: .82rem;
}

.cl-summary__count strong {
    color: var(--cl-lime);
    font-size: 1.05rem;
}

.cl-main {
    padding: 4.75rem 0 5.5rem;
}

.cl-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 2rem;
    margin-bottom: 2.4rem;
}

.cl-head h2 {
    margin: 0;
    font-size: clamp(1.65rem, 3vw, 2.3rem);
    font-weight: 800;
    letter-spacing: -.035em;
}

.cl-head p {
    max-width: 430px;
    margin: 0;
    color: var(--ap-muted);
    font-size: .92rem;
    line-height: 1.6;
    text-align: right;
}

.cl-list {
    display: grid;
    gap: 1.15rem;
}

.cl-release {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid var(--ap-card-border);
    border-radius: 20px;
    background: var(--ap-card-bg);
    transition: border-color .2s, transform .2s;
}

.cl-release:hover {
    border-color: color-mix(in srgb, var(--cl-cyan) 45%, var(--ap-card-border));
    transform: translateY(-2px);
}

.cl-date {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 230px;
    padding: 1.45rem;
    border-right: 1px solid var(--ap-card-border);
    background: color-mix(in srgb, var(--ap-input-bg) 72%, transparent);
}

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

.cl-date__day {
    font-size: 3.3rem;
    font-weight: 850;
    letter-spacing: -.07em;
    line-height: .88;
}

.cl-date__month {
    margin-top: .45rem;
    color: var(--cl-cyan);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .14em;
}

.cl-date__year {
    color: var(--ap-muted);
    font-family: var(--bs-font-monospace);
    font-size: .77rem;
}

.cl-release__body {
    position: relative;
    padding: 1.65rem 2rem 1.8rem;
}

.cl-release__body::before {
    content: "";
    position: absolute;
    top: 1.65rem;
    left: 0;
    width: 3px;
    height: 2.6rem;
    background: var(--cl-lime);
}

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

.cl-tag {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .35rem .68rem;
    border-radius: 7px;
    font-size: .74rem;
    font-weight: 800;
}

.cl-tag.feature { color: #b9a2ff; background: rgba(167, 139, 250, .12); }
.cl-tag.improvement { color: var(--cl-cyan); background: rgba(66, 201, 245, .11); }
.cl-tag.security { color: #56d98b; background: rgba(34, 197, 94, .11); }
.cl-tag.fix { color: #f7b84b; background: rgba(245, 158, 11, .11); }

.cl-version {
    color: var(--ap-muted);
    font-family: var(--bs-font-monospace);
    font-size: .74rem;
}

.cl-latest {
    margin-left: auto;
    color: var(--cl-lime);
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.cl-release h3 {
    max-width: 850px;
    margin: 0 0 .85rem;
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    font-weight: 800;
    letter-spacing: -.035em;
}

.cl-release__text {
    max-width: 900px;
    color: var(--ap-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.cl-release__text p { margin: 0 0 1rem; }
.cl-release__text p:last-child { margin-bottom: 0; }
.cl-release__text h4 { margin: 1.4rem 0 .65rem; color: var(--bs-body-color); font-size: 1.05rem; font-weight: 800; }
.cl-release__text ul { margin: .75rem 0 1rem; padding-left: 1.25rem; }
.cl-release__text li { margin: .35rem 0; }
.cl-release__text blockquote { margin: 1rem 0; padding: .8rem 1rem; border-left: 2px solid var(--cl-cyan); background: color-mix(in srgb, var(--ap-input-bg) 75%, transparent); color: var(--bs-body-color); }
.cl-release__text code { padding: .12rem .35rem; border: 1px solid var(--ap-card-border); border-radius: 5px; background: var(--ap-input-bg); color: var(--cl-cyan); }
.cl-release__text strong { color: var(--bs-body-color); font-weight: 750; }

.cl-number {
    position: absolute;
    right: 1.5rem;
    bottom: 1rem;
    color: color-mix(in srgb, var(--ap-muted) 20%, transparent);
    font-family: var(--bs-font-monospace);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
}

.cl-note {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-top: 2.5rem;
    padding: 1.25rem 1.4rem;
    border-top: 1px solid var(--ap-card-border);
    border-bottom: 1px solid var(--ap-card-border);
    color: var(--ap-muted);
    font-size: .88rem;
}

.cl-note strong { color: var(--bs-body-color); }
.cl-note a { color: var(--cl-cyan); text-decoration: none; }

.cl-empty {
    padding: 4rem 1.5rem;
    border: 1px dashed var(--ap-card-border);
    border-radius: 20px;
    color: var(--ap-muted);
    text-align: center;
}

.cl-empty i {
    display: block;
    margin-bottom: .75rem;
    color: var(--cl-cyan);
    font-size: 2rem;
}

@media (max-width: 991px) {
    .cl-hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .cl-summary { max-width: 600px; }
    .cl-head { align-items: start; flex-direction: column; gap: .7rem; }
    .cl-head p { text-align: left; }
    .cl-hero h1 { max-width: 850px; }
}

@media (max-width: 767px) {
    .cl-hero { padding: 4rem 0 3rem; }
    .cl-main { padding: 3rem 0 4rem; }
    .cl-release { grid-template-columns: 1fr; }
    .cl-date {
        min-height: auto;
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: .75rem;
        padding: 1rem 1.2rem;
        border-right: 0;
        border-bottom: 1px solid var(--ap-card-border);
    }
    .cl-date__top { flex-direction: row; align-items: baseline; gap: .55rem; }
    .cl-date__day { font-size: 2rem; }
    .cl-date__month { margin: 0; }
    .cl-release__body { padding: 1.35rem 1.25rem 1.6rem; }
    .cl-release__body::before { top: 1.35rem; height: 2rem; }
    .cl-latest { width: 100%; margin-left: 0; }
    .cl-number { display: none; }
    .cl-note { align-items: flex-start; flex-direction: column; gap: .5rem; }
    .cl-summary__date { font-size: 1.55rem; }
}
