/* =========================================
   Common Style (Extracted from main.css)
========================================= */
@charset "utf-8";

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Pretendard', sans-serif;
    word-break: keep-all; /* Korean typography standard */
}

html {
    scroll-behavior: smooth;
}

body {
    color: #111111;
    line-height: 1.6;
    background-color: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul, ol, li {
    list-style: none;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}


.section-padding {
    padding: 120px 0;
}

.pc_br {
    display: inline;
}

.m_br {
    display: none;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    .section-padding {
        padding: 80px 0;
    }
    .pc_br {
        display: none;
    }
    .m_br {
        display: inline;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    .section-padding {
        padding: 60px 0;
    }
}

/* Top Bar Component */
.top-bar {
    background: #111111;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.top-info {
    display: flex;
    gap: 20px;
}

.top-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-info i {
    font-size: 14px;
    color: #01419a; /* Corporate Blue */
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}

/* MARQUEE KEYFRAMES */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Sub Page Tabs --- */
.sub-page-tabs {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    margin-bottom: 40px;
}
.sub-page-tabs .tab-list {
    display: flex;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    justify-content: center;
    max-width: 1000px;
}
.sub-page-tabs .tab-list li {
    flex: 1;
    text-align: center;
}
.sub-page-tabs .tab-list a {
    display: block;
    padding: 20px 10px;
    font-size: 17px;
    font-weight: 700;
    color: #666;
    text-decoration: none;
    position: relative;
    transition: 0.3s;
}
.sub-page-tabs .tab-list a:hover,
.sub-page-tabs .tab-list a.active {
    color: #01419a;
}
.sub-page-tabs .tab-list a::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    right:0;
    margin:auto;
    width: 50%;
    height: 3px;
    background: #01419a;
    transform: scaleX(0);
    transition: 0.3s;
}
.sub-page-tabs .tab-list a:hover::after,
.sub-page-tabs .tab-list a.active::after {
    transform: scaleX(1);
}
@media (max-width: 768px) {
    .sub-page-tabs .tab-list {
        flex-wrap: wrap;
    }
    .sub-page-tabs .tab-list li {
        flex: 1;
    }
    .sub-page-tabs .tab-list a {
        padding: 15px 5px;
        font-size: 15px;

    }
    .sub-page-tabs .tab-list a::after {
        bottom: 0px;
    }
}
