/**
 * gold-silver 모듈 공통: 스마트 반응형 모바일 베이스라인
 * — 다른 스타일시트 다음에 로드하세요.
 */
:root {
  --gs-break-stack: 900px;
  --gs-break-sm: 480px;
  --gs-safe-top: env(safe-area-inset-top, 0px);
  --gs-safe-right: env(safe-area-inset-right, 0px);
  --gs-safe-bottom: env(safe-area-inset-bottom, 0px);
  --gs-safe-left: env(safe-area-inset-left, 0px);
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

img,
svg,
video,
canvas,
iframe:not(.gs-no-maxwidth) {
  max-width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
