/* 사용자·관리자 공통: 레이아웃에 영향 없는 최소 리셋만 */
*,
*::before,
*::after {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

.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;
}

/* 공통 콘텐츠 너비 — 헤더·본문·푸터 동일 기준 (1080px) */
:root {
    --site-width: 1080px;
    --site-gutter: 1.25rem;
}

.site-container {
    width: 100%;
    max-width: var(--site-width);
    margin-inline: auto;
    padding-inline: var(--site-gutter);
    box-sizing: border-box;
}
