/* =================================
  Subpage 'Info 3' Styles (sitemap 4.jpg)
  ================================= */

.content-article {
    margin-bottom: 60px;
}

/* 시안(4.jpg)의 소제목 스타일 (밑줄 없음) */
.article-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
}

/* 시안(4.jpg)의 풀사이즈 이미지 스타일 */
figure.content-image-full {
    margin: 40px 0; /* subpage.css의 60px 0 보다 간격을 좁힘 */
    border-radius: 8px;
    overflow: hidden;
}
figure.content-image-full img {
    width: 100%;
    object-fit: cover;
}


/* 시안(4.jpg)의 '·' (dot) 목록 스타일 */
.dot-list {
    list-style-type: none;
    padding-left: 0;
    margin: 30px 0;
}

.dot-list li {
    position: relative;
    padding-left: 1.2em;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.dot-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: var(--main-color);
}


/* 시안(4.jpg)의 '✓' (check) 목록 스타일 */
.check-list {
    list-style-type: none;
    padding-left: 0;
    margin: 30px 0;
}

.check-list li {
    position: relative;
    padding-left: 1.5em;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    font-weight: 700;
    color: var(--main-color);
}