/* 구글 폰트 불러오기 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;600;700&display=swap');

/* 기본 레이아웃 */
body {
    font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #fcfbf9;
    color: #2c302e;
    line-height: 1.75;
    margin: 0;
    padding: 40px 20px;
}

/* 본문 영역 중앙 정렬 */
header, main {
    max-width: 680px;
    margin: 0 auto;
}

/* 메인 제목 */
h1.titletesto {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1c1b;
    margin-bottom: 24px;
}

/* 상단 구분선 */
hr {
    border: none;
    height: 1px;
    background-color: #e5e2dc;
    max-width: 680px;
    margin: 0 auto 36px auto;
}

/* 서론 상자 */
.intro-text {
    background-color: #f3f0ea;
    padding: 20px;
    border-radius: 10px;
    font-size: 1.05rem;
}

/* 소제목 (h2) */
h2.maininfo {
    font-size: 1.35rem;
    font-weight: 600;
    color: #2b5c43; /* 딥그린 */
    margin-top: 36px;
    margin-bottom: 12px;
}

/* 본문 글자 */
p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    white-space: pre-line; /* 엔터 친 대로 줄바꿈 유지 */
}

/* 광고 들어갈 자리 */
div.ad-space {
    margin: 32px 0;
    min-height: 90px;
    background-color: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
}