/* ═══════════════════════════════════════════════
   流光极速 - zh-cn SEO Page Specific Styles
   ═══════════════════════════════════════════════ */

/* ─── SEO Hero ─── */
.seo-hero {
  background: #000000;
  padding: 140px 0 80px;
  text-align: center;
}

.seo-hero-title {
  font-family: 'Noto Serif SC', Georgia, serif;
  font-size: clamp(36px, 5vw, 64px);
  color: #F3EFE6;
  font-weight: 700;
}

.seo-hero-subtitle {
  font-size: 20px;
  color: #847D71;
  margin-top: 16px;
}

.seo-hero-cta {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFF00;
  color: #000000;
  border-radius: 9999px;
  padding: 16px 40px;
  font-weight: 700;
  font-size: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.seo-hero-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 30px rgba(255, 255, 0, 0.4);
}

/* ─── Article Content ─── */
.article-section {
  background: #F3EFE6;
  padding: 100px 0;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.article-block {
  margin-bottom: 60px;
}

.article-block:last-child {
  margin-bottom: 0;
}

.article-title {
  font-family: 'Noto Serif SC', Georgia, serif;
  font-size: 28px;
  color: #000000;
  font-weight: 700;
  margin-bottom: 20px;
}

.article-text {
  font-size: 18px;
  line-height: 1.8;
  color: #847D71;
}

.article-text strong {
  color: #000000;
  font-weight: 600;
}

/* ─── Tips Section ─── */
.tips-section {
  background: #FFFF00;
  padding: 80px 0;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.tip-card {
  background: #000000;
  color: #F3EFE6;
  padding: 32px;
  transition: transform 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-4px);
}

.tip-title {
  font-size: 18px;
  font-weight: 700;
  color: #FFFF00;
  margin-bottom: 12px;
}

.tip-desc {
  font-size: 14px;
  color: #F3EFE6;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .tips-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }
  .article-content {
    padding: 0 16px;
  }
}

/* ─── CTA Bottom ─── */
.cta-bottom-section {
  background: #000000;
  padding: 80px 0;
  text-align: center;
}

.cta-bottom-title {
  font-family: 'Noto Serif SC', Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  color: #F3EFE6;
  font-weight: 700;
  margin-bottom: 32px;
}
