@charset "utf-8";

/* ==========================================================================
   내부정보관리규정 (Internal Information Management Regulations) Stylesheet
   ========================================================================== */

.info_mgmt_wrap {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Section Header & Subtitle */
.info_mgmt_header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 56px 20px 0;
    text-align: center;
}

.info_mgmt_header h2 {
    font-size: 38px;
    font-weight: 900;
    color: #1c1c1c;
    margin: 0;
}

.info_mgmt_header_line {
    height: 2px;
    background: #1c1c1c;
    max-width: 960px;
    margin: 36px auto 0;
}

.info_mgmt_intro_box {
    max-width: 960px;
    margin: 32px auto 0;
    text-align: center;
    padding: 0 20px;
}

.info_mgmt_intro_title {
    font-size: 19px;
    font-weight: 800;
    color: #1B5FC0;
}

.info_mgmt_intro_sub {
    font-size: 15px;
    color: #888888;
    margin-top: 10px;
}

.info_mgmt_divider {
    height: 1px;
    background: #ececec;
    max-width: 960px;
    margin: 32px auto 0;
}

/* Articles Container */
.info_mgmt_body {
    max-width: 960px;
    margin: 0 auto;
    padding: 8px 24px 120px;
    text-align: left;
}

/* Chapter Heading */
.info_chapter_head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 56px 0 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #1B5FC0;
}

.info_chapter_dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1B5FC0;
    flex-shrink: 0;
}

.info_chapter_title {
    font-size: 24px;
    font-weight: 800;
    color: #1c1c1c;
}

/* Article Block */
.info_article_block {
    margin-bottom: 32px;
    background: #ffffff;
    padding: 24px 28px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    transition: all 0.25s ease;
}

.info_article_block:hover {
    border-color: #d7e4f7;
    box-shadow: 0 6px 18px rgba(27,95,192,0.06);
}

.info_article_title {
    font-size: 18px;
    font-weight: 800;
    color: #1c1c1c;
    margin-bottom: 12px;
}

/* Paragraph Text */
.info_para_item {
    font-size: 16px;
    color: #444444;
    line-height: 1.8;
    margin-bottom: 8px;
    word-break: keep-all;
}

.info_para_mark {
    color: #1B5FC0;
    font-weight: 700;
    margin-right: 4px;
}

/* Sub-list inside paragraph */
.info_para_list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 10px 0 16px 22px;
    padding-left: 12px;
    border-left: 2px solid #eef3fb;
}

.info_para_list_item {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
    word-break: keep-all;
}

/* Addendum Section */
.info_addendum_box {
    margin-top: 64px;
    text-align: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px 24px;
}

.info_addendum_title {
    font-size: 22px;
    font-weight: 800;
    color: #1c1c1c;
    margin-bottom: 12px;
}

.info_addendum_txt {
    font-size: 16px;
    color: #444444;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .info_mgmt_header h2 {
        font-size: 28px;
    }

    .info_mgmt_intro_title {
        font-size: 16px;
    }

    .info_chapter_title {
        font-size: 20px;
    }

    .info_article_block {
        padding: 18px 16px;
    }

    .info_article_title {
        font-size: 16px;
    }

    .info_para_item {
        font-size: 14px;
    }

    .info_para_list_item {
        font-size: 13.5px;
    }
}
