    .blog-container {
        max-width: 48rem;
        margin: 0 auto;
    }

    .blog-header {
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .blog-title {
        font-size: 2rem;
        font-weight: 700;
        color: #f1f5f9;
        margin-bottom: 0.5rem;
    }

    .blog-subtitle {
        color: #94a3b8;
        font-size: 1rem;
    }

    .blog-list {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .blog-card {
        background: linear-gradient(165deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
        border: 1px solid #334155;
        border-radius: 1rem;
        padding: 1.5rem;
        transition: all 0.3s ease;
        text-decoration: none;
        display: block;
    }

    .blog-card:hover {
        border-color: #14b8a6;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }

    .blog-card-title {
        font-size: 1.25rem;
        font-weight: 600;
        color: #f1f5f9;
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }

    .blog-card:hover .blog-card-title {
        color: #5eead4;
    }

    .blog-card-meta {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 0.75rem;
        font-size: 0.8125rem;
        color: #64748b;
    }

    .blog-card-meta span {
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }

    .blog-card-excerpt {
        color: #94a3b8;
        font-size: 0.9375rem;
        line-height: 1.6;
    }

    .blog-empty {
        text-align: center;
        padding: 3rem;
        color: #64748b;
    }

    .blog-lang-switch {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .blog-lang-btn {
        padding: 0.5rem 1rem;
        border-radius: 0.5rem;
        font-size: 0.875rem;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.2s;
    }

    .blog-lang-btn.active {
        background: linear-gradient(135deg, #0d9488, #14b8a6);
        color: white;
    }

    .blog-lang-btn:not(.active) {
        background: #1e293b;
        color: #94a3b8;
        border: 1px solid #334155;
    }

    .blog-lang-btn:not(.active):hover {
        border-color: #14b8a6;
        color: #f1f5f9;
    }

/* Blog Post styles */
    .post-container {
        max-width: 42rem;
        margin: 0 auto;
    }

    .post-back {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: #94a3b8;
        text-decoration: none;
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
        transition: color 0.2s;
    }

    .post-back:hover {
        color: #14b8a6;
    }

    .post-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #334155;
    }

    .post-title {
        font-size: 2rem;
        font-weight: 700;
        color: #f1f5f9;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    @media (min-width: 640px) {
        .post-title {
            font-size: 2.25rem;
        }
    }

    .post-meta {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1rem;
        color: #64748b;
        font-size: 0.875rem;
    }

    .post-meta span {
        display: flex;
        align-items: center;
        gap: 0.375rem;
    }

    .post-content {
        color: #cbd5e1;
        font-size: 1.0625rem;
        line-height: 1.8;
    }

    .post-content h2 {
        font-size: 1.5rem;
        font-weight: 600;
        color: #f1f5f9;
        margin-top: 2.5rem;
        margin-bottom: 1rem;
    }

    .post-content h3 {
        font-size: 1.25rem;
        font-weight: 600;
        color: #f1f5f9;
        margin-top: 2rem;
        margin-bottom: 0.75rem;
    }

    .post-content p {
        margin-bottom: 1.25rem;
    }

    .post-content ul,
    .post-content ol {
        margin-bottom: 1.25rem;
        padding-left: 1.5rem;
    }

    .post-content li {
        margin-bottom: 0.5rem;
    }

    .post-content strong {
        color: #f1f5f9;
        font-weight: 600;
    }

    .post-content em {
        color: #94a3b8;
    }

    .post-content a {
        color: #14b8a6;
        text-decoration: underline;
        text-underline-offset: 2px;
        transition: color 0.2s;
    }

    .post-content a:hover {
        color: #5eead4;
    }

    .post-content blockquote {
        border-left: 3px solid #14b8a6;
        padding-left: 1rem;
        margin: 1.5rem 0;
        color: #94a3b8;
        font-style: italic;
    }

    .post-content hr {
        border: none;
        border-top: 1px solid #334155;
        margin: 2rem 0;
    }

    .post-cta {
        margin-top: 3rem;
        padding: 2rem;
        background: linear-gradient(165deg, rgba(13, 148, 136, 0.15), rgba(15, 23, 42, 0.9));
        border: 1px solid rgba(20, 184, 166, 0.3);
        border-radius: 1rem;
        text-align: center;
    }

    .post-cta-title {
        font-size: 1.25rem;
        font-weight: 600;
        color: #f1f5f9;
        margin-bottom: 0.5rem;
    }

    .post-cta-text {
        color: #94a3b8;
        margin-bottom: 1rem;
    }

    .post-cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: linear-gradient(135deg, #0d9488, #14b8a6);
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 0.5rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s;
    }

    .post-cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(13, 148, 136, 0.4);
    }

    .post-keywords {
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid #334155;
    }

    .post-keywords-label {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: #64748b;
        margin-bottom: 0.5rem;
    }

    .post-keywords-list {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .post-keyword {
        background: #1e293b;
        color: #94a3b8;
        padding: 0.25rem 0.75rem;
        border-radius: 1rem;
        font-size: 0.8125rem;
    }

    /* Featured Image */
    .post-featured-image {
        margin-bottom: 2rem;
        border-radius: 1rem;
        overflow: hidden;
        background: #1e293b;
    }

    .post-featured-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* Blog Card with Thumbnail */
    .blog-card-with-image {
        display: flex;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .blog-card-thumbnail {
        flex-shrink: 0;
        width: 120px;
        height: 80px;
        border-radius: 0.5rem;
        overflow: hidden;
        background: #1e293b;
    }

    .blog-card-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .blog-card-content {
        flex: 1;
        min-width: 0;
    }

    @media (max-width: 480px) {
        .blog-card-with-image {
            flex-direction: column;
        }

        .blog-card-thumbnail {
            width: 100%;
            height: 160px;
        }
    }

    /* Inline images in post content */
    .post-content img {
        max-width: 100%;
        height: auto;
        border-radius: 0.75rem;
        margin: 1.5rem 0;
        display: block;
    }

    .post-content table {
        width: 100%;
        border-collapse: collapse;
        margin: 1.5rem 0;
        background: rgba(30, 41, 59, 0.5);
        border-radius: 0.5rem;
        overflow: hidden;
    }

    .post-content th,
    .post-content td {
        padding: 0.75rem 1rem;
        text-align: left;
        border-bottom: 1px solid #334155;
    }

    .post-content th {
        background: rgba(15, 23, 42, 0.8);
        color: #f1f5f9;
        font-weight: 600;
    }

    .post-content tr:last-child td {
        border-bottom: none;
    }

    .post-content code {
        background: rgba(30, 41, 59, 0.8);
        padding: 0.125rem 0.375rem;
        border-radius: 0.25rem;
        font-size: 0.875em;
        color: #5eead4;
    }

    .post-content pre {
        background: rgba(15, 23, 42, 0.9);
        padding: 1rem;
        border-radius: 0.5rem;
        overflow-x: auto;
        margin: 1.5rem 0;
    }

    .post-content pre code {
        background: none;
        padding: 0;
    }
