* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #f5f5f0;
}

header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 2rem;
    color: white;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.header-content h1 {
    color: #e8e8e8;
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.tagline {
    color: #b8b8b8;
    font-style: italic;
    font-size: 1rem;
}

button {
    background: #8b4513;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: inherit;
    transition: background 0.3s ease;
}

button:hover {
    background: #a0522d;
}

main {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.hidden {
    display: none;
}

.post-preview {
    color: #2c2c2c;
    font-size: 1.1rem;
    line-height: 1.7;
    white-space: pre-wrap;
}

.read-more-btn {
    background: #8b4513;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: inherit;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.read-more-btn:hover {
    background: #a0522d;
}

.back-btn {
    color: #8b4513;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid #8b4513;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #8b4513;
    color: white;
}

.post-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.post {
    background: #fefefe;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e0;
    border-left: 4px solid #8b4513;
}

.post h2 {
    color: #1a1a2e;
    margin-bottom: 0.75rem;
    font-size: 1.8rem;
    font-weight: 400;
}

.post-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.post-content {
    white-space: pre-wrap;
    color: #2c2c2c;
    font-size: 1.1rem;
    line-height: 1.7;
}



@media (max-width: 768px) {
    header {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    main {
        padding: 0 1rem;
    }
}