/* One Vela — พื้นหลังลาย toile แบบ "เฉพาะขอบ" (ไอซ์เลือก C · 18% จาก toile-preview.html)
   ใช้: <link rel="stylesheet" href="/shared/toile-bg.css"> · ปรับความเข้ม/ความกว้างขอบที่นี่ที่เดียว มีผลทุกหน้า */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: url('https://files.twobuildthailand.com/photos/brand/toile-blue.jpg') center/620px repeat;
  opacity: .18;
  -webkit-mask: linear-gradient(90deg, #000 0, transparent 200px, transparent calc(100% - 200px), #000 100%);
  mask: linear-gradient(90deg, #000 0, transparent 200px, transparent calc(100% - 200px), #000 100%);
}
/* จอแคบ: ขอบแคบลง+จางลง ไม่ให้ลายกินพื้นที่เนื้อหา */
@media (max-width: 900px) {
  body::before {
    opacity: .12;
    -webkit-mask: linear-gradient(90deg, #000 0, transparent 80px, transparent calc(100% - 80px), #000 100%);
    mask: linear-gradient(90deg, #000 0, transparent 80px, transparent calc(100% - 80px), #000 100%);
  }
}
@media print { body::before { display: none; } }
