/**
 * Minimal layout for standalone SLEEK (no site style.css).
 * Noto Sans KR is loaded from Google Fonts in index.php (woff files are not in repo).
 */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body.sleek-page {
    margin: 0;
    font-family: "Noto Sans KR", sans-serif;
    -webkit-font-smoothing: antialiased;
}

.no-container {
    width: 100%;
    max-width: 131rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .no-container {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

.no-wrap {
    min-height: 100vh;
}
