/* 公会左右布局样式 */

.clans-layout {
    display: flex !important;
    flex-direction: row !important;
    width: 100%;
    margin-top: 20px;
}

/* 左侧导航容器 */
.clans-sidebar {
    width: 196px !important;
    min-width: 196px !important;
    margin-right: 20px;
    flex-shrink: 0;
}

/* 右侧内容容器 */
.clans-content {
    flex-grow: 1 !important;
    width: calc(100% - 216px) !important;
    min-width: 0; /* 防止 flex 子元素溢出 */
}

/* 响应式设计 */
@media (max-width: 992px) {
    .clans-layout {
        flex-direction: column;
    }
    
    .clans-sidebar {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .clans-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .clans-sidebar {
        min-width: auto;
    }
}