/* ClaviSay SEO article base styles */
:root {
  --bg: oklch(98% 0.004 95);
  --surface: oklch(100% 0.002 95);
  --fg: oklch(20% 0.018 70);
  --muted: oklch(48% 0.012 70);
  --border: oklch(90% 0.006 95);
  --accent: oklch(52% 0.10 28);
  --accent-soft: color-mix(in oklch, var(--accent) 10%, transparent);
  --font-display: 'Iowan Old Style', 'Charter', Georgia, serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono: ui-monospace, 'JetBrains Mono', Menlo, monospace;
  --container: 960px;
  --gutter: 24px;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-card: 0 1px 3px oklch(0% 0 0 / 0.04), 0 8px 24px oklch(0% 0 0 / 0.06);
  --shadow-float: 0 18px 45px oklch(0% 0 0 / 0.12);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  text-wrap: balance;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
}

.seo-page {
  position: relative;
  min-height: 100vh;
  background: var(--bg);
}

.seo-page > * {
  position: relative;
  z-index: 1;
}

.container {
  width: min(var(--container), 100%);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.15s,
    border-color 0.15s,
    transform 0.05s;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--surface);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: color-mix(in oklch, var(--accent) 88%, black);
  text-decoration: none;
}

.seo-h1 {
  font-size: clamp(36px, 5.5vw, 52px);
  line-height: 1.08;
  margin-bottom: 16px;
}

.seo-h2 {
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.12;
  margin-bottom: 16px;
}

.seo-body {
  color: var(--muted);
  max-width: 58ch;
}

.seo-body p + p {
  margin-top: 14px;
}

.seo-body a {
  font-weight: 500;
}

.seo-footer {
  padding: 40px 0 56px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}

.seo-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.seo-footer__links {
  display: flex;
  gap: 20px;
}

.seo-footer__links a {
  color: var(--muted);
}

.seo-footer__links a:hover {
  color: var(--fg);
}
