html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  background-color: #fdfdfd; 
  color: #1e293b;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.03rem;
  line-height: 1.7;
}

.blog-content {
  max-width: 75%;
  margin: 40px auto;
  padding: 20px;
}

.home-link {
  display: inline-block;
  margin: 20px 0 0 40px;
  font-size: 0.95rem;
  color: #0c7caa;
  background: none;
  text-decoration: none;
  transition: color 0.2s ease;
}
.home-link:hover {
  color: #065374;
}

.blog-content h1,
.blog-content h2,
.blog-content h3 {
  font-family: 'Merriweather', serif;
  color: #0f172a;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.blog-content h1 { font-size: 2.25rem; }
.blog-content h2 { font-size: 1.75rem; }
.blog-content h3 { font-size: 1.35rem; }

.blog-content p {
  margin-bottom: 16px;
  text-align: justify;
}

.blog-content em { font-style: italic; }
.blog-content strong { font-weight: bold; }

.blog-content ul,
.blog-content ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

.blog-content blockquote {
  border-left: 4px solid #cbd5e1;
  padding-left: 16px;
  margin: 20px 0;
  color: #334155;
  font-style: italic;
}

.blog-content hr {
  border: none;
  border-top: 1px solid #cbd5e1;
  margin: 30px 0;
}

.blog-content a {
  color: #0c7caa;
  text-decoration: none;
  border-bottom: 1px dashed #0c7caa;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.blog-content a:hover {
  color: #065374;
  border-color: #065374;
}

.blog-content :not(pre) > code {
  font-family: 'Fira Code', 'Courier New', Courier, monospace;
  font-variant-ligatures: none;     
  -webkit-font-feature-settings: "liga" 0;
  font-feature-settings: "liga" 0;
  background-color: #e7e6e6;
  padding: 2px 4px;
  border-radius: 4px;
  font-size: 1rem;
  color: #1e293b;
}

pre code.hljs {
  display: block;
  overflow-x: auto;
  padding: 1.25em;
  border-radius: 8px;
  font-family: 'Fira Code', 'Courier New', Courier, monospace;
  font-variant-ligatures: none;     
  -webkit-font-feature-settings: "liga" 0;
  font-feature-settings: "liga" 0;
  font-size: 0.95rem;
  line-height: 1.5;
  background-color: #f5f5f5;
  color: #1e293b;
  border: 1px solid #e0e0e0;
}


pre {
  margin: 24px 0;
}

.hljs, .hljs * {
  background: none;
}

.hljs-keyword,
.hljs-selector-tag,
.hljs-literal { color: #005cc5; font-weight: 600; }
.hljs-string,
.hljs-attr,
.hljs-symbol,
.hljs-template-variable { color: #22863a; }
.hljs-title,
.hljs-section { color: #6f42c1; }
.hljs-comment,
.hljs-quote { color: #6a737d; font-style: italic; }
.hljs-number,
.hljs-meta { color: #b31d28; }
.hljs-built_in,
.hljs-builtin-name { color: #e36209; }

pre code {
  background: none;
  color: inherit;
  padding: 1em;
  border-radius: 8px;
}

h1 code { font-size: 2.25rem !important; }
h3 code { font-size: 1.35rem !important; }

@media (max-width: 600px) {
  .blog-content {
    padding: 20px;
    margin: 20px auto;
  }

  .home-link { margin-left: 20px; }
}
