.updates-hero h1 {
    max-width: 980px;
}

.updates-current {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
    padding: 30px 34px;
    border: 1px solid rgba(85, 212, 134, .28);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(85, 212, 134, .14), rgba(101, 169, 255, .09));
    box-shadow: 0 24px 90px rgba(0, 0, 0, .16);
}

.updates-current span,
.update-card header span,
.updates-guide > span {
    display: inline-flex;
    margin-bottom: 10px;
    color: #7edda5;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.updates-current h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 54px);
    letter-spacing: -.045em;
}

.updates-current p {
    margin: 8px 0 0;
    color: #dce5f5;
    font-size: 18px;
}

.updates-current time {
    flex: 0 0 auto;
    color: #9aa6bd;
    font-weight: 800;
}

.updates-layout {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 28px;
    padding-bottom: 70px;
}

.updates-guide {
    position: sticky;
    top: 120px;
    height: max-content;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(10, 16, 30, .82);
}

.updates-guide h2 {
    margin: 0 0 14px;
    font-size: 30px;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.updates-guide p,
.updates-guide li {
    color: #aeb8cc;
    line-height: 1.65;
}

.updates-guide ul {
    margin: 20px 0 0;
    padding-left: 18px;
}

.updates-guide b {
    color: #f7f8fc;
}

.updates-timeline {
    position: relative;
    display: grid;
    gap: 18px;
}

.updates-timeline::before {
    content: "";
    position: absolute;
    left: 17px;
    top: 18px;
    bottom: 18px;
    width: 1px;
    background: linear-gradient(#55d486, rgba(101, 169, 255, .45), transparent);
}

.update-card {
    position: relative;
    margin-left: 36px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 26px;
    background: linear-gradient(145deg, rgba(16, 23, 42, .88), rgba(8, 13, 26, .84));
    box-shadow: 0 18px 70px rgba(0, 0, 0, .14);
}

.update-card::before {
    content: "";
    position: absolute;
    left: -27px;
    top: 32px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #65a9ff;
    box-shadow: 0 0 0 7px rgba(101, 169, 255, .12), 0 0 24px rgba(101, 169, 255, .6);
}

.update-card.is-latest {
    border-color: rgba(85, 212, 134, .34);
    background: linear-gradient(145deg, rgba(25, 45, 55, .88), rgba(9, 15, 29, .86));
}

.update-card.is-latest::before {
    background: #55d486;
    box-shadow: 0 0 0 7px rgba(85, 212, 134, .13), 0 0 26px rgba(85, 212, 134, .68);
}

.update-card header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.update-card h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.update-card time {
    color: #8f9bb0;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.update-card > p {
    max-width: 760px;
    color: #c0cadc;
    font-size: 17px;
    line-height: 1.7;
}

.update-sections {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.update-sections section {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    background: rgba(255, 255, 255, .035);
}

.update-sections h3 {
    margin: 0 0 12px;
    color: #f6f8ff;
    font-size: 18px;
}

.update-sections ul {
    margin: 0;
    padding-left: 18px;
}

.update-sections li {
    margin: 9px 0;
    color: #aeb8cc;
    line-height: 1.58;
}

.updates-next {
    margin-bottom: 130px;
    padding: 40px;
    border: 1px solid rgba(101, 169, 255, .22);
    border-radius: 28px;
    background: radial-gradient(circle at 75% 10%, rgba(101, 169, 255, .14), transparent 36%), rgba(13, 20, 38, .82);
}

.updates-next h2 {
    margin: 12px 0 14px;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1;
    letter-spacing: -.045em;
}

.updates-next p:last-child {
    max-width: 760px;
    color: #aeb8cc;
    font-size: 18px;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .updates-current {
        align-items: flex-start;
        flex-direction: column;
    }

    .updates-layout {
        grid-template-columns: 1fr;
    }

    .updates-guide {
        position: static;
    }

    .update-sections {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .updates-current,
    .updates-guide,
    .update-card,
    .updates-next {
        padding: 22px;
        border-radius: 22px;
    }

    .updates-layout {
        gap: 20px;
    }

    .updates-timeline::before {
        left: 10px;
    }

    .update-card {
        margin-left: 24px;
    }

    .update-card::before {
        left: -20px;
    }

    .update-card header {
        flex-direction: column;
        gap: 8px;
    }

    .update-card time {
        white-space: normal;
    }

    .update-sections section {
        padding: 16px;
    }

    .updates-next {
        margin-bottom: 90px;
    }
}
