/*
Theme Name: Astra Child - phototaxi
Theme URI: https://phototaxi.co.kr
Description: Astra 자식 테마 (X 스타일 중앙 피드용)
Author: ngbsan
Template: astra
Version: 1.0
*/

@import url("../astra/style.css");


/* ==================== 좌우 메뉴 고정 ==================== */
@media (min-width: 1024px) {
    .ast-desktop .main-header-bar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 999;
        background: #ffffff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    /* 왼쪽 사이드 메뉴 고정 */
    .left-sidebar {
        position: fixed;
        left: 0;
        top: 80px;           /* 헤더 높이에 맞춰 조정 */
        height: calc(100vh - 80px);
        overflow-y: auto;
        z-index: 998;
        padding: 20px 0;
    }

    /* 오른쪽 사이드 메뉴 고정 */
    .right-sidebar {
        position: fixed;
        right: 0;
        top: 80px;
        height: calc(100vh - 80px);
        overflow-y: auto;
        z-index: 998;
        padding: 20px 0;
    }

    /* 중앙 콘텐츠 여백 조정 (좌우 고정 때문에) */
    .ast-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* 중앙 피드 영역 최대폭 제한 (X 스타일에 맞게) */
    .x-feed {
        max-width: 620px;
        margin: 0 auto;
    }
}


