*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --text: #1a1a1a; --muted: #666; --accent: #2563eb;
  --bg: #fff; --border: #e5e7eb;
  --font-body: Georgia, 'Times New Roman', serif;
  --font-ui: system-ui, sans-serif;
}
body { background: var(--bg); color: var(--text); font-family: var(--font-body); line-height: 1.7; }
.container { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.site-header { border-bottom: 1px solid var(--border); padding: 32px 0; margin-bottom: 48px; }
.site-title { font-family: var(--font-ui); font-size: 20px; font-weight: 700; color: var(--text); text-decoration: none; }
.site-tagline { color: var(--muted); font-size: 14px; font-family: var(--font-ui); margin-top: 4px; }
.post-card { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
.post-card:last-child { border-bottom: none; }
.post-card h2 { font-size: 22px; margin-bottom: 8px; }
.post-card h2 a { color: var(--text); text-decoration: none; }
.post-card h2 a:hover { color: var(--accent); }
.post-meta { color: var(--muted); font-size: 13px; font-family: var(--font-ui); margin-bottom: 12px; }
.read-more { display: inline-block; margin-top: 12px; color: var(--accent); font-family: var(--font-ui); font-size: 14px; text-decoration: none; }
.single-post h1 { font-size: 32px; line-height: 1.3; margin-bottom: 12px; }
.post-content { margin-top: 32px; }
.post-content p { margin-bottom: 20px; }
.post-content h2, .post-content h3 { margin: 32px 0 12px; }
.post-content a { color: var(--accent); }
.back-link { display: inline-block; margin-top: 48px; color: var(--muted); font-family: var(--font-ui); font-size: 14px; text-decoration: none; }
.pagination { display: flex; gap: 16px; align-items: center; justify-content: center; margin: 48px 0; font-family: var(--font-ui); }
.pagination a { color: var(--accent); text-decoration: none; }
.pagination span { color: var(--muted); font-size: 13px; }
.empty { color: var(--muted); font-family: var(--font-ui); text-align: center; padding: 48px 0; }
.empty a { color: var(--accent); }
.site-footer { border-top: 1px solid var(--border); padding: 32px 0; margin-top: 64px; color: var(--muted); font-size: 13px; font-family: var(--font-ui); }

/* Component Styling */
.cms-component {
    position: relative;
    margin-bottom: 20px;
    border: 1px dashed transparent;
    transition: border 0.2s;
}

[contenteditable="true"]:focus {
    outline: 2px solid #4f8ef7;
    border-radius: 4px;
    background: rgba(79, 142, 247, 0.05);
}

.edit-link:hover, .edit-image:hover {
    cursor: pointer;
    box-shadow: 0 0 0 2px #4f8ef7;
    border-radius: 4px;
}

.edit-link::after {
    content: " 🔗";
    font-size: 10px;
    opacity: 0.5;
}
