/* ── What's New ──────────────────────────────────────────────────────────── */

.whatsnew-container {
    max-width: 780px;
    padding: 0 24px 32px 24px;
}

.whatsnew-container .whatsnew-vers {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 28px 0 2px 0;
    padding: 11px 18px;
    background: var(--color-card-background);
    border-left: 3px solid #1a2744;
    border-radius: 0 6px 6px 0;
    color: var(--color-text-1);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.whatsnew-container .whatsnew-vers:first-child {
    margin-top: 8px;
}

.whatsnew-container .whatsnew-vers-2 {
    color: var(--color-text-dim);
    font-weight: 400;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    text-transform: none;
}

.whatsnew-container .whatsnew-feature {
    position: relative;
    padding: 9px 16px 9px 38px;
    margin: 0;
    color: var(--color-text-1);
    font-weight: 400;
    font-size: 0.88rem;
    line-height: 1.55;
    border-bottom: 1px solid rgba(26, 39, 68, 0.06);
    transition: background 0.15s;
}

.whatsnew-container .whatsnew-feature:hover {
    background: rgba(42, 92, 170, 0.03);
}

.whatsnew-container .whatsnew-feature:last-child {
    border-bottom: none;
}

.whatsnew-container .whatsnew-feature::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #c9a84c;
    opacity: 0.85;
}
