.whatsnew-page .whatsnew-hero {
    min-height: 230px;
    padding: 42px 28px 36px;
}

.whatsnew-hero .hero-inner {
    max-width: 780px;
    padding: 0;
}

.whatsnew-hero h1 {
    margin-bottom: 0;
}

.whatsnew-section {
    padding-top: 68px;
    padding-bottom: 86px;
}

.whatsnew-list {
    position: relative;
    display: grid;
    gap: 20px;
    max-width: 900px;
    margin-inline: auto;
    padding-right: 34px;
}

.whatsnew-list::before {
    position: absolute;
    top: 12px;
    right: 8px;
    bottom: 12px;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent), rgba(77, 124, 255, .15));
    content: "";
}

.whatsnew-item {
    position: relative;
    min-height: 0;
    margin: 0;
    padding: 25px 28px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 14px 40px rgba(15, 23, 42, .07);
    color: var(--ink-soft);
    font-size: 1.03rem;
    line-height: 1.85;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.whatsnew-item::before {
    position: absolute;
    top: 29px;
    right: -34px;
    width: 14px;
    height: 14px;
    border: 4px solid var(--bg-alt);
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 2px rgba(0, 82, 255, .16);
    content: "";
}

.whatsnew-item:hover {
    border-color: rgba(0, 82, 255, .2);
    box-shadow: 0 18px 48px rgba(15, 23, 42, .1);
    transform: translateY(-2px);
}

.whatsnew-item small {
    display: inline-flex;
    margin-bottom: 13px;
    padding: 5px 11px;
    border-radius: 999px;
    background: var(--accent-glow);
    color: var(--accent);
    font-size: .84rem;
    font-weight: 700;
    line-height: 1.3;
}

.whatsnew-item strong,
.whatsnew-item b {
    color: var(--ink);
}

@media (max-width: 620px) {
    .whatsnew-page .whatsnew-hero {
        min-height: 190px;
        padding: 30px 20px 27px;
    }

    .whatsnew-section {
        padding-top: 46px;
        padding-bottom: 60px;
    }

    .whatsnew-list {
        gap: 15px;
        padding-right: 24px;
    }

    .whatsnew-list::before {
        right: 5px;
    }

    .whatsnew-item {
        padding: 21px 19px;
        font-size: .98rem;
    }

    .whatsnew-item::before {
        top: 25px;
        right: -25px;
        width: 12px;
        height: 12px;
        border-width: 3px;
    }
}
