/* =========================================
   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;
}

/* Utility Classes */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.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: #22ab3c; /* Accent Green */
}

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

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