/* 기존 푸터 영역만 강제 스코프 */
/* ===== FINAL FOOTER FIX (SUB PAGES 포함) ===== */
.legacy-footer-scope #footerlayer_div{
  display:flex !important;
  flex-wrap:wrap !important;
  gap:30px !important;
  align-items:flex-start !important;
  justify-content:flex-start !important;
}

/* 4칸 공통 */
.legacy-footer-scope #footerlayer_div_left,
.legacy-footer-scope #footerlayer_div_center,
.legacy-footer-scope #footerlayer_div_center2,
.legacy-footer-scope #footerlayer_div_right{
  display:block !important;
  float:none !important;
  position:static !important;
  margin:0 !important;
  box-sizing:border-box !important;

  flex:1 1 260px !important;
  min-width:260px !important;
}

/* 데스크탑: 정확히 4등분 */
@media (min-width:1200px){
  .legacy-footer-scope #footerlayer_div_left,
  .legacy-footer-scope #footerlayer_div_center,
  .legacy-footer-scope #footerlayer_div_center2,
  .legacy-footer-scope #footerlayer_div_right{
    flex: 0 0 calc(25% - 22.5px) !important; /* gap 30 기준 보정 */
  }
}

/* table 기반 레거시 폭 폭주 차단 */
.legacy-footer-scope table{
  width:100% !important;
}