/* * 서식마당 공통 스타일 (css/style.css)
 * 모든 페이지에서 공통적으로 사용되는 폰트 및 기본 설정을 정의합니다.
 */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap');

body {
    font-family: 'Noto Sans KR', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 링크 스타일 */
a {
    text-decoration: none;
    color: inherit;
}

/* 유틸리티: 숨김 클래스 (필요 시 사용) */
.hidden {
    display: none;
}