/* ══════════════════════════════════════
   LAYOUT — layout.css
   Block: Main structural layout (main, pages)
   ══════════════════════════════════════ */

/* ── Main content area ── */
.main {
    margin-left: 240px;
    flex: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow-x: hidden;
}

/* ── Pages ── */
.page {
    display: none;
    padding: 28px 32px;
    flex: 1;
    animation: fadeUp .22s ease;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}

.page.active {
    display: block;
}

/* ── Two column grid ── */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ── Three column grid ── */
.three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 22px;
}

/* ── Section separator ── */
.section-sep {
    margin: 24px 0 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-sep-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.section-sep-line {
    flex: 1;
    height: 1px;
    background: var(--border);
}
