.page-layout {
    display: flex;
    justify-content: center;
    position: relative;
    padding: 20px;
    gap: 20px;
    min-height: 100vh;
}

.content-wrapper {
    width: 100%;
    max-width: 680px;
}

.ad-sidebar {
    position: sticky;
    top: 100px;
    width: 160px;
    height: 600px;
    display: none;  /* 모바일에서 기본적으로 숨김 */
}

.ad-bottom {
    width: 100%;
    min-height: 100px;
    margin: 20px auto;
    max-width: 680px;
    display: block;  /* 모바일에서 기본적으로 표시 */
}

/* 데스크톱 화면 (768px 이상) */
@media (min-width: 768px) {
    .ad-sidebar {
        display: block;
    }
    
    .ad-bottom {
        display: none;
    }
}

/* 광고 영역 스타일링 */
.ad-placeholder {
    background: #f8f9fa;
    border: 1px dashed #dee2e6;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 0.875rem;
    text-align: center;
    width: 100%;
    height: 100%;
}