/*
 * Basketball Design System — Base
 * 매우 보수적 — body / a / button reset 등 기존 페이지에 영향 줄 수 있는 것은 명시적으로 제외.
 * 안전장치 2 (플랜): 기존 페이지 스타일 안 덮어쓰기.
 */

/* box-sizing 만 — 기존 main.css 와 중복이지만 무해 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 글로벌 유틸리티 (selector 충돌 없는 신규 클래스) */
.bb-hidden {
  display: none !important;
}

.bb-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
