﻿:root {
  --ink: #0A0908;
  --cream: #F8F6F1;
  --surface: #FFFFFF;
  --border: #E8E2D9;
  --ember: #E8612A;
  --ember-light: #F59E6B;
  --ember-bg: #FBE9DF;
  --ember-glow: rgba(232,97,42,0.18);
  --muted: #6B6258;
  --muted2: #A09890;
  --sand: #E0D8CE;
  --green: #16A34A;
  --green-bg: #DCFCE7;
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  overflow-x: hidden;
}

/* 
   NAV
 */
nav {
  position: fixed; top:0; left:0; right:0; z-index:500;
  display: flex; align-items:center; justify-content:space-between;
  padding: 0 44px; height:60px;
  transition: background .4s, border-color .4s;
}
nav.bg { background:rgba(10,9,8,.9); backdrop-filter:blur(20px); border-bottom:1px solid rgba(255,255,255,.07); }
.nav-logo { text-decoration:none; font-size:19px; font-weight:800; color:#fff; letter-spacing:-.5px; }
.nav-logo em { color:var(--ember); font-style:normal; }
.brand-lockup { cursor:pointer; display:flex; align-items:center; gap:9px; }
.brand-mark { display:block; flex-shrink:0; }
.brand-word { font-size:18px; font-weight:800; letter-spacing:-.5px; color:#fff; }
.nav-links { display:flex; gap:28px; }
.nav-link { font-size:13px; color:rgba(255,255,255,.4); font-weight:600; text-decoration:none; transition:color .2s; }
.nav-link:hover { color:#fff; }
.nav-ctas { display:flex; gap:8px; align-items:center; }
.n-ghost { font-size:12px; font-weight:700; color:rgba(255,255,255,.5); background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.12); padding:7px 16px; border-radius:7px; font-family:'Bricolage Grotesque',sans-serif; transition:all .2s; }
.n-ghost:hover { color:#fff; border-color:rgba(255,255,255,.3); }
.n-main { font-size:12px; font-weight:800; color:#fff; background:var(--ember); border:none; padding:8px 18px; border-radius:7px; font-family:'Bricolage Grotesque',sans-serif; transition:background .2s; }
.n-main:hover { background:#d4531e; }

/* 
   HERO - Zoom Effect
 */
.zoom-wrapper {
  position: relative;
  height: 136vh;
  background: var(--ink);
}
.zoom-sticky {
  position: sticky; top: 0;
  height: 100vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.zoom-device {
  position: relative; z-index: 1;
  width: 100vw; height: 100vh;
  background: var(--ink);
  overflow: hidden;
  transform-origin: center center;
  will-change: transform, border-radius, box-shadow;
}
.device-chrome {
  position: absolute; top: 0; left: 0; right: 0;
  height: 44px;
  background: rgba(20,18,16,.95);
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center;
  padding: 0 20px; gap: 10px;
  opacity: 0; transform: translateY(-100%);
  transition: opacity .4s ease, transform .4s ease;
  z-index: 10; backdrop-filter: blur(10px);
}
.device-chrome.show { opacity: 1; transform: translateY(0); }
.d-dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.dot-red { background:#FF5F57; }
.dot-amber { background:#FFBD2E; }
.dot-green { background:#28CA42; }
.d-url {
  flex: 1; max-width: 260px; margin: 0 auto;
  background: rgba(255,255,255,.06); border-radius: 6px;
  padding: 5px 14px; font-size: 11px; color: rgba(255,255,255,.25);
  text-align: center; font-family: 'DM Sans', sans-serif;
}

/* Hero Content */
.device-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  padding: 0 56px;
}
.device-glow {
  position: absolute; bottom: -220px; left: 50%; transform: translateX(-50%);
  width: 1000px; height: 650px;
  background: radial-gradient(ellipse at 50% 100%, rgba(232,97,42,.2) 0%, rgba(232,97,42,.05) 45%, transparent 70%);
  pointer-events: none;
}
.device-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 64px 64px; pointer-events: none;
}
.device-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 35%, rgba(10,9,8,.85) 100%);
  pointer-events: none;
}
.device-orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.orb-1 {
  width: 600px; height: 600px;
  background: rgba(232,97,42,.15);
  top: -200px; right: -200px;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: rgba(232,97,42,.1);
  bottom: -100px; left: -100px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  padding:5px 16px 5px 6px;
  background:rgba(232,97,42,.12); border:1px solid rgba(232,97,42,.3);
  border-radius:100px; margin-bottom:28px;
  animation: fadeUp .9s ease both;
  position: relative; z-index: 1;
}
.badge-dot { width:22px; height:22px; border-radius:50%; background:var(--ember); display:flex; align-items:center; justify-content:center; font-size:10px; }
.badge-text { font-size:11px; font-weight:700; color:var(--ember-light); letter-spacing:.5px; }

.device-h1 {
  font-size: clamp(44px, 6.5vw, 96px);
  font-weight: 900; line-height: 1.04; letter-spacing: -3px;
  position: relative; z-index: 1;
  animation: fadeUp .9s .1s ease both;
}
.device-h1 .l1 { display: block; color: rgba(255,255,255,.2); }
.device-h1 .l2 { display: block; color: rgba(255,255,255,.5); }
.device-h1 .l3 { display: block; color: #fff; }
.device-h1 .l3 em { font-style: italic; font-family: 'Instrument Serif', serif; color: var(--ember); font-size: .92em; letter-spacing: -2px; }

.device-sub {
  font-size: 17px; color: rgba(255,255,255,.48);
  max-width: 520px; line-height: 1.7; font-weight: 400;
  margin-top: 28px;
  position: relative; z-index: 1;
  animation: fadeUp .9s .2s ease both;
}
.device-sub strong { color: rgba(255,255,255,.7); font-weight: 600; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 
   FEATURED POST
 */
.featured-section {
  background: var(--ink);
  padding: 0 44px 80px;
  position: relative;
}
.featured-section::before {
  content:''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(232,97,42,.08) 0%, transparent 65%);
  pointer-events: none;
}
.featured-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }

.featured-card {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  overflow: hidden;
  transition: all .4s cubic-bezier(.22,.61,.36,1);
}
.featured-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232,97,42,.3);
  box-shadow: 0 30px 80px rgba(232,97,42,.12);
}

.featured-image {
  min-height: 400px;
  background-image:
    linear-gradient(135deg, rgba(10,9,8,.38) 0%, rgba(10,9,8,.64) 100%),
    url('../../N4.webp');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.featured-image::before {
  content:''; position: absolute; inset: 0;
  background: 
    radial-gradient(circle at 30% 40%, rgba(232,97,42,.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(245,158,107,.15) 0%, transparent 40%);
}
.featured-image-icon {
  width: 80px; height: 80px;
  background: rgba(232,97,42,.2);
  border: 2px solid rgba(232,97,42,.4);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.featured-image-icon svg {
  width: 36px; height: 36px;
  color: var(--ember);
}

.featured-content {
  padding: 48px;
  display: flex; flex-direction: column; justify-content: center;
}
.featured-category {
  display: inline-flex;
  font-size: 11px; font-weight: 700;
  color: var(--ember);
  background: rgba(232,97,42,.15);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  width: fit-content;
}
.featured-content h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 16px;
}
.featured-content h2 em {
  font-style: italic;
  font-family: 'Instrument Serif', serif;
  color: var(--ember);
}
.featured-excerpt {
  font-size: 15px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin-bottom: 28px;
}
.featured-author {
  display: flex; align-items: center; gap: 14px;
}
.featured-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(232,97,42,.18);
  background: #161310;
  box-shadow: 0 12px 24px rgba(232,97,42,.12);
}
.featured-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.featured-author-info h4 {
  font-size: 14px; font-weight: 700; color: #fff;
}
.featured-author-info span {
  font-size: 12px; color: rgba(255,255,255,.4);
}
.featured-link {
  margin-top: 28px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: var(--ember);
  text-decoration: none;
  transition: gap .2s;
}
.featured-link:hover { gap: 12px; }

/* 
   CATEGORIES RAIL
 */
.categories-section {
  background: var(--cream);
  padding: 60px 44px;
  border-top: 1px solid var(--border);
}
.categories-inner { max-width: 1100px; margin: 0 auto; }
.categories-rail {
  display: flex; gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.category-chip {
  padding: 12px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px; font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all .25s cubic-bezier(.22,.61,.36,1);
}
.category-chip:hover, .category-chip.active {
  background: var(--ember);
  border-color: var(--ember);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,97,42,.25);
}

/* 
   BLOG GRID - Bento Style
 */
.blog-section {
  background: var(--cream);
  padding: 60px 44px 100px;
}
.blog-inner { max-width: 1100px; margin: 0 auto; }

.blog-header {
  margin-bottom: 48px;
}
.blog-kicker {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--ember); font-weight: 700; margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.blog-kicker::before { content:''; width: 24px; height: 2px; background: var(--ember); }
.blog-h2 {
  font-size: clamp(32px, 3.5vw, 52px); font-weight: 800;
  letter-spacing: -2px; line-height: 1.18; color: var(--ink);
}
.blog-h2 em { font-style: italic; font-family: 'Instrument Serif', serif; color: var(--ember); font-size: .93em; letter-spacing: -.5px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all .35s cubic-bezier(.22,.61,.36,1);
}
.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(232,97,42,.35);
  box-shadow: 0 20px 50px rgba(232,97,42,.1), 0 8px 24px rgba(0,0,0,.05);
}

.blog-card-image {
  height: 180px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image:
    linear-gradient(145deg, rgba(16,14,12,.45) 0%, rgba(16,14,12,.62) 100%),
    url('../../N2-2.webp');
}
.blog-card-image::before {
  content:'';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,.35) 100%);
}
.blog-card-image::after {
  content: none;
}

.blog-card:nth-child(1) .blog-card-image {
  background-image:
    linear-gradient(145deg, rgba(16,14,12,.45) 0%, rgba(16,14,12,.62) 100%),
    url('../../N4.webp');
}

.blog-card:nth-child(2) .blog-card-image {
  background-image:
    linear-gradient(145deg, rgba(16,14,12,.45) 0%, rgba(16,14,12,.62) 100%),
    url('../../N3.webp');
}

.blog-card:nth-child(3) .blog-card-image {
  background-image:
    linear-gradient(145deg, rgba(16,14,12,.45) 0%, rgba(16,14,12,.62) 100%),
    url('../../N2-2.webp');
}

.blog-card:nth-child(4) .blog-card-image {
  background-image:
    linear-gradient(145deg, rgba(16,14,12,.45) 0%, rgba(16,14,12,.62) 100%),
    url('../../Slider2.webp');
}

.blog-card:nth-child(5) .blog-card-image {
  background-image:
    linear-gradient(145deg, rgba(16,14,12,.45) 0%, rgba(16,14,12,.62) 100%),
    url('../../Narrative2.1.webp');
}

.blog-card:nth-child(6) .blog-card-image {
  background-image:
    linear-gradient(145deg, rgba(16,14,12,.45) 0%, rgba(16,14,12,.62) 100%),
    url('../../Slider1.jpeg');
}

.blog-card-content {
  padding: 28px;
  flex: 1;
  display: flex; flex-direction: column;
}
.blog-card-category {
  display: inline-flex;
  font-size: 10px; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--ember);
  background: var(--ember-bg);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
  width: fit-content;
}
.blog-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.35;
  letter-spacing: -.3px;
}
.blog-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 20px;
  flex: 1;
}
.blog-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.blog-card-date {
  font-size: 12px;
  color: var(--muted2);
  font-weight: 500;
}
.blog-card-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--ember);
  text-decoration: none;
  display: flex; align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.blog-card-link:hover { gap: 10px; }

/* 
   RELATED POSTS
 */
.related-section {
  background: var(--cream);
  padding: 0 44px 80px;
}
.related-inner { max-width: 1100px; margin: 0 auto; }
.related-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px;
}
.related-header::before {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.related-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.related-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.related-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  text-decoration: none;
  transition: all .25s cubic-bezier(.22,.61,.36,1);
}
.related-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,97,42,.3);
  box-shadow: 0 12px 32px rgba(232,97,42,.08);
}
.related-card-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--ember);
  background: var(--ember-bg);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
  display: inline-block;
}
.related-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 8px;
}
.related-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* 
   NEWSLETTER CTA
 */
.newsletter-section {
  background: var(--ink);
  padding: 100px 44px;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content:''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(232,97,42,.15) 0%, transparent 60%);
  pointer-events: none;
}
.newsletter-inner {
  max-width: 600px; margin: 0 auto;
  text-align: center;
  position: relative; z-index: 1;
}
.newsletter-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 56px 48px;
  position: relative;
}
.newsletter-card::before {
  content:''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  border-radius: 24px;
}
.newsletter-orb {
  position: absolute; top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: rgba(232,97,42,.2);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.newsletter-icon {
  width: 64px; height: 64px;
  background: rgba(232,97,42,.15);
  border: 1px solid rgba(232,97,42,.3);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  position: relative; z-index: 1;
}
.newsletter-icon svg {
  width: 28px; height: 28px;
  color: var(--ember);
}
.newsletter-icon-glyph {
  width: 30px;
  height: 30px;
  display: block;
  background: linear-gradient(180deg, #ffd7bf 0%, #ffae81 100%);
  -webkit-mask: url('/bold/mailbox-bold.svg') center / contain no-repeat;
  mask: url('/bold/mailbox-bold.svg') center / contain no-repeat;
}
.newsletter-card h2 {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.newsletter-card h2 em {
  font-style: italic;
  font-family: 'Instrument Serif', serif;
  color: var(--ember);
}
.newsletter-card p {
  font-size: 15px;
  color: rgba(255,255,255,.5);
  margin-bottom: 32px;
  position: relative; z-index: 1;
}
.newsletter-form {
  display: flex; gap: 12px;
  position: relative; z-index: 1;
}
.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  font-size: 14px;
  font-family: 'Bricolage Grotesque', sans-serif;
  color: #fff;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.3); }
.newsletter-form input:focus {
  border-color: var(--ember);
  background: rgba(255,255,255,.08);
}
.newsletter-form input:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(232,97,42,.14);
}
.newsletter-form button {
  padding: 16px 28px;
  background: var(--ember);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Bricolage Grotesque', sans-serif;
  cursor: pointer;
  transition: background .2s, box-shadow .2s, transform .2s;
  box-shadow: 0 4px 20px rgba(232,97,42,.3);
}
.newsletter-form button:hover {
  background: #d4531e;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(232,97,42,.4);
}
.newsletter-form button:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 2px;
}
.newsletter-note {
  font-size: 12px;
  color: rgba(255,255,255,.3);
  margin-top: 20px;
  position: relative; z-index: 1;
}

/* 
   FOOTER
 */
footer { background:#060504; padding:64px 44px 40px; }
.footer-grid { display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:48px; margin-bottom:56px; }
.f-logo { text-decoration:none; color:inherit; font-size:22px; font-weight:800; color:#fff; letter-spacing:-.5px; margin-bottom:12px; }
.f-logo em { color:var(--ember); font-style:normal; }
.f-tagline { font-size:13px; color:rgba(255,255,255,.25); line-height:1.6; }
.f-col-title { font-size:9px; font-weight:700; letter-spacing:3px; text-transform:uppercase; color:rgba(255,255,255,.18); margin-bottom:18px; }
.f-link { display:block; font-size:13px; color:rgba(255,255,255,.35); text-decoration:none; margin-bottom:10px; transition:color .2s; }
.f-link:hover { color:#fff; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.06); padding-top:32px; display:flex; justify-content:space-between; align-items:center; }
.f-copy { font-size:11px; color:rgba(255,255,255,.2); }

/* 
   RESPONSIVE
 */
@media (max-width: 1024px) {
  .featured-card { grid-template-columns: 1fr; }
  .featured-image { min-height: 280px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  nav { padding: 0 22px; }
  .nav-links { display: none; }
  .zoom-wrapper { height: 118vh; }
  .device-h1 { font-size: 36px; letter-spacing: -1px; }
  .device-sub { font-size: 15px; }
  .featured-section { padding: 0 22px 60px; }
  .featured-content { padding: 32px; }
  .categories-section { padding: 40px 22px; }
  .blog-section { padding: 40px 22px 80px; }
  .blog-grid { grid-template-columns: 1fr; }
  .related-section { padding: 0 22px 60px; }
  .related-grid { grid-template-columns: 1fr; }
  .newsletter-section { padding: 80px 22px; }
  .newsletter-card { padding: 40px 28px; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 2fr; gap: 32px; }
}

@media (max-width: 480px) {
  nav { padding: 0 12px; }
  .nav-ctas { gap: 6px; }
  .n-ghost { display: none; }
  .n-main { padding: 7px 12px; font-size: 11px; white-space: nowrap; }
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--sand); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted2); }
