
.fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff; /* 필요에 따라 변경 */
  z-index: 1000;
}

/* 광고 컨테이너 중앙 정렬 및 여백 조정 (선택사항) */
.ad-container {
  text-align: center;
  margin: 10px 0;
}

/* 미디어 쿼리를 통해 광고 노출 제어 */
@media screen and (min-width: 768px) {
  .ad-container .pc-ad {
    display: block !important;
  }
  .ad-container .mobile-ad {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .ad-container .pc-ad {
    display: none !important;
  }
  .ad-container .mobile-ad {
    display: block !important;
  }
}
