/**
 * Layout System
 */

/* Missing tokens referenced by templates */
:root {
    --ddw-space-40: 2.5rem;
}

.ddw-container,
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--ddw-space-24);
}

.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-main {
    flex: 1;
}