/* =============================================================
   ALFA OMS — CMS Page Shell
   ============================================================= */

:root {
    --cms-primary: #4f46e5;
    --cms-ink: #0f172a;
    --cms-muted: #64748b;
    --cms-line: #e2e8f0;
    --cms-bg: #ffffff;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.cms-body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--cms-ink);
    background: var(--cms-bg);
    -webkit-font-smoothing: antialiased;
}

.cms-content {
    width: 100%;
    min-height: 100vh;
}

.cms-content img {
    max-width: 100%;
    height: auto;
}

.cms-content a {
    color: var(--cms-primary);
}

.cms-content h1,
.cms-content h2,
.cms-content h3 {
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--cms-ink);
}

.cms-content p {
    color: inherit;
}
