.blog-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  color: var(--text);
}
.blog-content h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--primary);
}
.blog-content h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}
.blog-content h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}
.blog-content p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
}
.btn-primary p{
  margin-bottom: 0;
  color: var(--bg);
}
.blog-content ul,
.blog-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: var(--text-muted);
}
.blog-content li {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  line-height: 1.6;
}
.cta-box {
  background: var(--primary);
  color: var(--bg);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  margin: 3rem 0;
  border: 4px solid var(--bg);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.2);
}
.cta-box h1,
.cta-box h2,
.cta-box h3 {
  color: var(--bg);
  margin-top: 0;
}
.cta-box p {
  color: var(--bg);
}
.cta-btn {
  background: var(--primary);
  color: var(--bg);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 1rem;
  transition: transform 0.2s;
  font-size: 1.1rem;
}
.cta-btn:hover {
  transform: scale(1.05);
  background: var(--primary-hover);
}
.breadcrumb {
  margin-bottom: 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}
.highlight-box {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--primary);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 10px 10px 0;
}
.highlight-box p {
  margin-bottom: 0.5rem;
}
/* Error and Correct examples */
.error-example {
  background: rgba(255, 0, 0, 0.1);
  border-left: 4px solid #ff4444;
  padding: 1rem;
  margin: 1rem 0;
}
.correct-example {
  background: rgba(0, 255, 0, 0.1);
  border-left: 4px solid #00c851;
  padding: 1rem;
  margin: 1rem 0;
}
/* Checklist */
.check-list {
  list-style: none;
  padding: 0;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.check-list li::before {
  content: "✅";
}
/* Comparison table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  border: 1px solid var(--border);
}
.comparison-table th,
.comparison-table td {
  padding: 1rem;
  border: 1px solid var(--border);
  text-align: left;
}
.comparison-table th {
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary);
}
.comparison-table td {
  color: var(--text-muted);
}

/* Navigation and Link Styles */
.blog-nav-link {
  text-decoration: none;
}

.blog-nav-title {
  color: var(--text);
  text-decoration: none;
  font-weight: bold;
  font-family: 'Space Grotesk';
  font-size: 1.5rem;
}

.blog-nav-app-link {
  color: var(--primary);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.lang-switcher a {
  text-decoration: none;
  color: var(--text-muted);
  opacity: 0.7;
}

.lang-switcher a.active {
  font-weight: 800;
  text-decoration: underline;
  color: var(--primary);
  opacity: 1;
}

/* Logo and Image Styles */
.blog-logo-img {
  height: 40px;
  width: 50px;
  vertical-align: middle;
}

/* CTA Box Text Overrides */
.cta-box h3 {
  color: var(--bg);
  margin-top: 0;
}

.cta-box p {
  color: var(--bg);
}

/* Back to Blog Link */
.back-to-blog {
  color: var(--primary);
  text-decoration: none;
}

/* Footer Styles */
.blog-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  margin-top: 2rem;
}

.blog-footer p {
  color: var(--text-muted);
  text-align: center;
}

.blog-footer a {
  color: var(--primary);
  text-decoration: none;
}

/* Go to App link */
.go-to-app {
  color: var(--primary);
}

/* Footer container */
.blog-footer-container {
  text-align: center;
}

/* Article link */
.article-link {
  text-decoration: none;
  color: inherit;
}
 
