/* src/css/style.css */
body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    background: #f4f7f6; 
    color: #333; 
    padding: 20px; 
    margin: 0; 
}

.container { 
    max-width: 800px; 
    margin: auto; 
    background: white; 
    padding: 30px; 
    border-radius: 10px; 
    box-shadow: 0 4px 6px rgba(0,0,0,0.05); 
}

h1 { 
    text-align: center; 
    margin-bottom: 40px; 
    color: #2c3e50; 
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Post Cards (Homepage) */
.post-card { 
    background: #fff; 
    padding: 20px; 
    margin-bottom: 20px; 
    border-radius: 8px; 
    border: 1px solid #eee;
    transition: transform 0.2s ease-in-out;
}

.post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}

.post-card h2 { margin: 0 0 10px 0; font-size: 1.5em; }
.post-date { color: #888; font-size: 0.85em; margin-bottom: 15px; display: block; }

/* Single Article Content */
.content { 
    white-space: pre-wrap; 
    line-height: 1.8; 
    margin-top: 20px;
}

.back-link { 
    display: inline-block; 
    margin-bottom: 20px; 
    font-weight: bold; 
}