/* 全域樣式補充 */
html {
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* 選取文字顏色 */
::selection {
  background: #c05f3c;
  color: #f7f4ee;
}

/* 自訂捲軸 */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f7f4ee;
}
::-webkit-scrollbar-thumb {
  background: #c8bfa9;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #c05f3c;
}

/* line-clamp（Safari 相容保險） */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 表單 focus 無障礙 */
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 2px solid #c05f3c;
  outline-offset: 2px;
}
