* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #edf2ef; color: #203029; }
.practice-shell { width: min(900px, calc(100% - 40px)); margin: 0 auto; padding: 64px 0; }
/* TASK-01：讓 position-card 成為定位參考點。 */
.position-card { padding: 32px; border-radius: 18px; background: white; }
/* TASK-02：將 badge 絕對定位在卡片右上角。 */
.position-card__badge { padding: 6px 10px; border-radius: 999px; background: #f5c851; font-weight: 900; }
.practice-spacer { min-height: 900px; padding-top: 120px; }
/* TASK-03：把返回按鈕 fixed 在視窗右下角。 */
.back-to-top { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 50%; background: #0c7656; color: white; text-decoration: none; }
