@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Source+Sans+3:wght@400;500;600&display=swap');

/* ============================================================
   CJStudio Theme v1.3 — style.css
   Light: ice white + navy + blue
   Dark:  black + gold
   
   Changes from v1.2:
   - Wider layout: 960px → 1280px
   - Bigger fonts across all elements for 1920x1080
   - Section labels now proper headings
   - Consistent font sizing between homepage and inner pages
   - Article cards with feature image support
   - Newsletter dark mode fix
   - Improved dark mode text contrast
   ============================================================ */

   /* test webhook sync 3 */

:root {
  --bg: #F8FAFF;
  --bg-alt: #EEF2F7;
  --text: #1B2E4B;
  --text-muted: #5A7299;
  --text-faint: #8BA3BF;
  --accent: #1B6FC9;
  --border: #E2E8F4;
  --card-bg: #ffffff;
  --navbar-bg: #F8FAFF;
  --footer-bg: #1B2E4B;
  --footer-text: #7A9ABF;
  --footer-accent: #5B9BD5;
  --nl-bg: #1B2E4B;
  --nl-text: #ffffff;
  --nl-muted: rgba(255,255,255,0.4);
  --nl-input-border: rgba(255,255,255,0.15);
  --nl-input-bg: rgba(255,255,255,0.07);
  --font: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body.dark {
  --bg: #0D0D0D;
  --bg-alt: #0a0a0a;
  --text: #FFFFFF;
  --text-muted: #aaa;
  --text-faint: #666;
  --accent: #C9A84C;
  --border: #1e1e1e;
  --card-bg: #111111;
  --navbar-bg: #0D0D0D;
  --footer-bg: #080808;
  --footer-text: #7A9ABF;
  --footer-accent: #C9A84C;
  --nl-bg: #161616;
  --nl-text: #ffffff;
  --nl-muted: rgba(255,255,255,0.4);
  --nl-input-border: rgba(255,255,255,0.15);
  --nl-input-bg: rgba(255,255,255,0.07);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

body {
  font-family: var(--font);
  background: var(--bg-alt);
  color: var(--text);
  transition: background 0.2s, color 0.2s;
}

.site {
  width: 100%;
  background: var(--bg);
  min-height: 100vh;
}

/* ── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px max(40px, calc((100% - 1200px) / 2));
  border-bottom: 1px solid var(--border);
  background: var(--navbar-bg);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.scrolled {
  background: color-mix(in srgb, var(--navbar-bg) 80%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: color-mix(in srgb, var(--accent) 20%, transparent);
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--accent); }

.nav-right { display: flex; gap: 12px; align-items: center; }

.toggle-btn {
  font-size: 13px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.15s;
}
.toggle-btn:hover { border-color: var(--accent); }

.subscribe-btn {
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 20px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.15s;
}
.subscribe-btn:hover { opacity: 0.9; }

/* ── HERO ───────────────────────────────────────────────── */
@keyframes heroGlow {
  0%, 100% { background: var(--bg); }
  50% { background: color-mix(in srgb, var(--accent) 15%, var(--bg)); }
}

@keyframes avatarFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes avatarPulse {
  0%, 100% {
    box-shadow:
      0 0 0 0   color-mix(in srgb, var(--accent) 55%, transparent),
      0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
  }
  50% {
    box-shadow:
      0 0 0 10px color-mix(in srgb, var(--accent) 0%,  transparent),
      0 0 0 6px  color-mix(in srgb, var(--accent) 8%,  transparent);
  }
}

@keyframes titleShimmer {
  0%   { left: -60%; opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { left: 120%; opacity: 0; }
}

.hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding: 60px max(40px, calc((100% - 1200px) / 2));
  border-bottom: 1px solid var(--border);
  animation: heroGlow 6s ease-in-out infinite;
}

.hero-greeting {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.hero-name {
  font-size: 42px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  position: relative;
  overflow: hidden;
}
.hero-name span { color: var(--accent); }
.hero-name::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    color-mix(in srgb, var(--accent) 40%, transparent) 50%,
    transparent 100%
  );
  animation: titleShimmer 1.8s ease-out 0.4s 1 forwards;
  pointer-events: none;
}

.hero-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 28px;
}

.hero-cta { display: flex; gap: 12px; }

.btn-primary {
  font-size: 14px;
  padding: 11px 24px;
  background: var(--text);
  color: var(--bg);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.15s;
}
.btn-primary:hover {
  opacity: 0.9;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--accent) 45%, transparent);
}

.btn-secondary {
  font-size: 14px;
  padding: 11px 24px;
  background: none;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s;
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--accent) 20%, transparent);
}

.hero-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--bg-alt);
  font-size: 36px;
  font-weight: 600;
  color: var(--accent);
  overflow: hidden;
  animation: avatarFloat 3s ease-in-out infinite, avatarPulse 2.5s ease-in-out infinite;
}

/* ── SECTIONS ───────────────────────────────────────────── */
.section {
  padding: 40px max(40px, calc((100% - 1200px) / 2));
  border-bottom: 1px solid var(--border);
}

.section-label {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

/* ── LATEST GRID ────────────────────────────────────────── */
.latest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.latest-card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  background: var(--card-bg);
  text-decoration: none;
  display: block;
  transition: border-color 0.15s, box-shadow 0.15s;
  overflow: hidden;
}
.latest-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.card-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 14px;
}

.card-tag {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  background: color-mix(in srgb, var(--accent) 15%, transparent);
  color: var(--accent);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.card-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  font-size: 13px;
  color: var(--text-faint);
}

/* ── TOPIC EXPLORER ─────────────────────────────────────── */
.explorer {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 300px;
}

.topic-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 14px;
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  text-align: left;
  transition: background 0.12s;
  color: var(--text);
}
.topic-btn:last-child { border-bottom: none; }
.topic-btn:hover { background: color-mix(in srgb, var(--accent) 8%, transparent); }
.topic-btn.active {
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border-left: 3px solid var(--accent);
  padding-left: 11px;
}

.topic-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
}

.topic-name { font-size: 14px; font-weight: 600; color: var(--text); }
.topic-count { font-size: 12px; color: var(--text-faint); margin-top: 2px; }
.topic-arrow { font-size: 16px; color: var(--text-faint); }
.topic-btn.active .topic-arrow { color: var(--accent); }

.topic-content {
  padding: 20px 24px;
  border-left: 1px solid var(--border);
}

.content-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.content-title { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }

.view-all-btn {
  font-size: 13px;
  color: var(--accent);
  background: none;
  border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  border-radius: 20px;
  padding: 5px 14px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}
.view-all-btn:hover { background: color-mix(in srgb, var(--accent) 8%, transparent); }

.article-list { display: flex; flex-direction: column; }

.article-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
}
.article-row:last-child { border-bottom: none; }
.article-row:hover .art-title { color: var(--accent); }

.art-num { font-size: 13px; color: var(--text-faint); font-weight: 600; min-width: 24px; padding-top: 2px; }
.art-body { flex: 1; }
.art-title { font-size: 15px; font-weight: 500; color: var(--text); line-height: 1.5; transition: color 0.1s; }
.art-meta { font-size: 13px; color: var(--text-faint); margin-top: 4px; }
.art-arrow { font-size: 15px; color: var(--text-faint); padding-top: 2px; }

/* ── NEWSLETTER ─────────────────────────────────────────── */
.nl-wrap {
  padding: 40px max(40px, calc((100% - 1200px) / 2));
  border-bottom: 1px solid var(--border);
}

.nl-box {
  background: var(--nl-bg);
  border-radius: 12px;
  padding: 32px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.nl-text h3 { font-size: 18px; font-weight: 600; color: var(--nl-text); margin-bottom: 6px; }
.nl-text p { font-size: 14px; color: var(--nl-muted); }
.nl-form { display: flex; gap: 10px; flex-shrink: 0; }

.nl-input {
  font-size: 14px;
  padding: 10px 16px;
  border: 1px solid var(--nl-input-border);
  border-radius: 8px;
  background: var(--nl-input-bg);
  color: #fff;
  width: 200px;
  outline: none;
}
.nl-input::placeholder { color: rgba(255,255,255,0.3); }

.nl-btn {
  font-size: 14px;
  padding: 10px 20px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.15s;
}
.nl-btn:hover { opacity: 0.9; }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer { background: var(--footer-bg); }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 48px max(40px, calc((100% - 1200px) / 2)) 36px;
}

.ft-brand-name { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: #fff; letter-spacing: -0.01em; margin-bottom: 12px; }
.ft-brand-name span { color: var(--footer-accent); }
.ft-brand-desc { font-size: 14px; color: var(--footer-text); line-height: 1.75; max-width: 260px; margin-bottom: 20px; }
.ft-socials { display: flex; gap: 10px; }
.ft-social {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--footer-text); cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.ft-social:hover { border-color: var(--footer-accent); color: var(--footer-accent); }
.ft-col-title { font-size: 13px; font-weight: 600; color: var(--footer-accent); letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 16px; }
.ft-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.ft-links a { font-size: 14px; color: var(--footer-text); text-decoration: none; transition: color 0.15s; }
.ft-links a:hover { color: var(--footer-accent); }
.ft-divider { border: none; border-top: 1px solid rgba(255,255,255,0.06); margin: 0 max(40px, calc((100% - 1200px) / 2)); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 18px max(40px, calc((100% - 1200px) / 2)); }
.ft-copy { font-size: 13px; color: var(--footer-text); }
.ft-bottom-links { display: flex; gap: 20px; }
.ft-bottom-links a { font-size: 13px; color: var(--footer-text); text-decoration: none; }
.ft-bottom-links a:hover { color: var(--footer-accent); }

/* ── TAG HEADER ─────────────────────────────────────────── */
.tag-header {
  padding: 48px max(40px, calc((100% - 1200px) / 2)) 28px;
  border-bottom: 1px solid var(--border);
}
.tag-title { font-size: 32px; font-weight: 700; color: var(--text); margin: 8px 0; }
.tag-desc { font-size: 16px; color: var(--text-muted); margin-top: 10px; line-height: 1.6; }

/* ── POST PAGE ──────────────────────────────────────────── */
.post-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 40px;
}

.post-header { margin-bottom: 44px; }

.post-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: inline-block;
  margin-bottom: 14px;
}

.post-title {
  font-size: 38px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.post-meta {
  font-size: 15px;
  color: var(--text-faint);
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 28px;
}

.post-feature-image {
  width: 100%;
  border-radius: 12px;
  margin-top: 28px;
  object-fit: contain;
  max-height: none;
}

/* ── POST CONTENT BODY ──────────────────────────────────── */
.post-content {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
}

.post-content p {
  margin-bottom: 1.4em;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
}

.post-content h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin: 2em 0 0.6em;
  line-height: 1.3;
}

.post-content h3 {
  font-size: 21px;
  font-weight: 600;
  color: var(--text);
  margin: 1.6em 0 0.5em;
}

.post-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin: 1.4em 0 0.4em;
}

.post-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 14px 24px;
  margin: 1.6em 0;
  color: var(--text-muted);
  font-style: italic;
  background: color-mix(in srgb, var(--accent) 6%, transparent);
  border-radius: 0 8px 8px 0;
}

.post-content ul, .post-content ol {
  margin: 1em 0 1.4em 1.5em;
}

.post-content li {
  margin-bottom: 0.4em;
  font-size: 17px;
  line-height: 1.7;
}

.post-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.post-content code {
  font-family: 'Courier New', monospace;
  font-size: 15px;
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  color: var(--accent);
  padding: 2px 6px;
  border-radius: 4px;
}

.post-content pre {
  background: var(--text);
  color: var(--bg);
  padding: 24px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1.6em 0;
  font-size: 14px;
  line-height: 1.6;
}

.post-content pre code {
  background: none;
  color: inherit;
  padding: 0;
}

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

.post-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2em 0;
}

/* Ghost card widths */
.kg-width-wide { margin-left: -100px; margin-right: -100px; }
.kg-width-full { margin-left: -40px; margin-right: -40px; }

/* ── POST FOOTER ─────────────────────────────────────────── */
.post-footer { margin-top: 52px; padding-top: 36px; border-top: 1px solid var(--border); }

.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.post-tag-pill {
  font-size: 13px;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.post-tag-pill:hover { border-color: var(--accent); color: var(--accent); }

.post-author-box {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.author-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-avatar-placeholder {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 15%, transparent);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 600;
  flex-shrink: 0;
}

.author-name { font-size: 16px; font-weight: 600; color: var(--text); }
.author-bio { font-size: 14px; color: var(--text-muted); margin-top: 4px; line-height: 1.5; }

/* ── POST NAV ────────────────────────────────────────────── */
.post-nav {
  display: flex;
  gap: 16px;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.post-nav-item {
  flex: 1;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.15s;
}
.post-nav-item:hover { border-color: var(--accent); }
.post-nav-next { text-align: right; }
.post-nav-label { font-size: 12px; color: var(--text-faint); }
.post-nav-title { font-size: 15px; font-weight: 500; color: var(--text); }

/* ── SCROLL TO TOP ───────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--accent) 40%, transparent);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  opacity: 0.85;
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent) 55%, transparent);
}

.scroll-top::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-left: 2.5px solid #fff;
  border-top: 2.5px solid #fff;
  transform: rotate(45deg) translate(1px, 2px);
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { padding: 48px 32px; }
  .section { padding: 32px; }
  .latest-grid { grid-template-columns: 1fr 1fr; }
  .nl-wrap { padding: 32px; }
  .footer-top { padding: 40px 32px 32px; }
  .ft-divider { margin: 0 32px; }
  .footer-bottom { padding: 18px 32px; }
  .tag-header { padding: 40px 32px 24px; }
}

@media (max-width: 768px) {
  .navbar { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-logo { font-size: 18px; }
  .hero { grid-template-columns: 1fr; padding: 32px 20px; gap: 24px; }
  .hero-photo { display: none; }
  .hero-name { font-size: 28px; }
  .hero-desc { font-size: 15px; }
  .section { padding: 28px 20px; }
  .section-label { font-size: 18px; }
  .latest-grid { grid-template-columns: 1fr; }
  .card-title { font-size: 15px; }
  .explorer { grid-template-columns: 1fr; }
  .topic-content { border-left: none; border-top: 1px solid var(--border); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; padding: 32px 20px 24px; }
  .ft-divider { margin: 0 20px; }
  .footer-bottom { padding: 16px 20px; }
  .post-container { padding: 36px 20px; }
  .post-title { font-size: 28px; }
  .post-content { font-size: 16px; }
  .post-content p { font-size: 16px; }
  .post-content h2 { font-size: 22px; }
  .post-content h3 { font-size: 18px; }
  .nl-wrap { padding: 28px 20px; }
  .nl-box { flex-direction: column; padding: 24px; }
  .nl-form { width: 100%; }
  .nl-input { flex: 1; }
  .kg-width-wide { margin-left: 0; margin-right: 0; }
  .kg-width-full { margin-left: -20px; margin-right: -20px; }
  .tag-header { padding: 32px 20px 20px; }
  .tag-title { font-size: 24px; }
}
