/**
 * utilities.css — 접근성(포커스), 유틸 클래스, prefers-reduced-motion
 */

/* ----- 스크린리더 전용 (내용은 보이되 시각적으로 숨김) ----- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ----- prefers-reduced-motion: 애니메이션 최소화 ----- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ----- 모바일 브라우저 자동 데이터 감지(전화·날짜·주소) 링크 무력화 ----- */
a[x-apple-data-detectors],
a[x-apple-data-detectors-type],
a[x-apple-data-detectors-type="telephone"],
a[x-apple-data-detectors-type="calendar-event"],
a[x-apple-data-detectors-type="address"],
a[x-apple-data-detectors-type="link"] {
  color: inherit !important;
  text-decoration: none !important;
  font-size: inherit !important;
  font-family: inherit !important;
  font-weight: inherit !important;
  pointer-events: none !important;
}

.text-plain-digits {
  font-variant-numeric: tabular-nums;
}

.text-plain-digits a,
.text-plain-digits a[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
  pointer-events: none !important;
}
