/* =================================================================
 *  LunarGlow_NightRead — Dark OLED Night Reading Theme
 *  CSS prefix: lg-
 *  Palette: Deep void (#06060f) → Amber glow (#e8c97a)
 * ================================================================= */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --lg-bg: #06060f; --lg-bg2: #0a0a1a; --lg-surface: #111128;
  --lg-surface2: #1a1840; --lg-line: #252260; --lg-line2: #383080;
  --lg-text: #e8e0cc; --lg-text-dim: #f0ebe0; --lg-muted: #8b7ba8;
  --lg-accent: #e8c97a; --lg-accent2: #f0d68a; --lg-glow: #c9a84c;
  --lg-red: #ff6b6b; --lg-green: #7ecba1; --lg-blue: #7ba8e0;
  --lg-font-head: 'Crimson Text', 'Georgia', serif;
  --lg-font: 'Inter', -apple-system, sans-serif;
  --lg-radius: 10px; --lg-radius-sm: 6px; --lg-glow-ambient: 0 0 40px rgba(232,201,122,.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--lg-font); background: var(--lg-bg); color: var(--lg-text); line-height: 1.7; font-size: 15px; -webkit-font-smoothing: antialiased; }

a { color: var(--lg-accent); text-decoration: none; transition: .2s; }
a:hover { color: var(--lg-accent2); text-decoration: underline; }
img { max-width: 100%; height: auto; }
h1,h2,h3,h4,h5,h6 { font-family: var(--lg-font-head); color: var(--lg-text-dim); }
ul,ol { padding-left: 1.4em; }
blockquote { margin: 16px 0; padding: 14px 20px; border-left: 3px solid var(--lg-accent); background: var(--lg-surface); border-radius: 0 var(--lg-radius-sm) var(--lg-radius-sm) 0; font-style: italic; color: var(--lg-muted); }
code { font-family: monospace; background: var(--lg-surface2); padding: 2px 6px; border-radius: 3px; font-size: .9em; }
pre { background: var(--lg-surface); padding: 16px; border-radius: var(--lg-radius); overflow-x: auto; border: 1px solid var(--lg-line); font-size: 13px; }
table { width: 100%; border-collapse: collapse; margin: 16px 0; }
th,td { padding: 10px 14px; border: 1px solid var(--lg-line); text-align: left; }
th { background: var(--lg-surface); font-weight: 600; }

/* =================================================================
 *  LAYOUT
 * ================================================================= */
.lg-wrap { width: min(100% - 32px, 1160px); margin: 0 auto; }
.lg-main { min-height: 70vh; padding-top: 24px; padding-bottom: 40px; }

/* =================================================================
 *  HEADER — Floating moonlit bar
 * ================================================================= */
.lg-header { border-bottom: 1px solid var(--lg-line); background: rgba(10,10,26,.92); backdrop-filter: blur(16px); position: sticky; top: 0; z-index: 100; }
.lg-header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 56px; gap: 16px; padding: 0 2px; }
.lg-brand { display: flex; align-items: center; gap: 10px; }
.lg-brand-icon { font-size: 24px; }
.lg-brand-name { font-size: 20px; font-weight: 700; font-family: var(--lg-font-head); color: var(--lg-text-dim); letter-spacing: .02em; }
.lg-brand-name span { color: var(--lg-accent); }
.lg-header-actions { display: flex; align-items: center; gap: 8px; }
.lg-header-search { display: grid; grid-template-columns: 140px auto; }
.lg-header-search input { height: 34px; border-radius: 20px 0 0 20px; border: 1px solid var(--lg-line); border-right: none; background: var(--lg-surface); padding: 0 14px; color: var(--lg-text); font-size: 13px; outline: none; transition: .2s; }
.lg-header-search input:focus { border-color: var(--lg-accent); box-shadow: 0 0 12px rgba(232,201,122,.15); }
.lg-header-search input::placeholder { color: var(--lg-muted); }
.lg-header-search button { height: 34px; border: 1px solid var(--lg-line); border-radius: 0 20px 20px 0; background: var(--lg-surface2); color: var(--lg-accent); padding: 0 14px; cursor: pointer; font-size: 14px; transition: .2s; }
.lg-header-search button:hover { background: var(--lg-accent); color: var(--lg-bg); }
.lg-menu-toggle { display: none; width: 34px; height: 34px; border: 1px solid var(--lg-line); border-radius: 50%; background: var(--lg-surface); color: var(--lg-text); font-size: 16px; cursor: pointer; align-items: center; justify-content: center; }
.lg-nav { display: flex; flex-wrap: wrap; gap: 4px; padding: 8px 0; }
.lg-nav a { display: inline-flex; align-items: center; padding: 6px 16px; border-radius: 20px; color: var(--lg-muted); font-size: 13px; font-weight: 500; transition: .2s; }
.lg-nav a:hover { color: var(--lg-accent); background: rgba(232,201,122,.06); text-decoration: none; }
.lg-nav a.active { color: var(--lg-accent); background: rgba(232,201,122,.1); }

/* =================================================================
 *  HERO SLIDER — Glow carousel
 * ================================================================= */
.lg-hero { position: relative; margin-bottom: 28px; border-radius: var(--lg-radius); overflow: hidden; border: 1px solid var(--lg-line); box-shadow: var(--lg-glow-ambient); }
.lg-hero-track { display: flex; transition: transform .5s ease; }
.lg-hero-slide { min-width: 100%; flex-shrink: 0; position: relative; height: 400px; }
.lg-hero-bg { position: absolute; inset: 0; }
.lg-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.lg-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(6,6,15,.9) 35%, rgba(6,6,15,.4) 100%); display: flex; align-items: flex-end; }
.lg-hero-content { padding: 36px 40px 40px; max-width: 640px; }
.lg-hero-content h1 { margin: 10px 0; font-size: 36px; line-height: 1.2; font-weight: 700; }
.lg-hero-content h1 a { color: var(--lg-text-dim); }
.lg-hero-content h1 a:hover { color: var(--lg-accent); text-decoration: none; text-shadow: 0 0 20px rgba(232,201,122,.3); }
.lg-hero-content p { color: var(--lg-muted); font-size: 15px; margin: 0 0 18px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.lg-hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.lg-hero-label { font-size: 12px; color: var(--lg-muted); }
.lg-hero-prev,.lg-hero-next { position: absolute; top: 50%; transform: translateY(-50%); width: 38px; height: 38px; border: 1px solid rgba(232,201,122,.2); border-radius: 50%; background: rgba(6,6,15,.7); color: var(--lg-accent); font-size: 16px; cursor: pointer; z-index: 5; display: flex; align-items: center; justify-content: center; transition: .2s; opacity: 0; backdrop-filter: blur(4px); }
.lg-hero:hover .lg-hero-prev,.lg-hero:hover .lg-hero-next { opacity: 1; }
.lg-hero-prev:hover,.lg-hero-next:hover { background: rgba(6,6,15,.9); border-color: var(--lg-accent); box-shadow: 0 0 16px rgba(232,201,122,.25); }
.lg-hero-prev { left: 16px; } .lg-hero-next { right: 16px; }
.lg-hero-dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 5; }
.lg-hero-dots span { width: 8px; height: 8px; border-radius: 50%; border: 1px solid rgba(232,201,122,.3); background: transparent; cursor: pointer; transition: .2s; }
.lg-hero-dots span.active,.lg-hero-dots span:hover { background: var(--lg-accent); border-color: var(--lg-accent); box-shadow: 0 0 10px rgba(232,201,122,.4); }

/* =================================================================
 *  BUTTONS & BADGES
 * ================================================================= */
.lg-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 18px; border: 1px solid var(--lg-line); border-radius: 20px; font-size: 13px; font-weight: 500; color: var(--lg-muted); background: var(--lg-surface); cursor: pointer; transition: .2s; white-space: nowrap; }
.lg-btn:hover { border-color: var(--lg-line2); color: var(--lg-text); text-decoration: none; }
.lg-btn-accent { background: var(--lg-accent); color: var(--lg-bg); border-color: var(--lg-accent); font-weight: 600; }
.lg-btn-accent:hover { background: var(--lg-accent2); color: var(--lg-bg); border-color: var(--lg-accent2); box-shadow: 0 0 20px rgba(232,201,122,.3); }
.lg-badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 12px; font-size: 11px; font-weight: 500; background: var(--lg-surface2); color: var(--lg-muted); border: 1px solid var(--lg-line); }
.lg-badge--accent { background: rgba(232,201,122,.12); color: var(--lg-accent); border-color: rgba(232,201,122,.2); }
.lg-moon-mark { display: inline-flex; align-items: center; gap: 4px; color: var(--lg-accent); font-size: 12px; }
.lg-moon-mark::before { content: '\263E'; font-size: 14px; }

/* =================================================================
 *  SECTION HEAD
 * ================================================================= */
.lg-section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; gap: 12px; flex-wrap: wrap; }
.lg-section-head h2 { font-size: 24px; margin: 0; font-weight: 600; letter-spacing: .01em; }
.lg-section-head h2::before { content: '\263E  '; color: var(--lg-accent); font-size: 18px; }

/* =================================================================
 *  CARD GRID
 * ================================================================= */
.lg-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; }
.lg-card { background: var(--lg-surface); border: 1px solid var(--lg-line); border-radius: var(--lg-radius); overflow: hidden; transition: .2s; }
.lg-card:hover { border-color: var(--lg-line2); box-shadow: 0 4px 24px rgba(232,201,122,.06); }
.lg-card-thumb { display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--lg-surface2); }
.lg-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.lg-card:hover .lg-card-thumb img { transform: scale(1.04); }
.lg-card-body { padding: 14px 16px 16px; }
.lg-card-head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.lg-card h3 { font-size: 17px; margin: 0 0 6px; line-height: 1.35; font-weight: 600; }
.lg-card h3 a { color: var(--lg-text-dim); }
.lg-card h3 a:hover { color: var(--lg-accent); text-decoration: none; }
.lg-card p { color: var(--lg-muted); font-size: 13px; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* =================================================================
 *  STREAM — Reading list
 * ================================================================= */
.lg-stream { display: grid; gap: 12px; margin-bottom: 28px; }
.lg-stream-item { display: grid; grid-template-columns: 180px minmax(0,1fr); gap: 16px; padding: 14px; background: var(--lg-surface); border: 1px solid var(--lg-line); border-radius: var(--lg-radius); transition: .2s; }
.lg-stream-item:hover { border-color: var(--lg-line2); box-shadow: 0 2px 16px rgba(232,201,122,.04); }
.lg-stream-thumb { display: block; border-radius: var(--lg-radius-sm); overflow: hidden; background: var(--lg-surface2); aspect-ratio: 16/11; }
.lg-stream-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.lg-stream-item:hover .lg-stream-thumb img { transform: scale(1.03); }
.lg-stream-body { display: flex; flex-direction: column; justify-content: center; }
.lg-stream-head { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.lg-stream-body h4 { font-size: 17px; margin: 0 0 6px; line-height: 1.3; font-weight: 600; }
.lg-stream-body h4 a { color: var(--lg-text-dim); }
.lg-stream-body h4 a:hover { color: var(--lg-accent); text-decoration: none; }
.lg-stream-excerpt { color: var(--lg-muted); font-size: 13px; margin: 0 0 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.lg-stream-meta { font-size: 11px; color: var(--lg-muted); }

/* =================================================================
 *  TWO-COLUMN + SIDEBAR
 * ================================================================= */
.lg-content-grid { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 20px; }
.lg-sidebar { display: grid; gap: 14px; align-content: start; }
.lg-side-panel { padding: 16px; background: var(--lg-surface); border: 1px solid var(--lg-line); border-radius: var(--lg-radius); }
.lg-side-title { font-family: var(--lg-font-head); font-size: 15px; font-weight: 600; color: var(--lg-accent); margin: 0 0 12px; padding-bottom: 10px; border-bottom: 1px solid var(--lg-line); }
.lg-side-title::before { content: '\263E  '; }
.lg-side-list { list-style: none; padding: 0; margin: 0; }
.lg-side-list li { padding: 8px 0; border-bottom: 1px solid var(--lg-line); font-size: 13px; }
.lg-side-list li:last-child { border-bottom: none; }
.lg-side-list a { color: var(--lg-text); display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lg-side-list a:hover { color: var(--lg-accent); text-decoration: none; }
.lg-side-count { font-size: 10px; color: var(--lg-muted); }
.lg-tag-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
.lg-tag-cloud a { display: inline-flex; align-items: center; gap: 3px; padding: 4px 12px; border: 1px solid var(--lg-line); border-radius: 14px; font-size: 12px; color: var(--lg-muted); transition: .2s; }
.lg-tag-cloud a:hover { border-color: var(--lg-accent); color: var(--lg-accent); background: rgba(232,201,122,.06); text-decoration: none; }
.lg-tag-cloud a span { font-size: 10px; color: var(--lg-muted); }

/* =================================================================
 *  LIST HEAD & BREADCRUMB
 * ================================================================= */
.lg-breadcrumb { margin-bottom: 16px; font-size: 12px; color: var(--lg-muted); }
.lg-breadcrumb a { color: var(--lg-muted); }
.lg-breadcrumb a:hover { color: var(--lg-accent); }
.lg-list-head { padding: 28px; background: var(--lg-surface); border: 1px solid var(--lg-line); border-radius: var(--lg-radius); margin-bottom: 20px; }
.lg-list-head h1 { margin: 8px 0 6px; font-size: 30px; font-weight: 700; }
.lg-list-head p { color: var(--lg-muted); font-size: 14px; margin: 0; }
.lg-list-count { font-size: 12px; color: var(--lg-green); margin-top: 8px; }

/* =================================================================
 *  PAGINATION
 * ================================================================= */
.lg-pagination,.pagination { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 4px; justify-content: center; }
.pagination a,.pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 34px; height: 34px; padding: 0 10px; border: 1px solid var(--lg-line); border-radius: 20px; font-size: 12px; color: var(--lg-muted); background: var(--lg-surface); transition: .2s; }
.pagination a:hover { border-color: var(--lg-accent); color: var(--lg-accent); text-decoration: none; box-shadow: 0 0 12px rgba(232,201,122,.1); }
.pagination .current,.pagination .active { background: var(--lg-accent); color: var(--lg-bg); border-color: var(--lg-accent); font-weight: 600; }

/* =================================================================
 *  ARTICLE DETAIL
 * ================================================================= */
.lg-detail { padding: 32px; background: var(--lg-surface); border: 1px solid var(--lg-line); border-radius: var(--lg-radius); margin-bottom: 20px; }
.lg-detail-header h1 { font-size: 32px; line-height: 1.25; font-weight: 700; margin: 10px 0; }
.lg-detail-meta { font-size: 12px; color: var(--lg-muted); margin-bottom: 16px; display: flex; flex-wrap: wrap; gap: 14px; }
.lg-detail-meta span { display: inline-flex; align-items: center; gap: 4px; }
.lg-detail-cover { margin-bottom: 20px; border-radius: var(--lg-radius-sm); overflow: hidden; border: 1px solid var(--lg-line); aspect-ratio: 16/8; }
.lg-detail-cover img { width: 100%; height: 100%; object-fit: cover; }
.lg-detail-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 16px 0; }
.lg-detail-tags a { display: inline-flex; align-items: center; gap: 3px; padding: 3px 12px; border: 1px solid var(--lg-line); border-radius: 14px; font-size: 11px; color: var(--lg-muted); }
.lg-detail-tags a:hover { border-color: var(--lg-accent); color: var(--lg-accent); text-decoration: none; }
.lg-article-content { color: var(--lg-text); font-size: 16px; line-height: 1.9; }
.lg-article-content p { margin: .8em 0; }
.lg-article-content h1,.lg-article-content h2,.lg-article-content h3,.lg-article-content h4 { margin: 1.5em 0 .6em; font-weight: 700; font-family: var(--lg-font-head); }
.lg-article-content h1 { font-size: 26px; } .lg-article-content h2 { font-size: 22px; }
.lg-article-content h3 { font-size: 18px; } .lg-article-content h4 { font-size: 16px; }
.lg-article-content img { border-radius: var(--lg-radius-sm); margin: 14px 0; }
.lg-article-content a { color: var(--lg-accent); border-bottom: 1px dotted var(--lg-accent); }
.lg-article-content a:hover { border-bottom-style: solid; }

/* =================================================================
 *  TAG CLOUD PAGE
 * ================================================================= */
.lg-tag-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.lg-tag-card { padding: 18px; background: var(--lg-surface); border: 1px solid var(--lg-line); border-radius: var(--lg-radius); transition: .2s; text-align: center; }
.lg-tag-card:hover { border-color: var(--lg-line2); box-shadow: 0 4px 20px rgba(232,201,122,.06); text-decoration: none; }
.lg-tag-card h3 { font-size: 18px; margin: 0 0 4px; font-weight: 600; color: var(--lg-text-dim); }
.lg-tag-card p { font-size: 12px; color: var(--lg-muted); margin: 0; }

/* =================================================================
 *  SEARCH PAGE (so/so.html standalone)
 * ================================================================= */
.lg-so-wrap { width: min(100% - 32px, 720px); margin: 0 auto; padding: 60px 0; text-align: center; }
.lg-so-logo { font-size: 48px; margin-bottom: 10px; }
.lg-so-title { font-family: var(--lg-font-head); font-size: 32px; color: var(--lg-text-dim); margin: 0 0 8px; }
.lg-so-subtitle { color: var(--lg-muted); font-size: 14px; margin-bottom: 30px; }
.lg-so-form { display: flex; gap: 0; max-width: 560px; margin: 0 auto; }
.lg-so-form input { flex: 1; height: 48px; border: 1px solid var(--lg-line); border-right: none; border-radius: 24px 0 0 24px; background: var(--lg-surface); padding: 0 20px; color: var(--lg-text); font-size: 15px; outline: none; transition: .2s; }
.lg-so-form input:focus { border-color: var(--lg-accent); box-shadow: 0 0 16px rgba(232,201,122,.1); }
.lg-so-form button { height: 48px; padding: 0 24px; border: 1px solid var(--lg-accent); border-radius: 0 24px 24px 0; background: var(--lg-accent); color: var(--lg-bg); font-size: 15px; font-weight: 600; cursor: pointer; transition: .2s; }
.lg-so-form button:hover { background: var(--lg-accent2); }
.lg-so-hot { margin-top: 30px; }
.lg-so-hot h3 { font-size: 14px; color: var(--lg-muted); margin-bottom: 10px; }

/* =================================================================
 *  SEARCH RESULTS (search/search.html)
 * ================================================================= */
.lg-search-panel { padding: 24px 28px; background: var(--lg-surface); border: 1px solid var(--lg-line); border-radius: var(--lg-radius); margin-bottom: 20px; }
.lg-search-panel h1 { margin: 0; font-size: 24px; font-weight: 600; }
.lg-search-panel p { color: var(--lg-muted); font-size: 13px; margin: 4px 0 0; }
.lg-search-item { padding: 16px 0; border-bottom: 1px solid var(--lg-line); }
.lg-search-item:last-child { border-bottom: none; }
.lg-search-item h3 { font-size: 18px; margin: 0 0 6px; }
.lg-search-item h3 a { color: var(--lg-text-dim); }
.lg-search-item h3 a:hover { color: var(--lg-accent); text-decoration: none; }
.lg-search-item p { color: var(--lg-muted); font-size: 13px; margin: 0; }
.lg-search-item .lg-search-date { font-size: 11px; color: var(--lg-muted); margin-top: 4px; }

/* =================================================================
 *  DIY / CUSTOM PAGE
 * ================================================================= */
.lg-diy-panel { padding: 28px; background: var(--lg-surface); border: 1px solid var(--lg-line); border-radius: var(--lg-radius); }
.lg-diy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* =================================================================
 *  EMPTY / 404 PAGE
 * ================================================================= */
.lg-empty-page { text-align: center; padding: 80px 20px; }
.lg-empty-moon { font-size: 80px; margin-bottom: 16px; opacity: .6; }
.lg-empty-page h1 { font-size: 28px; margin-bottom: 12px; }
.lg-empty-page p { color: var(--lg-muted); font-size: 15px; margin-bottom: 24px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* =================================================================
 *  FOOTER
 * ================================================================= */
.lg-footer { margin-top: 40px; border-top: 1px solid var(--lg-line); padding: 28px 0; background: var(--lg-bg2); }
.lg-footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center; }
.lg-footer-copy { font-size: 12px; color: var(--lg-muted); }
.lg-footer-links { display: flex; gap: 16px; }
.lg-footer-links a { font-size: 12px; color: var(--lg-muted); }
.lg-footer-links a:hover { color: var(--lg-accent); }

/* =================================================================
 *  RESPONSIVE
 * ================================================================= */
@media (max-width: 1100px) {
  .lg-hero-slide { height: 340px; }
  .lg-card-grid { grid-template-columns: repeat(2, 1fr); }
  .lg-tag-grid { grid-template-columns: repeat(3, 1fr); }
  .lg-content-grid { grid-template-columns: 1fr; }
  .lg-diy-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991px) {
  .lg-menu-toggle { display: inline-flex; }
  .lg-nav { display: none; }
  .lg-nav.open { display: flex; flex-direction: column; }
}
@media (max-width: 768px) {
  .lg-wrap { width: min(100% - 18px, 1160px); }
  .lg-main { padding-top: 16px; }
  .lg-header-inner { min-height: 50px; gap: 8px; }
  .lg-header-search { grid-template-columns: 1fr auto; }
  .lg-header-search input { min-width: 0; width: 100%; }
  .lg-hero-slide { height: 260px; }
  .lg-hero-content { padding: 22px; }
  .lg-hero-content h1 { font-size: 22px; }
  .lg-hero-content p { font-size: 13px; -webkit-line-clamp: 1; }
  .lg-card-grid { grid-template-columns: 1fr; }
  .lg-tag-grid { grid-template-columns: repeat(2, 1fr); }
  .lg-stream-item { grid-template-columns: 1fr; }
  .lg-stream-thumb { aspect-ratio: 16/9; }
  .lg-diy-grid { grid-template-columns: 1fr; }
  .lg-footer-inner { grid-template-columns: 1fr; text-align: center; }
  .lg-footer-links { justify-content: center; }
  .lg-list-head,.lg-search-panel,.lg-detail,.lg-diy-panel,.lg-empty-page { padding: 20px; }
  .lg-detail-header h1,.lg-list-head h1 { font-size: 22px; }
  .lg-article-content { font-size: 14px; }
}
