@import url('https://fonts.googleapis.com/css2?family=SUSE:wght@400');



.blog-header {
    text-align: center;
    padding: 40px 0 40px;
    max-width: 800px;
    margin: 0 auto;
}

.blog-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
    line-height: 1;

    color: var(--accent-light);
    animation: rainbow 15s ease-in-out infinite;
}

.blog-subtitle {
    font-size: 16px;
    color: var(--title);
    margin: 0 0 4px;
    font-weight: 400;
    line-height: 1.3;
}

.blog-posts {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.posts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 12px;
        font-family: 'Inconsolata', monospace;
}

.posts-header h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 0;
    color: var(--text);
    
}

.post-count {
    font-size: 14px;
    color: var(--title);
    background: var(--item);
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid var(--border);
}

.toggle-btn {
    font-size: 14px;
    color: var(--title);
    background: var(--item);
    padding: 9px 12px;
    border-radius: 6px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inconsolata', monospace;
}

.toggle-btn:hover {
    border-color: var(--accent);
}

.toggle-btn.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.not-short-story {
    display: none;
}

.blog-post {
    background: var(--item);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
    transition: all 0.3s;
    cursor: pointer;
}

.blog-post:hover {
    background: var(--item-background-2);
    border-color: var(--accent);
    transform: translateY(-1px);
}
.short-story {
    border: 1px solid var(--accent);
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--title);
}

.post-information {
    background: var(--item);
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid var(--border);
    margin: 0;
    font-size: 13px;
    color: var(--title);
    display: inline;
}

.blog-post h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--text);
    line-height: 1.3;
}

.blog-post h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-post:hover h3 a {
    color: var(--accent);
}


.back-home {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--border);
    color: var(--accent);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s;
}

.back-home:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}


.post-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.post-header {
    text-align: center;
    padding: 40px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 10px;
}

.post-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1.2;

    color: var(--accent-light);
    animation: rainbow 15s ease-in-out infinite;
}

.post-disclaimer {
    font-style: italic;
    font-size: 16px;
}

.post-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: var(--title);
    margin-bottom: 20px;
}


.post-content {
    line-height: 1.7;
    font-size: 20px;
    color: var(--text);
    padding-right: 20px;
    padding-left: 20px;
    max-width: 80vw;
    margin-left: auto;
    margin-right: auto;
    font-family: 'SUSE';
}

.post-content p {
    margin: 0 0 1.5rem;
}

.post-content h2 {
    line-height: 1.2;
    font-size: 32px;
    font-weight: 600;
    margin: 40px 0 20px;
    color: var(--text);
    font-family: 'Inconsolata', monospace;
}

.post-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 32px 0 16px;
    color: var(--text);
}

.post-content a {
    color: var(--accent-light);
    text-decoration: underline;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

.post-content a:hover {
    border-bottom-color: var(--accent);
}

.post-content blockquote {
    background: var(--item);
    border-left: 4px solid var(--accent);
    padding: 20px 24px;
    margin: 32px 0;
    border-radius: 8px;
    font-style: italic;
    color: var(--title);
    font-family: 'Inconsolata', monospace;
}

.post-content code {
    background: var(--item);
    border: 1px solid var(--border);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Inconsolata', 'Menlo', monospace;
    font-size: 16px;
}

.post-content ul, .post-content ol {
    margin: 0 0 24px;
    padding-left: 24px;
}

.post-content li {
    margin-bottom: 8px;
}

.post-content img {
    max-width: 100%;
    max-height: 55vh;
    height: auto;
    border-radius: 8px;
    margin: 10px auto;
    display: block;
    margin-top: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.short-story-content p {
    margin-bottom: 0.0em;
    text-indent: 3em;
				
}
.short-story-content p:first-of-type {
    text-indent: 0;
}

.caption {
    font-size: 14px;
    color: var(--title);
    text-align: center;
    font-style: italic;
    line-height: 1.4;
}

.column-2 {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}
.post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 60px 0 40px;
    padding: 24px 0;
    border-top: 1px solid var(--border);
}

.nav-link {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--border);
    color: var(--accent);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-link:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.nav-link.primary {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.nav-link.primary:hover {
    background: var(--item);
    color: var(--accent);
}

@media (max-width: 768px) {
    .post-information {
        padding: 3px 6px;
    }
    .blog-header {
        padding: 10px 16px 20px;
    }
    
    .blog-header h1 {
        font-size: 36px;
    }
    
    .blog-subtitle {
        font-size: 16px;
    }
    
    .blog-posts {
        padding: 0 16px;
    }
    
    .posts-header {
        align-items: flex-start;
        gap: 12px;
    }
    
    .header-controls {
        flex-direction: column;
        align-items: flex-end;
        gap: 8px;
    }
    
    .posts-header h2 {
        font-size: 24px;
    }
    
    .blog-post {
        padding: 14px;
    }
    
    .post-meta {
        align-items: flex-start;
        gap: 6px;
    }
    
    .blog-post h3 {
        font-size: 18px;
    }
    
    .post-container {
        padding: 0 16px;
    }
    
    .post-header {
        padding: 32px 0 20px;
    }
    
    .post-title {
        font-size: 32px;
    }
    
    .post-content {
        font-size: 15px;
        line-height: 1.6;
        padding-right: 5px;
        padding-left: 5px;
        max-width: 100vw;
    }
    
    .post-content h2 {
        font-size: 28px;
    }
    
    .post-content h3 {
        font-size: 20px;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 16px;
    }
    
    .blog-post h3 {
        font-size: 18px;
    }
}
