* { box-sizing: border-box; }
body { margin: 0; background: #f3f0e8; color: #1f2b26; }
.practice-shell { width: min(960px, calc(100% - 40px)); margin: 0 auto; padding: 64px 0; }
.button-demo { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 50px; }
/* DONE-01：按鈕已有一致基底尺寸、圓角與字重。 */
.button { display: inline-flex; padding: 12px 20px; border-radius: 10px; color: inherit; font-weight: 800; text-decoration: none; }
/* TASK-02：替 primary 與 secondary 建立不同背景、文字與邊框。 */
.button--primary { }
.button--secondary { }
.component-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
/* TASK-03：在 component-card 共用設定 padding、邊框、圓角與背景。 */
.component-card { }
.component-card__label { color: #0c7656; font-weight: 900; }
.contact-panel { margin-top: 32px; }
