@charset "utf-8";
/* ----------------------------------------------
CUSTOME.CSS
* writer : uxcamp
* version : 1.0.0
* last update : 2025.06.20
* purpose : 테마 커스텀 스타일
* license : © 2025 uxcamp. All rights reserved.
------------------------------------------------*/

/* Footer Notice Bar */
.footerNoticeWrap {
    background: #ffcc00;
    padding: 15px 0;
}

.footerNotice {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footerNotice .noticeIcon {
    width: 34px;
    height: 34px;
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    flex-shrink: 0;
}

.footerNotice .noticeText {
    font-size: 12px;
    line-height: 1.6;
    color: #333;
    font-weight: 500;
}

@media (max-width: 768px) {
    .footerNotice {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footerNotice .noticeText {
        font-size: 11px;
        word-break: keep-all;
    }
}