/* "What's New" snippet — pinned to the bottom of the selection card.
   Driven by js/changes.js from a per-app CHANGES.md; reuses theme vars. */
.changes-box {
    margin-top: auto;            /* pin to the bottom of the flex card */
    flex-shrink: 0;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.changes-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 8px;
}
.changes-label {
    font-size: 12px; font-weight: 600; color: var(--color-accent);
    text-transform: uppercase; letter-spacing: 1px;
}
.changes-toggle {
    background: none; border: none; color: rgba(255, 255, 255, 0.6);
    font-family: inherit; font-size: 12px; cursor: pointer; padding: 0;
}
.changes-toggle:hover { color: #fff; }
.changes-entry { margin-bottom: 10px; }
.changes-entry:last-child { margin-bottom: 0; }
.changes-entry-title { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.changes-entry-body { font-size: 13px; color: rgba(255, 255, 255, 0.8); line-height: 1.5; }
.changes-entry-body p { margin: 0 0 6px; }
.changes-entry-body p:last-child { margin-bottom: 0; }
.changes-entry-body ul { margin: 0; padding-left: 18px; }
.changes-entry-body li { margin-bottom: 2px; }
.changes-entry-body code {
    background: rgba(255, 255, 255, 0.1); padding: 1px 5px;
    border-radius: 4px; font-size: 12px;
}
.changes-entry-body a { color: var(--color-accent); }
.changes-more { display: none; margin-top: 10px; }
.changes-more.open { display: block; }
