body {
    margin: 0;
    padding: 0;
    background: var(--background-color);
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Roboto", sans-serif;
    font-size: 15px;
    color: var(--primary-text-color);
}

.layout-root {
    display: flex;
    flex-direction: column;
}


.layout-main {
    width: 100%;
    max-width: 1680px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 240px 1fr 320px; /* ← 3 колонки */
    gap: 24px;
    padding: 24px;
    box-sizing: border-box;
}

.layout-rightbar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pin {
    background: var(--accent-color);
    border-radius: 2px;
    width: 6px;
    align-self: stretch;
}