* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #374151
}

.bg-gray-50 {
    background-color: #f9fafb
}

.bg-gray-100 {
    background-color: #f3f4f6
}

.bg-white {
    background-color: #fff
}

.bg-blue-50 {
    background-color: #eff6ff
}

.max-w-7xl {
    max-width: 80rem
}

.max-w-none {
    max-width: none
}

.mx-auto {
    margin-left: auto;
    margin-right: auto
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem
}

.p-4 {
    padding: 1rem
}

.p-8 {
    padding: 2rem
}

.pl-6 {
    padding-left: 1.5rem
}

.mb-2 {
    margin-bottom: .5rem
}

.mb-4 {
    margin-bottom: 1rem
}

.mb-6 {
    margin-bottom: 1.5rem
}

.mt-2 {
    margin-top: .5rem
}

.mt-6 {
    margin-top: 1.5rem
}

.mt-8 {
    margin-top: 2rem
}

.my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem
}

.text-gray-900 {
    color: #111827
}

.text-gray-600 {
    color: #4b5563
}

/* These styles are now handled in individual blog post inline styles for theme support */
.text-blue-600 {
    color: #2563eb
}

.text-blue-700 {
    color: #1d4ed8
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem
}

.font-bold {
    font-weight: 700
}

.font-semibold {
    font-weight: 600
}

.w-full {
    width: 100%
}

.h-64 {
    height: 16rem
}

.object-cover {
    object-fit: cover
}

.shadow {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px 0 rgba(0, 0, 0, .06)
}

.overflow-hidden {
    overflow: hidden
}

.rounded-lg {
    border-radius: .5rem
}

.border-l-4 {
    border-left-width: 4px
}

.border-blue-500 {
    border-color: #3b82f6
}

.border-gray-200 {
    border-color: #e5e7eb
}

.border-t {
    border-top-width: 1px
}

.list-disc {
    list-style-type: disc
}

.list-decimal {
    list-style-type: decimal
}

a {
    color: inherit;
    text-decoration: none
}

.hover\:underline:hover {
    text-decoration: underline
}

.prose {
    color: #374151;
    max-width: 65ch
}

.prose p {
    margin-bottom: 1rem
}

.prose h1 {
    color: #111827;
    font-weight: 800;
    font-size: 2.25rem;
    margin-bottom: 1rem;
    line-height: 1.1
}

.prose h2 {
    color: #111827;
    font-weight: 700;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3
}

.prose h3 {
    color: #111827;
    font-weight: 600;
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: .75rem
}

.prose ul,
.prose ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem
}

.prose li {
    margin-bottom: .5rem
}

.prose strong {
    font-weight: 600;
    color: #111827
}

.grid {
    display: grid
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
}

.gap-4 {
    gap: 1rem
}

.pt-8 {
    padding-top: 2rem
}

.blog-post-container {
    background: #fff;
    border-radius: .5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px 0 rgba(0, 0, 0, .06)
}

.blog-post-image {
    width: 100%;
    height: 16rem;
    object-fit: cover
}

.blog-post-content {
    padding: 2rem
}

.blog-post-header {
    margin-bottom: 1.5rem
}

.blog-post-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    color: #111827
}

.blog-post-meta {
    margin-top: .5rem;
    color: #4b5563
}

.info-box {
    background-color: #eff6ff;
    border-left: 4px solid #3b82f6;
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: .25rem
}

.info-box p {
    color: #1d4ed8;
    margin: 0
}

.back-link {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb
}

.back-link a {
    color: #2563eb;
    text-decoration: none;
    transition: color .3s ease
}

.back-link a:hover {
    color: #1d4ed8;
    text-decoration: underline
}

@media (min-width:640px) {
    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem
    }
}

@media (min-width:1024px) {
    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem
    }

    .lg\:px-3 {
        padding-left: .75rem;
        padding-right: .75rem
    }
}

@media (max-width:768px) {
    .blog-post-content {
        padding: 1.5rem
    }

    .blog-post-title {
        font-size: 1.5rem;
        line-height: 2rem
    }

    .text-3xl {
        font-size: 1.5rem;
        line-height: 2rem
    }

    .text-2xl {
        font-size: 1.25rem;
        line-height: 1.75rem
    }

    .p-8 {
        padding: 1.5rem
    }
}

@media (prefers-color-scheme:dark) {
    body {
        background-color: #111827;
        color: #f3f4f6
    }

    .bg-gray-50,
    .bg-gray-100 {
        background-color: #111827
    }

    .bg-white {
        background-color: #1f2937
    }

    .text-gray-900 {
        color: #f3f4f6
    }

    .text-gray-600 {
        color: #d1d5db
    }

    .blog-post-container {
        background: #1f2937;
        border: 1px solid #374151
    }

    .prose {
        color: #d1d5db
    }

    .prose h1,
    .prose h2,
    .prose h3 {
        color: #f3f4f6
    }

    .info-box {
        background-color: #1e3a8a;
        border-left-color: #3b82f6
    }

    .info-box p {
        color: #93c5fd
    }

    .border-gray-200 {
        border-color: #374151
    }
}

@media print {
    .blog-post-container {
        box-shadow: none;
        border: 1px solid #e5e7eb
    }

    .back-link {
        display: none
    }

    body {
        background: #fff;
        color: #000
    }
}

.blog-post-image {
    will-change: auto
}

.blog-post-container:focus-within {
    outline: 2px solid #3b82f6;
    outline-offset: 2px
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.blog-post-container {
    animation: fadeIn .6s ease forwards
}

::selection {
    background-color: #3b82f6;
    color: #fff
}

::-moz-selection {
    background-color: #3b82f6;
    color: #fff
}