/* ========================================
   WenFeng Dark — Ghost Theme
   Design: Dark + Minimal (Linear/Vercel)
   ======================================== */

/* --- CSS Variables --- */
:root {
  --bg: #08090a;
  --bg-panel: #0f1011;
  --bg-surface: #191a1b;
  --bg-elevated: #28282c;
  --text-primary: #f7f8f8;
  --text-secondary: #d0d6e0;
  --text-muted: #8a8f98;
  --text-dim: #62666d;
  --accent: #5e6ad2;
  --accent-light: #7170ff;
  --accent-hover: #828fff;
  --border: rgba(255,255,255,0.08);
  --border-subtle: rgba(255,255,255,0.05);
  --radius: 8px;
  --radius-lg: 12px;
  --max-width: 1100px;
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-feature-settings: "cv01", "ss03";
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Nav Search Bar (Azure-style) --- */
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-primary);
  flex-shrink: 0;
}

.nav-title {
  display: none;
}

.nav-search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  max-width: 560px;
  height: 38px;
  padding: 0 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
}

.nav-search-bar:hover {
  border-color: var(--accent);
  background: rgba(94,106,210,0.04);
}

.nav-search-bar svg {
  color: var(--text-dim);
  flex-shrink: 0;
}

.nav-search-placeholder {
  flex: 1;
  font-size: 14px;
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-search-bar:hover .nav-search-placeholder {
  color: var(--text-muted);
}

.nav-search-bar:hover svg {
  color: var(--accent-light);
}

.nav-search-kbd {
  display: inline-flex;
  align-items: center;
  padding: 2px 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--text-dim);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-cta {
  padding: 8px 16px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff !important;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--accent-light);
}


/* --- Hero --- */
.hero {
  padding: 80px 32px 60px;
  text-align: center;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 9999px;
  background: rgba(94,106,210,0.12);
  color: var(--accent-light);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid rgba(94,106,210,0.2);
}

.hero-title {
  font-size: 48px;
  font-weight: 510;
  line-height: 1.0;
  letter-spacing: -1.056px;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Featured Post --- */
.featured {
  max-width: var(--max-width);
  margin: 0 auto 60px;
  padding: 0 32px;
}

.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s;
}

.featured-card:hover {
  border-color: rgba(255,255,255,0.12);
}

.featured-img {
  min-height: 320px;
  overflow: hidden;
  position: relative;
  display: block;
}

.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-img--gradient {
  background: linear-gradient(135deg, #1a1b3a 0%, #0d1a2a 50%, #0a1628 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-img-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.featured-img-text .tag-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.15);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.featured-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  background: rgba(255,255,255,0.05);
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  width: fit-content;
}

.featured-content h2 {
  font-size: 28px;
  font-weight: 510;
  line-height: 1.15;
  letter-spacing: -0.6px;
  margin-bottom: 12px;
}

.featured-content h2 a {
  transition: color 0.15s;
}

.featured-content h2 a:hover {
  color: var(--accent-light);
}

.featured-content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-dim);
}

.post-meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-dim);
}

/* --- Post Grid --- */
.posts-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px 80px;
}

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

.section-header h2 {
  font-size: 20px;
  font-weight: 510;
  letter-spacing: -0.24px;
}

.section-header a {
  font-size: 14px;
  color: var(--accent-light);
  font-weight: 500;
  transition: color 0.15s;
}

.section-header a:hover {
  color: var(--accent-hover);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.post-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.2s;
}

.post-card:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
}

.post-card .tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.05);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.post-card h3 {
  font-size: 17px;
  font-weight: 510;
  line-height: 1.3;
  letter-spacing: -0.2px;
  margin-bottom: 8px;
}

.post-card h3 a {
  transition: color 0.15s;
}

.post-card h3 a:hover {
  color: var(--accent-light);
}

.post-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card .meta {
  font-size: 12px;
  color: var(--text-dim);
}

/* --- Newsletter --- */
.newsletter {
  max-width: var(--max-width);
  margin: 0 auto 80px;
  padding: 0 32px;
}

.newsletter-box {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
}

.newsletter-box h2 {
  font-size: 24px;
  font-weight: 510;
  letter-spacing: -0.288px;
  margin-bottom: 8px;
}

.newsletter-box p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.newsletter-subscribed {
  font-size: 15px;
  color: var(--accent-light);
  font-weight: 500;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.15s;
}

.newsletter-form input:focus {
  border-color: var(--accent);
}

.newsletter-form input::placeholder {
  color: var(--text-dim);
}

.newsletter-form button {
  padding: 10px 20px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.15s;
}

.newsletter-form button:hover {
  background: var(--accent-light);
}

.members-button-loading,
.members-success {
  display: none;
}

.members-form-success .members-success {
  display: block;
}

.members-form-success .newsletter-form {
  display: none;
}

/* --- Post Full (Article Page) --- */
.post-full {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 32px 80px;
}

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

.post-header .post-tag {
  margin-bottom: 20px;
}

.post-title {
  font-size: 40px;
  font-weight: 510;
  line-height: 1.1;
  letter-spacing: -0.88px;
  margin-bottom: 20px;
}

.post-header .post-meta {
  margin-bottom: 32px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.meta-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.meta-details {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dim);
}

.post-feature-image {
  margin-top: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.post-feature-image img {
  width: 100%;
}

/* --- Post Content (Ghost HTML) --- */
.post-content {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
}

.post-content > * + * {
  margin-top: 1.5em;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4 {
  color: var(--text-primary);
  font-weight: 510;
  letter-spacing: -0.3px;
  margin-top: 2em;
  margin-bottom: 0.5em;
}

.post-content h2 {
  font-size: 28px;
  letter-spacing: -0.6px;
}

.post-content h3 {
  font-size: 22px;
  letter-spacing: -0.3px;
}

.post-content p {
  margin-bottom: 0;
}

.post-content a {
  color: var(--accent-light);
  text-decoration: underline;
  text-decoration-color: rgba(113,112,255,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.15s;
}

.post-content a:hover {
  text-decoration-color: var(--accent-light);
}

.post-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

.post-content blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin-left: 0;
  color: var(--text-muted);
  font-style: italic;
}

.post-content ul,
.post-content ol {
  padding-left: 24px;
}

.post-content li {
  margin-bottom: 0.5em;
}

.post-content code {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.88em;
  background: rgba(255,255,255,0.06);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--accent-light);
}

.post-content pre {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  overflow-x: auto;
  font-size: 14px;
  line-height: 1.6;
}

.post-content pre code {
  background: none;
  padding: 0;
  color: var(--text-secondary);
  font-size: inherit;
}

.post-content img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin: 2em auto;
}

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

.post-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.post-content th,
.post-content td {
  padding: 10px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.post-content th {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Post Tags --- */
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}

.post-tag-pill {
  padding: 4px 12px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  transition: all 0.15s;
}

.post-tag-pill:hover {
  background: rgba(94,106,210,0.1);
  border-color: rgba(94,106,210,0.2);
  color: var(--accent-light);
}

/* --- Post Newsletter --- */
.post-newsletter {
  margin-top: 60px;
}

/* --- Post Navigation --- */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}

.post-nav-item {
  padding: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.2s;
}

.post-nav-item:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
}

.post-nav-next {
  text-align: right;
}

.post-nav-label {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.post-nav-title {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
}

/* --- Page Full --- */
.page-full {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 32px 80px;
}

.page-title {
  font-size: 40px;
  font-weight: 510;
  line-height: 1.1;
  letter-spacing: -0.88px;
  margin-bottom: 40px;
}

.page-feature-image {
  margin-bottom: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* --- Error Page --- */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 32px;
}

.error-code {
  font-size: 96px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.error-message {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.error-link {
  display: inline-block;
  padding: 10px 20px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s;
}

.error-link:hover {
  background: var(--accent-light);
}

/* --- Footer --- */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 40px 32px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  font-size: 13px;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-dim);
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--text-muted);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-title {
    font-size: 36px;
    letter-spacing: -0.8px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .featured-card {
    grid-template-columns: 1fr;
  }

  .featured-img {
    min-height: 200px;
  }

  .post-grid {
    grid-template-columns: 1fr;
  }

  .post-title {
    font-size: 32px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .post-nav {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 48px 20px 40px;
  }

  .hero-title {
    font-size: 28px;
  }

  .featured,
  .posts-section,
  .newsletter {
    padding-left: 20px;
    padding-right: 20px;
  }

  .featured-content {
    padding: 24px;
  }

  .post-full,
  .page-full {
    padding: 40px 20px 60px;
  }
}

/* --- Ghost Content Width Classes --- */
.post-content .kg-width-wide {
  width: calc(100% + 80px);
  margin-left: -40px;
  margin-right: -40px;
}

.post-content .kg-width-full {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 100vw;
}

.post-content .kg-width-full img {
  border-radius: 0;
  border: none;
}

.post-content .kg-width-wide img {
  border-radius: var(--radius-lg);
}

/* --- Ghost Card Classes --- */
.post-content .kg-image-card {
  margin: 2em 0;
}

.post-content .kg-gallery-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.post-content .kg-gallery-row {
  display: flex;
  gap: 8px;
}

.post-content .kg-gallery-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.post-content .kg-code-card {
  margin: 2em 0;
}

.post-content .kg-code-card pre {
  margin: 0;
}

.post-content .kg-embed-card {
  margin: 2em 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.post-content .kg-bookmark-card {
  margin: 2em 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.post-content .kg-bookmark-container {
  display: flex;
  text-decoration: none;
  color: inherit;
}

.post-content .kg-bookmark-content {
  flex: 1;
  padding: 20px;
}

.post-content .kg-bookmark-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.post-content .kg-bookmark-description {
  font-size: 14px;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-content .kg-bookmark-metadata {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-dim);
}

.post-content .kg-bookmark-icon {
  width: 16px;
  height: 16px;
}

.post-content .kg-bookmark-thumbnail {
  flex-shrink: 0;
  width: 180px;
}

.post-content .kg-bookmark-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  border: none;
}

.post-content .kg-gallery-card {
  margin: 2em 0;
}

.post-content .kg-audio-card {
  margin: 2em 0;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.post-content .kg-video-card {
  margin: 2em 0;
  border-radius: var(--radius);
  overflow: hidden;
}

/* --- Share Buttons --- */
.share-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.share-label {
  font-size: 14px;
  color: var(--text-muted);
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s;
}

.share-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  color: var(--text-primary);
}

/* --- Archive Pages --- */
.archive-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 32px 80px;
}

.archive-header {
  text-align: center;
  margin-bottom: 48px;
}

.archive-title {
  font-size: 40px;
  font-weight: 510;
  letter-spacing: -0.88px;
  margin-bottom: 12px;
}

.archive-description {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.author-avatar-large {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
}

/* --- Pagination --- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}

.pagination-info {
  font-size: 14px;
  color: var(--text-dim);
}

.pagination-prev,
.pagination-next {
  font-size: 14px;
  color: var(--accent-light);
  text-decoration: none;
  font-weight: 500;
}

.pagination-prev:hover,
.pagination-next:hover {
  color: var(--accent-hover);
}


/* --- Tags Section --- */
.tags-section {
  max-width: var(--max-width);
  margin: 0 auto 60px;
  padding: 0 32px;
}

.tags-header {
  justify-content: center;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.tag-cloud-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  transition: all 0.2s;
  text-decoration: none;
}

.tag-cloud-item:hover {
  background: rgba(94,106,210,0.08);
  border-color: rgba(94,106,210,0.25);
  color: var(--accent-light);
}

.tag-cloud-name {
  font-weight: 500;
}

.tag-cloud-count {
  font-size: 11px;
  color: var(--text-dim);
  background: rgba(255,255,255,0.04);
  padding: 1px 6px;
  border-radius: 9999px;
  font-family: 'JetBrains Mono', monospace;
}

.tag-cloud-item:hover .tag-cloud-count {
  color: var(--accent-light);
  background: rgba(94,106,210,0.15);
}

/* Logo image styles */
.nav-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 4px;
}
