/* Standalone SEO guide pages — load with global.css + themes.css on each page */

body.seo-landing {
  margin: 0;
  min-height: 100vh;
  background: var(--bg-primary);
  color: var(--text);
}

.seo-landing-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}

.seo-landing-top a.brand {
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
}

.seo-landing-top a.brand:hover {
  color: var(--accent);
}

.seo-landing-top .to-app {
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
}

.seo-landing-top .to-app:hover {
  text-decoration: underline;
}

.seo-article-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 28px 20px 48px;
}

.seo-breadcrumb {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

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

.seo-breadcrumb a:hover {
  text-decoration: underline;
}

.seo-article h1 {
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 12px 0;
  color: var(--text);
}

.seo-article .lead {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 20px 0;
}

.seo-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 32px;
}

.seo-cta-row .btn-primary {
  display: inline-flex;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border: 1px solid var(--accent);
}

.seo-cta-row .btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.seo-cta-row .secondary-link {
  font-size: 13px;
  color: var(--text-muted);
}

.seo-article section {
  margin-bottom: 28px;
}

.seo-article h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 10px 0;
  color: var(--text);
}

.seo-article p {
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 12px 0;
  color: var(--text-muted);
}

.seo-article p strong {
  color: var(--text);
}

.seo-article ul {
  margin: 0 0 12px 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
}

.seo-article li {
  margin-bottom: 6px;
}

.code-sample {
  margin: 12px 0;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  overflow-x: auto;
}

.code-sample code {
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.5;
  color: var(--text);
  white-space: pre;
  display: block;
}

.seo-related {
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.seo-related h2 {
  font-size: 1rem;
}

.seo-related ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.seo-related li {
  margin-bottom: 8px;
}

.seo-related a {
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
}

.seo-related a:hover {
  text-decoration: underline;
}

.seo-landing-footer {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px 32px;
  font-size: 12px;
  color: var(--text-muted);
}

.seo-landing-footer a {
  color: var(--accent);
}
