.site-footer {
    margin-top: 60px !important;
    /* 푸터 전체 위쪽 간격 추가 */
}

.news-footer-widget {
    font-size: 16px;
    color: #333;
    background-color: #fff;
    padding: 25px 1px 10px 1px;
    text-align: center;
    border-top: 2px solid #323232;
    max-width: 1200px !important;
    /* 컨테이너 최대 너비 유지 */
    margin-left: auto !important;
    margin-right: auto !important;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    /* 좌측(링크) - 우측(로고) 배치 */
    align-items: center;
    /* 세로 중앙 정렬 */
    padding: 10px 0;
    margin: 0 0 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-grow: 1;
    /* footer-links가 가능한 만큼 공간을 차지하도록 설정 */
}

.footer-links li {
    margin-right: 25px;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.footer-logo {
    display: flex;
    align-items: center;
    /* 로고를 수직 중앙에 정렬 */
    justify-content: flex-end;
    /* 로고를 우측 끝으로 정렬 */
    margin-left: 20px;
    /* 필요한 경우 우측으로 약간의 여백 추가 */
}

.footer-logo img {
    height: 30px;
    /* 로고 크기 조정 */
    width: auto;
    /* 크기 제한 */
}

.footer-info {
    font-size: 12px;
    color: #555;
    margin-bottom: 10px;
}

.footer-info p {
    margin-bottom: 0px !important;
    /* 간격 완전히 제거 */
    text-align: left !important;
    /* 좌측 정렬 적용 */
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    /* 좌측(카피) - 우측(파워) 배치 */
    align-items: center;
    /* 세로 중앙 정렬 */
    padding: 10px 0;
    margin: 0 0 20px;
}

.footer-bottom .copy-by {
    font-size: 12px;
    color: #555;
    text-align: left;
    /* 좌측 정렬 */
    margin: 0;
    /* 여백 제거 */
}

.footer-bottom .powered-by {
    font-size: 12px;
    color: #555;
    text-align: right;
    /* 우측 정렬 */
    margin: 0;
    /* 여백 제거 */
}

.footer-bottom .powered-logo {
    font-weight: bold;
    color: #cc0000;
    /* 대비율 부족 문제 해결을 위해 진한 빨간색으로 수정 */
}


/* PC에서는 select 드롭다운 숨김 */
.footer-dropdown-select {
    display: none;
}

/* 모바일설정 */
@media (max-width: 768px) {

    /* 모바일에서는 기존 리스트 숨기고, select 드롭다운 표시 */
    .footer-links {
        display: none;
    }

    .footer-links-container {
        width: 100%;
        max-width: 100px;
    }

    /* 셀렉트 박스 스타일 */
    .footer-dropdown-select {
        display: block;
        width: 100%;
        padding: 10px;
        font-size: 14px;
        border: 1px solid #ccc;
        border-radius: 5px;
        background-color: #fff;
        color: #333;
        cursor: pointer;
        appearance: none;
        /* 기본 브라우저 스타일 제거 */
        -webkit-appearance: none;
        -moz-appearance: none;
        text-align: center;
    }

    /* 셀렉트 내부 옵션 스타일 */
    .footer-dropdown-select option {
        text-align: left;
        /* 드롭다운 내부 옵션 좌측 정렬 */
    }

    .news-footer-widget {
        padding: 25px 15px 10px 15px;

    }
}