/* ==========================================
   TWO-COLUMN LAYOUT (Profile + Content)
   ========================================== */
.split-layout {
    display: flex;
    gap: 0;
    width: 100%;
    position: relative;
}

/* Left Sidebar - Sticky within container */
.sidebar-fixed {
    width: 38%;
    position: sticky;
    top: 0;
    align-self: flex-start;
    background: #000000;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 120px 64px;
    min-height: 100vh;
}

.sidebar-content {
    width: 100%;
    max-width: 100%;
    padding-top: 0;
}

/* Right Content - Scrollable */
.content-scrollable {
    width: 62%;
    background: #000000;
    padding: 0 64px 120px 64px;
    display: flex;
    flex-direction: column;
}

/* ==========================================
   PAGE FOOTER (Full-width section below two-column layout)
   ========================================== */
.page-footer {
    width: 100%;
    background: #000000;
    padding: 64px 0 40px 0;
    text-align: center;
    border-top: none;
    clear: both;
}

.page-footer p {
    font-size: 13px;
    color: #7A7A7A;
    font-weight: 400;
    margin: 0;
}
