/* ============================================
   Clifford Terminal — Ghost Theme
   Abeedoo palette + CLI aesthetic
   ============================================ */

:root {
  --primary: #7c5cff;
  --secondary: #2de2e6;
  --accent: #ff2e63;
  --bg: #060812;
  --surface: #0c0e1a;
  --surface-alt: #12152a;
  --neutral: #1a1d2e;
  --text: #e8eefc;
  --muted: #a9b6d8;
  --stroke: rgba(255, 255, 255, 0.10);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --info: #3b82f6;
  --success: #22c55e;
  --warning: #eab308;
  --error: #ff2e63;
  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, "Cascadia Code", "Fira Code", "JetBrains Mono", Menlo, Consolas, monospace;
  --radius: 16px;
  --radius-sm: 10px;
}

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

html {
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(1200px 700px at 20% 10%, rgba(124, 92, 255, 0.12), transparent 60%),
    radial-gradient(900px 600px at 80% 40%, rgba(45, 226, 230, 0.08), transparent 55%),
    radial-gradient(900px 600px at 45% 95%, rgba(255, 46, 99, 0.06), transparent 60%);
  background-attachment: fixed;
  min-height: 100vh;
}

a { color: var(--secondary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary); }

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

/* ---- Terminal prompt motif ---- */
.prompt::before {
  content: "~/clifford ";
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  opacity: 0.5;
}

.prompt-cursor::after {
  content: "█";
  color: var(--secondary);
  animation: blink 1s step-end infinite;
  margin-left: 4px;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* ---- Layout ---- */
.site-wrapper {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-wrapper-wide {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Navigation ---- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(6, 8, 18, 0.75);
  border-bottom: 1px solid var(--stroke);
  padding: 0 1.5rem;
}

.site-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 56px;
  gap: 1.5rem;
}

.site-nav .nav-logo {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.site-nav .nav-logo .prompt-symbol {
  color: var(--secondary);
  font-weight: 400;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  margin-left: auto;
}

.site-nav ul a {
  font-size: 0.85rem;
  color: var(--muted);
  font-family: var(--font-mono);
  transition: color 0.2s;
}

.site-nav ul a:hover {
  color: var(--secondary);
}

/* ---- Hero / Site Header ---- */
.site-header {
  padding: 5rem 0 3rem;
  border-bottom: 1px solid var(--stroke);
}

.site-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.site-header h1 .gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-header .site-description {
  color: var(--muted);
  font-size: 1rem;
  max-width: 520px;
  line-height: 1.6;
}

/* ---- Post cards ---- */
.post-feed {
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-card {
  display: block;
  padding: 2rem 2rem 2.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.25s, background 0.25s;
}

.post-card:hover {
  border-color: rgba(124, 92, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
}

.post-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  opacity: 0.6;
}

.post-card-meta .tag {
  color: var(--primary);
}

.post-card-meta .separator {
  opacity: 0.3;
}

.post-card h2 {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  color: var(--text);
  transition: color 0.2s;
}

.post-card:hover h2 {
  color: var(--secondary);
}

.post-card-title {
  text-decoration: none;
  color: inherit;
}

.post-card .post-excerpt {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-height: 25.5em; /* ~15 lines at 1.7 line-height */
  overflow: hidden;
  margin-bottom: 1.25rem;
  position: relative;
}

.post-card .post-excerpt::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3em;
  background: linear-gradient(transparent, var(--bg));
  pointer-events: none;
}

.post-card .post-excerpt p {
  margin-bottom: 1em;
}

.post-card .post-excerpt h2,
.post-card .post-excerpt h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 1em 0 0.5em;
}

.post-card .post-excerpt pre,
.post-card .post-excerpt code {
  font-family: var(--font-mono);
  font-size: 0.85em;
}

.post-card .post-excerpt a {
  color: var(--secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(45, 226, 230, 0.3);
}

.post-card .post-excerpt a:hover {
  text-decoration-color: var(--secondary);
}

.post-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--stroke);
}

.read-more {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--secondary);
  transition: color 0.2s;
}

.read-more:hover {
  color: var(--primary);
}

.post-card-actions {
  display: flex;
  gap: 0.75rem;
}

.card-action {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
  opacity: 0.5;
  background: none;
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 0.25rem 0.65rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.card-action:hover {
  opacity: 1;
  color: var(--primary);
  border-color: var(--primary);
}

/* Post card with featured image */
.post-card.has-image {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 1.5rem;
  align-items: center;
}

.post-card-image {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 16/10;
}

.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- Single post ---- */
.post-header {
  padding: 4rem 0 2rem;
}

.post-header .post-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.6;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.post-header .post-meta .tag {
  color: var(--primary);
}

.post-header h1 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.post-feature-image {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2.5rem;
  border: 1px solid var(--stroke);
}

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

/* ---- Post content ---- */
.post-content {
  padding-bottom: 4rem;
  overflow-wrap: break-word;
  word-break: break-word;
}

.post-content pre {
  overflow-x: auto;
  max-width: 100%;
}

.post-content svg {
  max-width: 100%;
  height: auto;
}

.post-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 2.5rem 0 1rem;
  color: var(--text);
}

.post-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  color: var(--text);
}

.post-content p {
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.post-content strong { color: var(--text); }

.post-content ul, .post-content ol {
  color: var(--muted);
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.post-content li { margin-bottom: 0.5rem; line-height: 1.6; }

.post-content blockquote {
  border-left: 3px solid var(--primary);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  background: var(--glass);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--muted);
  font-style: italic;
}

.post-content a {
  color: var(--secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(45, 226, 230, 0.3);
}

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

/* Code — the CLI flavour */
.post-content code {
  font-family: var(--font-mono);
  font-size: 0.85em;
  background: var(--neutral);
  border: 1px solid var(--stroke);
  padding: 0.15em 0.4em;
  border-radius: 5px;
  color: var(--secondary);
}

.post-content pre {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  overflow-x: auto;
  position: relative;
}

.post-content pre::before {
  content: "$ ";
  color: var(--secondary);
  opacity: 0.4;
  font-family: var(--font-mono);
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
  pointer-events: none;
  display: none; /* only show on single-line blocks */
}

.post-content pre code {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.6;
}

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

.post-content img {
  border-radius: var(--radius-sm);
  border: 1px solid var(--stroke);
  margin: 1.5rem 0;
}

.post-content figcaption {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  opacity: 0.6;
  margin-top: 0.5rem;
}

/* ---- Ghost content width classes ---- */
.kg-width-wide {
  margin-left: -4rem;
  margin-right: -4rem;
  max-width: calc(100% + 8rem);
}

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

.kg-width-wide img,
.kg-width-full img {
  width: 100%;
}

@media (max-width: 860px) {
  .kg-width-wide {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    max-width: calc(100% + 3rem);
  }
}

/* ---- Post attachments ---- */
.post-content a[download] {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--muted);
  padding: 0.6rem 1rem;
  margin-top: 3rem;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  background: var(--glass);
  transition: all 0.2s;
}

.post-content a[download]::before {
  content: "↓";
  color: var(--secondary);
}

.post-content a[download]:hover {
  border-color: var(--primary);
  color: var(--primary);
  text-decoration: none;
}

/* KG cards (Ghost editor blocks) */
.kg-image-card, .kg-gallery-card, .kg-embed-card, .kg-bookmark-card {
  margin: 1.5rem 0;
}

.kg-image-card img {
  margin: 0 auto;
}

/* ---- Gallery ---- */
.kg-gallery-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.kg-gallery-row {
  display: flex;
  gap: 0.5rem;
}

.kg-gallery-row img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--stroke);
  margin: 0;
  cursor: pointer;
  transition: opacity 0.2s;
}

.kg-gallery-row img:hover {
  opacity: 0.85;
}

.kg-gallery-image {
  flex: 1;
  min-width: 0;
}

.kg-bookmark-card {
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--glass);
}

.kg-bookmark-container {
  display: flex;
  text-decoration: none;
  color: var(--text);
}

.kg-bookmark-content {
  flex: 1;
  padding: 1rem 1.25rem;
}

.kg-bookmark-title {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.kg-bookmark-description {
  font-size: 0.8rem;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kg-bookmark-metadata {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--muted);
}

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

.kg-bookmark-thumbnail {
  width: 140px;
  min-height: 100%;
}

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

/* ---- Pagination ---- */
.pagination {
  padding: 2rem 0 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--muted);
}

.pagination a {
  padding: 0.4rem 1rem;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  color: var(--muted);
  transition: all 0.2s;
}

.pagination a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ---- Footer ---- */
.site-footer {
  border-top: 1px solid var(--stroke);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.site-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.4;
}

.site-footer-inner a {
  color: var(--muted);
}

/* ---- Tag page ---- */
.tag-header {
  padding: 4rem 0 2rem;
  border-bottom: 1px solid var(--stroke);
}

.tag-header h1 {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.tag-header h1::before {
  content: "#";
  opacity: 0.5;
  margin-right: 0.25rem;
}

.tag-header .tag-description {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* ---- Author page ---- */
.author-header {
  padding: 4rem 0 2rem;
  border-bottom: 1px solid var(--stroke);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--stroke);
}

.author-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
}

.author-header .author-bio {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

/* ---- Error page ---- */
.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
}

.error-code {
  font-family: var(--font-mono);
  font-size: 5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.error-message {
  color: var(--muted);
  margin-top: 1rem;
  font-family: var(--font-mono);
}

.error-link {
  margin-top: 2rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--secondary);
}

/* ---- Sidebar layout ---- */
.with-sidebar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
}

.with-sidebar > .content-area {
  min-width: 0;
  overflow: hidden;
}

.sidebar {
  position: sticky;
  top: 72px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 3rem;
}

.sidebar-card {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: var(--glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1.25rem;
}

.sidebar-heading {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  opacity: 0.5;
  margin-bottom: 0.75rem;
}

/* Bio card */
.bio-card .bio-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.bio-card .bio-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--stroke);
  object-fit: cover;
}

.bio-card .bio-avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--neutral);
  color: var(--primary);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
}

.bio-card .bio-name {
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.2;
}

.bio-card .bio-role {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--secondary);
  opacity: 0.7;
}

.bio-card .bio-text {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.bio-card .bio-prompt {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  line-height: 1.6;
}

.bio-card .prompt-line {
  display: block;
  color: var(--muted);
}

.bio-card .prompt-char {
  color: var(--secondary);
  margin-right: 0.3rem;
}

.bio-card .prompt-output {
  display: block;
  color: var(--text);
  opacity: 0.6;
}

.bio-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.bio-social {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
  opacity: 0.6;
  transition: all 0.2s;
}

.bio-social:hover {
  color: var(--secondary);
  opacity: 1;
}

/* Tag cloud */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  border: 1px solid var(--stroke);
  color: var(--muted);
  background: var(--glass);
  transition: all 0.2s;
}

.tag-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(124, 92, 255, 0.08);
}

.tag-pill .tag-count {
  font-size: 0.6rem;
  opacity: 0.4;
}

/* Recent posts */
.recent-posts {
  list-style: none;
}

.recent-posts li {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.recent-posts li:first-child {
  border-top: none;
}

.recent-post-link {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--muted);
  transition: color 0.2s;
}

.recent-post-link:hover {
  color: var(--secondary);
}

.recent-post-title {
  font-size: 0.8rem;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}

.recent-post-date {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  opacity: 0.4;
  white-space: nowrap;
}

/* ---- Responsive ---- */
/* ---- Branding page ---- */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.brand-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.brand-swatch {
  border-radius: var(--radius-sm);
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: #fff;
  min-height: 80px;
}

.brand-swatch-sm {
  min-height: 60px;
  padding: 0.75rem;
}

.brand-swatch .swatch-label {
  font-weight: 700;
  font-size: 0.85rem;
}

.brand-swatch code {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  font-size: 0.7rem !important;
  color: inherit !important;
  opacity: 0.7;
}

.brand-card {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: var(--glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

@media (max-width: 640px) {
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .with-sidebar {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
    padding-top: 0;
    border-top: 1px solid var(--stroke);
    padding-top: 2rem;
  }
}

@media (max-width: 640px) {
  .site-header h1 { font-size: 1.75rem; }
  .post-header h1 { font-size: 1.6rem; }
  .post-card {
    padding: 1.5rem 1.25rem 1.75rem;
  }
  .post-card.has-image {
    grid-template-columns: 1fr;
  }
  .post-card-image { display: none; }
  .with-sidebar,
  .site-wrapper,
  .site-wrapper-wide {
    padding: 0 1rem;
  }
  .site-nav {
    padding: 0 1rem;
  }
  .site-nav ul { gap: 0.75rem; }
  .site-nav ul a { font-size: 0.75rem; }
  .post-card-meta { flex-wrap: wrap; gap: 0.4rem; }
  .post-card-footer { flex-wrap: wrap; gap: 0.75rem; }
  .post-card-actions { flex-wrap: wrap; }
  .nav-logo { font-size: 0.9rem !important; }
}
