/* Guide article styles */
.guide-article {
  padding: 100px 0 60px;
}

.back-link {
  display: inline-block;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 16px;
}

.back-link:hover {
  text-decoration: underline;
}

.guide-device-tag {
  display: inline-block;
  background: rgba(0,122,255,0.1);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.guide-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.guide-intro {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 24px;
}

.guide-meta-bar {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
  color: var(--text-muted);
}

.guide-content {
  max-width: 800px;
}

/* Warning/tip boxes */
.warning-box,
.tip-box {
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 32px;
}

.warning-box {
  background: rgba(255,55,95,0.1);
  border-left: 4px solid var(--iphone);
}

.warning-box ul {
  margin: 12px 0 0 20px;
}

.warning-box li {
  margin-bottom: 8px;
}

.tip-box {
  background: rgba(0,122,255,0.1);
  border-left: 4px solid var(--accent);
  margin-top: 16px;
}

/* Sections */
.guide-section {
  margin-bottom: 48px;
}

.guide-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.guide-section > ul {
  margin-left: 20px;
}

.guide-section > ul li {
  margin-bottom: 10px;
  color: var(--text-muted);
}

/* Tools list */
.tools-list {
  display: grid;
  gap: 16px;
}

.tool-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.tool-item strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.tool-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.affiliate-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.affiliate-link:hover {
  text-decoration: underline;
}

/* Steps */
.step {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.step-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* Pro CTA box */
.pro-cta-box {
  background: linear-gradient(135deg, rgba(0,122,255,0.1), rgba(94,92,230,0.1));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  margin-top: 32px;
}

.pro-cta-box h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.pro-cta-box p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.partner-note {
  display: block;
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Mobile */
@media (max-width: 768px) {
  .guide-header h1 {
    font-size: 1.8rem;
  }

  .guide-intro {
    font-size: 1rem;
  }

  .guide-meta-bar {
    gap: 16px;
  }

  .step {
    flex-direction: column;
    gap: 12px;
  }
}
