* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    padding: 0 20px;
}
.container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    min-height: 100vh;
}
header { margin-bottom: 40px; border-bottom: 2px solid #eee; padding-bottom: 20px; }
nav a { text-decoration: none; color: #0066cc; margin-right: 20px; font-weight: 500; }
nav a:hover { text-decoration: underline; }
.post-list { list-style: none; }
.post-item { margin-bottom: 30px; }
.post-title { font-size: 1.5rem; margin-bottom: 5px; line-height: 1.2; }
.post-date { font-size: 0.85rem; color: #666; display: block; }
.post-item h2 a { color: #222; text-decoration: none; }
.post-item h2 a:hover { color: #0066cc; }
footer { margin-top: 50px; font-size: 0.85rem; color: #777; text-align: center; border-top: 1px solid #eee; padding-top: 20px; }
footer a { color: #0066cc; text-decoration: none; }

.post-header { margin-bottom: 20px; }
.breaking {
    display: inline-block;
    background: #d32f2f;
    color: white;
    padding: 4px 10px;
    font-size: .8rem;
    font-weight: bold;
    border-radius: 4px;
    margin-bottom: 12px;
}
.post-body p { margin-bottom: 20px; }
.post-body h3 { margin: 30px 0 10px 0; }
/* Form and Editor Styles */
.editor-container {
    max-width: 700px;
    margin: 0 auto;
}
.editor-container h2 {
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.9rem;
}
.form-group input[type="text"],
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
}
.form-group textarea {
    resize: vertical;
}
.checkbox-group label {
    font-weight: normal;
    cursor: pointer;
}
.btn-submit {
    background-color: #0066cc;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-submit:hover {
    background-color: #004c99;
}