/* Standard page structure for all pages */
body {
    font-family: 'Inter', sans-serif;
    background: #FFFFFC !important;
    color: #0B1215;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    padding: 0;
}

/* Main container for all pages */
.main-container {
    width: 100%;
}

/* For pages with two-panel layout (Projects, Thoughts, Jobs) */
.main-container.two-panel {
    position: fixed;
    top: var(--header-height, 64px);
    left: 0;
    bottom: 0;
    display: flex;
    height: calc(100vh - var(--header-height, 64px));
    overflow: hidden;
}

/* For single column pages (About, Contact, Speaking) */
.main-container.single-column {
    display: flex;
    justify-content: center;
    padding: 40px;
    margin-top: var(--header-height, 64px);
    min-height: calc(100vh - var(--header-height, 64px));
    background: #FFFFFC;
}

.single-column-content {
    width: 100%;
    max-width: 1200px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .main-container.two-panel {
        flex-direction: column;
    }

    .main-container.single-column {
        padding: 20px;
        padding-bottom: 60px;
    }
}
