@charset "UTF-8";

/* [Global] 배경색을 확연한 그레이 톤으로 조정 */
body {
    background-color: #1e2025 !important; /* 블랙을 완전히 벗어난 짙은 회색 */
    color: #b0b8c1; /* 글자색의 명도를 낮춰 눈부심 방지 */
    line-height: 1.85; /* 행간을 미세하게 더 넓혀 가독성 극대화 */
}

.article-wrap {
    max-width: 820px; /* 시선의 분산을 막기 위해 폭을 더 정밀하게 조정 */
    margin: 80px auto 120px;
    padding: 0 24px;
}

/* [Title] 메인 제목 */
.article-wrap .title {
    font-size: clamp(30px, 4.5vw, 44px);
    font-weight: 800;
    color: #e5e8eb; /* 제목도 순백색 지양 */
    margin-bottom: 60px;
    line-height: 1.3;
    letter-spacing: -1.2px;
}

/* [Sub Title] 소제목 */
.article-wrap .sub_title {
    font-size: 23px;
    font-weight: 700;
    color: #ff7e33; /* 채도를 살짝 낮춘 고급스러운 오렌지 */
    margin-bottom: 25px;
    padding-left: 16px;
    border-left: 5px solid #ff7e33;
}

/* [Contents] 본문 텍스트 */
.article-wrap .contents {
    font-size: 18px;
    color: #adb5bd; /* 장문 독독에 가장 최적화된 명도 */
}

.article-wrap .contents p {
    margin-bottom: 28px;
}

/* [Headings in Contents] */
.article-wrap .contents h4 {
    font-size: 20px;
    color: #dee2e6;
    margin: 45px 0 18px;
    font-weight: 700;
}

/* [List Style] 박스 영역 */
.article-wrap .contents ul {
    list-style: none;
    padding: 35px;
    background: #25282f; /* 배경보다 한 단계 밝은 회색으로 입체감 분리 */
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin: 45px 0;
}

.article-wrap .contents ul li {
    font-size: 17px;
    color: #9ea7af;
    margin-bottom: 16px;
    padding-left: 20px;
    position: relative;
}

.article-wrap .contents ul li::before {
    content: "";
    position: absolute;
    left: 0; top: 11px;
    width: 5px; height: 5px;
    background: #ff7e33;
    border-radius: 50%;
}

.article-wrap .contents ul li strong {
    color: #f1f3f5;
}

/* [Image] */
.article-wrap img {
    border-radius: 12px;
    margin: 50px auto;
    filter: brightness(0.9); /* 이미지 자체의 밝기도 배경과 어우러지게 미세 조정 */
    transition: filter 0.3s;
}

.article-wrap img:hover {
    filter: brightness(1); /* 호버 시에만 원래 밝기 */
}

/* [Button] */
.article-wrap .button {
    display: inline-flex;
    padding: 18px 40px;
    background-color: #ff7e33;
    color: #fff;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 30px;
    box-shadow: 0 4px 14px 0 rgba(255, 126, 51, 0.2);
}

.article-wrap .button:hover {
    background-color: #f76707;
    transform: translateY(-2px);
}