/* 기본 바디 스타일 */
body {
    font-family: "Noto Sans SC", 'Nanum Gothic', 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    background-color: #fdf6e3;
    color: #333;
    margin: 20px;
}

/* 제목 스타일 */
h1 {
    color: #2a5d84;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 700;
}

h2 {
    color: #4a4a4a;
    margin-top: 20px;
    font-weight: 600;
}

/* 단락 스타일 */
p {
    margin-bottom: 15px;
    font-weight: 400;
}

/* 이미지 스타일 */
img {
    display: block;
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    max-width: 100%;
    height: auto;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.img-half { width: 50%; }
.img-third { width: 33%; }

/* figure와 figcaption */
figure {
    margin: 20px 0;
    text-align: center;
}

figcaption {
    font-size: 0.95em;
    color: #444;
    margin-top: 5px;
    font-style: italic;
}

/* 각주 */
sup a {
    text-decoration: none;
    color: #2a5d84;
    transition: color 0.2s;
}

sup a:hover {
    color: #1a3d5a;
}

/* 삭제선 */
del {
    color: #b00;
}

/* 링크 스타일 */
a {
    color: #2a5d84;
    text-decoration: underline;
}

/* 반응형 */
@media screen and (max-width: 768px) {
    .img-half, .img-third {
        width: 90% !important;
    }
}

/* 기존 스타일 유지 */

/* 갤러리 레이아웃 */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
