/* Jasmine Pure - V1.6.0 Final */

:root {
    --primary-color: #0d6efd;
    --bg-body: #f8f9fa;
    --bg-card: #ffffff;
    --text-main: #212529;
    --text-muted: #6c757d;
    --border-color: #dee2e6;
}

[data-bs-theme="dark"] {
    --bg-body: #121212;
    --bg-card: #1e1e1e;
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --border-color: #2d2d2d;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    overflow-x: hidden;
}

/* --- PC Layout --- */
@media (min-width: 992px) {
    #main-panel {
        padding-right: 8% !important; /* 增加右边距，更居中 */
    }
}

/* --- Icons --- */
.ti {
    display: inline-block;
    vertical-align: middle;
}

.theme-toggle-btn {
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.2s;
}
.theme-toggle-btn:hover {
    color: var(--primary-color);
}

/* --- Mobile Brand Area --- */
.mobile-header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 15px;
}

.mobile-brand-info {
    flex: 1;
    text-align: center;
}

.mobile-site-desc {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

/* --- Post Content --- */
.post-content {
    line-height: 1.8;
    font-size: 1.1rem;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

.hover-primary:hover {
    color: var(--primary-color) !important;
}

.z-3 { z-index: 1030; }
