/* Young Tour - 공통 유틸리티 */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font: inherit; cursor: pointer; border: none; background: transparent; color: inherit; }
ul { list-style: none; }

/* SR-only */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* 이미지 플레이스홀더 스트라이프 */
.placeholder {
  background:
    repeating-linear-gradient(45deg, rgba(30,58,95,0.06) 0 10px, rgba(30,58,95,0.03) 10px 20px),
    #e8e2d5;
  display: flex; align-items: center; justify-content: center;
  color: #8a9baa; font-family: ui-monospace, 'SF Mono', monospace; font-size: 12px; letter-spacing: 1px;
}
