.social-link {
    margin-left: 10px;
}
.top-event-banner {
    background: rgba(44, 44, 44, 0.5);
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 600;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
}
.top-event-banner a {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.evt-tag {
    background: #ffcf00;
    color: #000;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    animation: eventBlink 1s infinite;
}
.header-event-badge {
    background: #ff4d4d;
    color: white;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 10px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.header-emphasis-btn {
    background: #1693fd;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    margin-right: 20px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(22, 147, 253, 0.4);
    border: 2px solid transparent;
}
.header-emphasis-btn:hover {
    background: #fff;
    color: #1693fd !important;
    border: 2px solid #1693fd;
}
@keyframes eventBlink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        opacity: 1;
    }
}
#header_land {
    top: 45px !important;
}
.evt-txt {
    font-size: 20px;
    font-weight: 600;
}
@media (max-width: 768px) {
    .evt-txt {
        font-size: 15px;
    }
    .header-emphasis-btn {
        display: none;
    }
    #header_land {
        top: 40px !important;
    }
    .social-link {
        margin-left: 5px;
    }
}

/* --- 인라인 style 속성 치환분 (BEM) --- */
.landing-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.landing-header__group {
    display: flex;
    align-items: center;
}
.landing-sns__icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}
.landing-copy__em {
    font-weight: 700;
}
.landing-copy__point {
    color: #1693fd;
}
