/* 우리동네노동권찾기 - 기본 레이아웃 스타일 (shadcn/ui 기반) */
/* 이 파일은 shadcn.css 이후에 로드됩니다 */

/* ─── 기본 리셋 ─── */
html, body {
    margin: 0;
    padding: 0;
}

/* ─── 접근성 스킵 네비게이션 ─── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    padding: 0.5rem 1rem;
    background-color: hsl(var(--background, 0 0% 100%));
    color: hsl(var(--foreground, 240 10% 3.9%));
    border: 1px solid hsl(var(--border, 240 5.9% 90%));
    border-radius: var(--radius-md, 0.5rem);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    z-index: 9999;
    transition: top 0.15s ease;
}

.skip-link:focus {
    top: 0.5rem;
    left: 0.5rem;
}

/* ─── 메인 컨텐츠 영역 ─── */
.main-content {
    min-height: calc(100vh - 4rem);
    padding: 1.5rem 0;
}

/* ─── 섹션 간격 ─── */
section {
    margin-bottom: 2rem;
}
