/* mlslive.online — 間距/字體/header/footer 基礎樣式（WF相容化用） */
:root {
  --container: 1180px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --font-editorial: 'Oswald', sans-serif;
  --font-mono: 'Source Sans Pro', sans-serif;
}

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

body {
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }

.site-header {
  background: var(--clr-bg-dark);
  border-bottom: 4px solid var(--clr-accent);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  font-family: var(--font-editorial);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
}
.header-nav { display: flex; gap: 22px; }
.nav-link {
  color: #C7D3CB;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}
.nav-link:hover { color: #fff; }

.site-footer {
  border-top: 4px solid var(--clr-bg-dark);
  padding: 24px 0 40px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--clr-text-muted);
}
.footer-inner a {
  color: var(--clr-text-muted);
  text-decoration: none;
  margin-left: 16px;
}
.footer-inner a:hover { color: var(--clr-accent); }
