/** 도움말 팝업 css */

.help-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.help-wrap > .help-menu {
    flex-shrink: 0;
}

/** ===== 제목 영역 ===== */
/** 섹션 별 title*/
.help-wrap .help-title > h3{
    width: 100%;
    border-bottom: 1px solid var(--slate-300);
    margin-bottom: 4px;
}


/** ===== 설명 영역 ===== */
/** contents-wrap 밑의 마지막을 제외한 모든 섹션에 mb-10 */
.help-wrap .contents-wrap > div:not(:last-child) {
    margin-bottom: 10px;
}
/** 여러 줄일 경우 list로 감싼 내부의 모든 자식들 간격에 mt-5 적용 */
.help-wrap .help-desc .list > * + * {
    margin-top: 8px;
}