/* SEO article & guides pages */

.article-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.article-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  background: rgba(6, 8, 15, 0.75);
  position: sticky;
  top: 0;
  z-index: 50;
}

.article-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.article-nav a:hover { color: var(--text); }

.article-nav .logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
}

.breadcrumb {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

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

.article-header h1 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.article-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.article-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 36px 0 14px;
  color: var(--text);
}

.article-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 24px 0 10px;
}

.article-body p,
.article-body li {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.article-body ul,
.article-body ol {
  padding-left: 1.4rem;
  margin-bottom: 20px;
}

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

.article-body a {
  color: var(--accent-2);
}

.article-cta {
  margin: 48px 0;
  padding: 28px 32px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(124, 108, 255, 0.15), rgba(0, 212, 170, 0.08));
  border: 1px solid rgba(124, 108, 255, 0.3);
  text-align: center;
}

.article-cta h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.article-cta p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.related-links {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.related-links h3 {
  font-size: 1rem;
  margin-bottom: 14px;
}

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

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

.related-links a {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
}

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

/* Guides index */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.guide-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}

.guide-card:hover {
  border-color: rgba(124, 108, 255, 0.4);
  transform: translateY(-3px);
}

.guide-card .tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.guide-card h2 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.guide-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.guides-section-title {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 24px 0;
}

.guides-section-title h1 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.guides-section-title p {
  color: var(--text-muted);
}

.faq-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.footer-links {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.82rem;
  text-decoration: none;
}

.footer-links a:hover { color: var(--text); }
