/* Custom styles for HTML version */
/* Tailwind CSS will be loaded via CDN */

/* Additional custom styles if needed */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

/* Mobile menu animation */
.mobile-menu.mobile-menu-open {
  display: flex !important;
}

/* Tabs functionality */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-trigger.active {
  background-color: var(--background);
  border-color: var(--input);
}

/* Icon styles */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* Blog content styles */
.blog-content {
  font-size: 1.125rem;
  line-height: 1.75;
  color: oklch(0.2 0 0);
}

.blog-content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: oklch(0.2 0 0);
}

.blog-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  color: oklch(0.2 0 0);
}

.blog-content p {
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.blog-content ul,
.blog-content ol {
  margin-top: 1rem;
  margin-bottom: 1.25rem;
  padding-left: 1.75rem;
}

.blog-content ul {
  list-style-type: disc;
}

.blog-content ol {
  list-style-type: decimal;
}

.blog-content li {
  margin-bottom: 0.5rem;
  line-height: 1.75;
}

.blog-content li::marker {
  color: oklch(0.65 0.19 35);
}

.blog-content strong {
  font-weight: 600;
  color: oklch(0.2 0 0);
}

.blog-content a {
  color: oklch(0.65 0.19 35);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.blog-content a:hover {
  color: oklch(0.55 0.19 35);
}

.blog-content hr {
  margin-top: 2rem;
  margin-bottom: 2rem;
  border: none;
  border-top: 1px solid oklch(0.92 0 0);
}

.blog-content blockquote {
  margin: 1.5rem 0;
  padding-left: 1rem;
  border-left: 4px solid oklch(0.65 0.19 35);
  font-style: italic;
  color: oklch(0.5 0 0);
}

.blog-content code {
  background-color: oklch(0.96 0 0);
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-size: 0.875em;
  font-family: 'Courier New', monospace;
  color: oklch(0.65 0.19 35);
}

.blog-content pre {
  background-color: oklch(0.96 0 0);
  padding: 1rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 1.25rem 0;
}

.blog-content pre code {
  background-color: transparent;
  padding: 0;
}

.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}

.blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.blog-content table th,
.blog-content table td {
  padding: 0.75rem;
  border: 1px solid oklch(0.92 0 0);
  text-align: left;
}

.blog-content table th {
  background-color: oklch(0.96 0 0);
  font-weight: 600;
}

@media (max-width: 768px) {
  .blog-content {
    font-size: 1rem;
  }
  
  .blog-content h2 {
    font-size: 1.5rem;
  }
  
  .blog-content h3 {
    font-size: 1.25rem;
  }
}


