#wizon-footer {
    width: 100%;
    padding: 35px 20px;
    box-sizing: border-box;
    line-height: 1.6;
}

#wizon-footer .wf-container {
    margin: 0 auto;
    width: 100%;
}

/* 상단 링크 */
.wf-links-row {
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 15px;
}

.wf-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.wf-links a {
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

/* 푸터 메인 레이아웃 */
.wf-body-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 25px;
}

/* 기본 정보 영역 */
.wf-info-col {
    flex: 1 1 auto;
}

.wf-company-name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    color: inherit;
}

/* 줄바꿈 시 끝자락 / 노출 방지를 위한 Flex 레이아웃 구조 개선 */
.wf-info-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 0px;
    row-gap: 4px;
    overflow: hidden;
}

.wf-info-item {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

/* 개별 항목 뒤 구분자 */
.wf-info-item:not(:last-child)::after {
    content: "/";
    margin: 0 8px;
    opacity: 0.4;
}

/* 세로 정렬 이미지 영역 */
.wf-images-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wf-images-col img {
    max-height: 45px;
    width: auto;
    object-fit: contain;
    display: block;
}

.wf-images-col a {
    display: inline-block;
    text-decoration: none;
}

/* 패밀리 사이트 & 소셜 영역 */
.wf-aside-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    flex-shrink: 0;
}

.wf-family-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.wf-family-dropdown {
    position: relative;
}

/* Family Site 버튼 - 기본 스타일 및 테마 영향 강제 차단 */
#wizon-footer .wf-fam-btn,
#wizon-footer button.wf-fam-btn {
    background: #788995;
    background-color: #788995;
    color: #ffffff;
    border: 1px solid #788995;
    padding: 8px 16px;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border-radius: 2px;
    box-sizing: border-box;
    outline: none;
    box-shadow: none;
    text-shadow: none;
    transition: all 0.2s ease;
}

.wf-fam-list {
    display: none;
    position: absolute;
    bottom: 100%;
    right: 0;
    width: 100%;
    min-width: 160px;
    background: #ffffff;
    border: 1px solid #dcdcdc;
    list-style: none;
    margin: 0 0 4px 0;
    padding: 0;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
    z-index: 9999;
}

.wf-family-dropdown.active .wf-fam-list {
    display: block;
}

.wf-fam-list li a {
    display: block;
    padding: 8px 12px;
    color: #333333;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    font-size: 12px;
}

.wf-fam-list li a:hover {
    background-color: #f8f9fa;
    color: #000000;
}

/* 소셜 아이콘 */
.wf-social-container {
    display: flex;
    gap: 12px;
}

.wf-social-btn {
    color: #666666;
    text-decoration: none;
    font-size: 20px;
    transition: transform 0.2s, opacity 0.2s;
}

.wf-social-btn:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* PC 환경 반응형 옵션 (PC에서 버튼 크기 확대) */
@media (min-width: 992px) {
    #wizon-footer .wf-fam-btn,
    #wizon-footer button.wf-fam-btn {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 140px;
    }
}

/* 모바일 반응형 디자인 */
@media (max-width: 991px) {
    .wf-body-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .wf-images-col {
        flex-direction: row;
        margin: 10px 0;
    }

    .wf-aside-col {
        width: 100%;
        align-items: flex-start;
        margin-top: 15px;
    }

    .wf-family-container {
        width: 100%;
        flex-direction: column;
    }

    #wizon-footer .wf-fam-btn,
    #wizon-footer button.wf-fam-btn {
        width: 100%;
        justify-content: space-between;
    }

    .wf-info-item {
        white-space: normal;
    }

    .wf-info-item:not(:last-child)::after {
        content: "/";
        margin: 0 6px;
    }
}