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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Assistant", sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: #334155;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   LAYOUT
   ============================================ */
.blog-layout {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 24px;
  gap: 60px;
}

/* ============================================
   SIDEBAR NAVIGATION
   ============================================ */
.blog-sidebar {
  position: sticky;
  top: 40px;
  width: 280px;
  min-width: 280px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  padding-right: 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.blog-sidebar::-webkit-scrollbar {
  display: none;
}

/* Close button — hidden on desktop */
.sidebar-close {
  display: none;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Assistant", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
  margin-bottom: 16px;
}

.sidebar-close:hover {
  color: #bf3425;
  background: #fef7f6;
}

.sidebar-close svg {
  flex-shrink: 0;
}

.blog-sidebar-title {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #9d9d9c;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-left: 12px;
}

.blog-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.blog-sidebar-link {
  font-family: "Assistant", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #64748b;
  padding: 10px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: block;
}

.blog-sidebar-link:hover {
  color: #47577c;
  background-color: #f8fafc;
}

.blog-sidebar-link.active {
  color: #bf3425;
  background-color: #fef7f6;
  font-weight: 700;
}

/* ============================================
   MOBILE NAV TOGGLE
   ============================================ */
.mobile-nav-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #bf3425 0%, #9d2a1e 100%);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(191, 52, 37, 0.4);
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
}

.mobile-nav-toggle:hover {
  transform: scale(1.1);
}

.mobile-nav-toggle svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.blog-content {
  flex: 1;
  max-width: 900px;
  min-width: 0;
}

/* ============================================
   BLOG META
   ============================================ */
.blog-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: #64748b;
  margin-bottom: 10px;
}

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-meta-icon {
  width: 16px;
  height: 16px;
  color: #64748b;
  flex-shrink: 0;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.blog-content h1 {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 2.75rem;
  line-height: 1.15;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.blog-content h2 {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: #1e293b;
  margin-top: 3.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #bf3425;
}

.blog-content h3 {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #47577c;
  margin-top: 2rem;
  margin-bottom: 0.875rem;
}

.blog-content h4 {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #1e293b;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.blog-content p {
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
}

.blog-content ul,
.blog-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.blog-content li {
  margin-bottom: 0.625rem;
  font-size: 1.0625rem;
}

.blog-content a {
  color: #47577c;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
  transition: color 0.2s;
}

.blog-content a:hover {
  color: #bf3425;
}

/* Subtitle */
.subtitle {
  font-size: 1.25rem;
  font-style: italic;
  color: #47577c;
  margin-bottom: 2rem;
}

/* Drop Cap */
.drop-cap::first-letter {
  float: left;
  font-family: "Archivo", sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 0.8;
  color: #bf3425;
  margin-right: 12px;
  margin-top: 8px;
}

/* ============================================
   IMAGES
   ============================================ */
.full-width-image {
  width: 100%;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: block;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.full-width-image:hover {
  transform: scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image-caption {
  font-size: 0.875rem;
  color: #64748b;
  text-align: center;
  margin-top: -1.25rem;
  margin-bottom: 2rem;
  font-style: italic;
}

/* ============================================
   SPLIT LAYOUT
   ============================================ */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin: 2.5rem 0;
}

.split-layout.reverse {
  direction: rtl;
}

.split-layout.reverse > * {
  direction: ltr;
}

.split-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: block;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.split-image img:hover {
  transform: scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.split-image .image-caption {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.split-text h3 {
  margin-top: 0;
}

.split-text p:first-child {
  margin-top: 0;
}

/* ============================================
   HIGHLIGHT BOXES
   ============================================ */
.intro-card {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.highlight-box {
  background: linear-gradient(135deg, #fef7f6 0%, #fff8f7 100%);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border: 1px solid #fbd5d0;
}

.highlight-box p {
  margin-bottom: 0;
}

.highlight-box h4 {
  color: #bf3425;
  margin-top: 0;
}

.highlight-box.dark {
  background: linear-gradient(135deg, #1e293b 0%, #2d3a52 100%);
  border-color: #334155;
  color: #e2e8f0;
}

.highlight-box.dark h4 {
  color: #f87171;
}

.highlight-box.dark p {
  color: #cbd5e1;
  margin-bottom: 0;
}

/* ============================================
   FEATURE GRID
   ============================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: #47577c;
  box-shadow: 0 8px 25px -5px rgba(71, 87, 124, 0.15);
  transform: translateY(-2px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #47577c 0%, #1e293b 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
  transition: background 0.3s;
}

.feature-item:hover .feature-icon {
  background: linear-gradient(135deg, #bf3425 0%, #9d2a1e 100%);
}

.feature-item h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.feature-item p {
  margin-bottom: 0;
  font-size: 0.9375rem;
  color: #475569;
}

.feature-content {
  flex: 1;
  min-width: 0;
}

/* ============================================
   STATS GRID
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.stat-card {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: #bf3425;
  box-shadow: 0 8px 25px -5px rgba(191, 52, 37, 0.12);
  transform: translateY(-2px);
}

.stat-value {
  font-family: "Archivo", sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  color: #bf3425;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.4;
}

/* ============================================
   DATA TABLE
   ============================================ */
.data-table-container {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  background: #ffffff;
}

.data-table thead {
  background: linear-gradient(135deg, #1e293b 0%, #2d3a52 100%);
}

.data-table th {
  padding: 14px 16px;
  text-align: left;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
  vertical-align: top;
}

.data-table tbody tr:hover {
  background-color: #f8fafc;
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

/* ============================================
   INFOGRAPHIC PLACEHOLDERS
   ============================================ */
.infographic-placeholder {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 2px dashed #cbd5e1;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  margin: 2.5rem 0;
  text-align: center;
  color: #64748b;
}

.infographic-label {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #47577c;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.infographic-description {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

/* ============================================
   LEARN MORE CARDS
   ============================================ */
.learn-more-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.learn-more-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.learn-more-card:hover {
  border-color: #bf3425;
  box-shadow: 0 8px 25px -5px rgba(191, 52, 37, 0.15);
  transform: translateY(-2px);
}

.learn-more-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #47577c 0%, #1e293b 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
  color: #ffffff;
}

.learn-more-card:hover .learn-more-icon {
  background: linear-gradient(135deg, #bf3425 0%, #9d2a1e 100%);
}

.learn-more-icon svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
}

.learn-more-text {
  display: flex;
  flex-direction: column;
}

.learn-more-title {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #1e293b;
  transition: color 0.3s;
}

.learn-more-card:hover .learn-more-title {
  color: #bf3425;
}

.learn-more-desc {
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 0.25rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, #fef7f6 0%, #ffffff 100%);
  border: 2px solid #bf3425;
  border-radius: 16px;
  padding: 2rem;
  margin: 2.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #bf3425, #47577c);
}

.cta-section p {
  margin-bottom: 1.25rem;
  color: #1e293b;
  font-size: 1.125rem;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #bf3425 0%, #9d2a1e 100%);
  color: #ffffff;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(191, 52, 37, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(191, 52, 37, 0.4);
  color: #ffffff;
}

/* ============================================
   REFERENCES
   ============================================ */
.references-list {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.references-list li {
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

.references-list a {
  font-size: 0.9375rem;
  word-break: break-all;
}

/* ============================================
   AUTHOR SECTION
   ============================================ */
.author-section {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.author-card {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
}

.author-image-wrapper {
  flex-shrink: 0;
}

.author-image {
  width: 180px;
  height: 180px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
}

.author-info {
  flex: 1;
  min-width: 0;
}

.author-name {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 4px;
  text-decoration: underline;
  text-decoration-color: #bf3425;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.author-title {
  font-size: 1rem;
  font-weight: 600;
  color: #47577c;
  margin-bottom: 16px;
}

.author-social {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.author-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f8fafc;
  border-radius: 10px;
  transition:
    transform 0.2s,
    background 0.2s;
  text-decoration: none;
}

.author-social a:hover {
  transform: scale(1.1);
  background: #e2e8f0;
}

.author-social svg {
  width: 24px;
  height: 24px;
}

.about-author-label {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #bf3425;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.author-bio {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.7;
  text-align: justify;
  margin: 0;
}

/* ============================================
   SECTION SCROLL MARGIN
   ============================================ */
section {
  scroll-margin-top: 40px;
}

/* ============================================
   RESPONSIVE — 1024px
   ============================================ */
@media (max-width: 1024px) {
  .blog-layout {
    flex-direction: column;
    gap: 32px;
  }

  /* Sidebar becomes horizontal pills on tablet */
  .blog-sidebar {
    position: relative;
    top: 0;
    width: 100%;
    min-width: 100%;
    max-height: none;
    padding-right: 0;
    padding-bottom: 24px;
    border-bottom: 1px solid #e2e8f0;
  }

  .blog-sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .blog-sidebar-link {
    font-size: 13px;
    padding: 8px 12px;
  }

  .blog-content h1 {
    font-size: 2rem;
  }

  .split-layout {
    grid-template-columns: 1fr;
  }

  .split-layout.reverse {
    direction: ltr;
  }

  .split-layout.reverse > * {
    direction: ltr;
  }

  .feature-grid,
  .learn-more-container {
    grid-template-columns: 1fr;
  }

  .author-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .author-social {
    justify-content: center;
  }

  .author-bio {
    text-align: center;
  }
}

/* ============================================
   RESPONSIVE — 768px (Mobile, sidebar overlay)
   ============================================ */
@media (max-width: 768px) {
  /* Show hamburger button */
  .mobile-nav-toggle {
    display: flex;
  }

  /* Sidebar becomes full-screen overlay */
  .blog-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: #ffffff;
    z-index: 999;
    padding: 20px;
    overflow-y: auto;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    border-bottom: none;
    max-height: 100vh;
  }

  .blog-sidebar.active {
    transform: translateY(0);
  }

  /* Show close button inside sidebar */
  .sidebar-close {
    display: flex;
  }

  .blog-sidebar-nav {
    flex-direction: column;
    gap: 4px;
  }

  .blog-sidebar-link {
    font-size: 16px;
    padding: 14px 16px;
    border-radius: 8px;
  }

  .blog-sidebar-title {
    font-size: 12px;
    margin-bottom: 20px;
    padding-top: 8px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   RESPONSIVE — 640px
   ============================================ */
@media (max-width: 640px) {
  .blog-layout {
    padding: 20px 12px;
  }

  .blog-content h1 {
    font-size: 1.75rem;
  }

  .blog-content h2 {
    font-size: 1.5rem;
  }

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

  .intro-card,
  .highlight-box {
    padding: 1.25rem;
  }

  .cta-button {
    width: 100%;
    text-align: center;
    padding: 1rem;
  }

  .learn-more-card {
    padding: 1rem;
  }

  .learn-more-icon {
    width: 40px;
    height: 40px;
  }

  .learn-more-icon svg {
    width: 20px;
    height: 20px;
  }

  .feature-item {
    flex-direction: column;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
  }

  .author-image {
    width: 140px;
    height: 140px;
  }

  .author-card {
    padding: 1.25rem;
  }
}

/* ============================================
   RESPONSIVE — 480px
   ============================================ */
@media (max-width: 480px) {
  .blog-layout {
    padding: 16px 10px;
  }

  .blog-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .cta-section {
    padding: 1.25rem;
  }

  .author-image {
    width: 100px;
    height: 100px;
  }

  .learn-more-container {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .mobile-nav-toggle,
  .sidebar-close {
    display: none !important;
  }

  .blog-sidebar {
    position: relative;
    width: auto;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
/* <!-- INFOGRAPHICS START 1 --> */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

.jt-root {
  font-family:
    "Inter",
    -apple-system,
    sans-serif;
  background: #ffffff;
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 24px;
}

.jt-header {
  margin-bottom: 28px;
}

.jt-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #bf3425;
  margin-bottom: 6px;
}

.jt-title {
  font-size: 22px;
  font-weight: 800;
  color: #47577c;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.jt-subtitle {
  font-size: 13px;
  color: #9d9d9c;
  font-weight: 400;
  margin: 0;
}

/* Grid */
.jt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

@media (max-width: 400px) {
  .jt-grid {
    grid-template-columns: 1fr;
  }
}

/* Cards */
.jt-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px 16px 18px;
  box-shadow: 0 2px 8px rgba(71, 87, 124, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    box-shadow 0.2s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.jt-card.jt-visible {
  opacity: 1;
  transform: translateY(0);
}

.jt-card:hover {
  box-shadow: 0 8px 24px rgba(71, 87, 124, 0.14);
  transform: translateY(-3px);
}

/* Flare badge */
.jt-flare-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 10px;
  font-weight: 700;
  color: #9d9d9c;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2px 7px;
  letter-spacing: 0.04em;
}

.jt-card-name {
  font-size: 13px;
  font-weight: 700;
  color: #47577c;
  text-align: center;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

/* SVG joint area */
.jt-svg-wrap {
  width: 120px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

/* Divider */
.jt-divider {
  width: 100%;
  height: 1px;
  background: #e2e8f0;
  margin-bottom: 14px;
}

/* Metrics */
.jt-metrics {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jt-metric {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.jt-metric-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #9d9d9c;
}

.jt-metric-value {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
}

.jt-metric-value span.jt-unit {
  font-size: 11px;
  font-weight: 500;
  color: #9d9d9c;
}

/* UTS bar */
.jt-bar-track {
  width: 100%;
  height: 5px;
  background: #f1f5f9;
  border-radius: 3px;
  overflow: hidden;
  margin-top: 3px;
}

.jt-bar-fill {
  height: 100%;
  border-radius: 3px;
  width: 0%;
  transition: width 1s cubic-bezier(0.34, 1.2, 0.64, 1);
}

/* Fail note */
.jt-fail-note {
  font-size: 10px;
  color: #bf3425;
  font-weight: 600;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Comparison strip at bottom */
.jt-comparison {
  margin-top: 24px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 20px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease 0.6s,
    transform 0.5s ease 0.6s;
}

.jt-comparison.jt-visible {
  opacity: 1;
  transform: translateY(0);
}

.jt-comparison-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9d9d9c;
  margin-bottom: 12px;
}

.jt-rank-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.jt-rank-row {
  display: grid;
  grid-template-columns: 140px 1fr 60px;
  align-items: center;
  gap: 10px;
}

.jt-rank-name {
  font-size: 11px;
  font-weight: 600;
  color: #47577c;
}

.jt-rank-track {
  height: 8px;
  background: #e9edf4;
  border-radius: 4px;
  overflow: hidden;
}

.jt-rank-fill {
  height: 100%;
  border-radius: 4px;
  width: 0%;
  transition: width 1.2s cubic-bezier(0.34, 1.1, 0.64, 1);
}

.jt-rank-val {
  font-size: 11px;
  font-weight: 700;
  color: #1e293b;
  text-align: right;
}
/* <!-- INFOGRAPHICS START 2 --> */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

.nj-root {
  font-family:
    "Inter",
    -apple-system,
    sans-serif;
  background: #ffffff;
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 24px;
}

.nj-header {
  margin-bottom: 28px;
}

.nj-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #bf3425;
  margin-bottom: 6px;
}

.nj-title {
  font-size: 22px;
  font-weight: 800;
  color: #47577c;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.nj-subtitle {
  font-size: 13px;
  color: #9d9d9c;
  font-weight: 400;
  margin: 0;
}

/* Split layout */
.nj-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .nj-split {
    grid-template-columns: 1fr;
  }
}

/* Cards */
.nj-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 22px 20px 20px;
  box-shadow: 0 2px 10px rgba(71, 87, 124, 0.07);
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    box-shadow 0.22s ease;
  position: relative;
  overflow: hidden;
}

.nj-card.nj-visible {
  opacity: 1;
  transform: translateY(0);
}

.nj-card:hover {
  box-shadow: 0 10px 28px rgba(71, 87, 124, 0.13);
  transform: translateY(-4px);
}

/* Angle badge */
.nj-angle-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 10px;
  font-weight: 700;
  color: #9d9d9c;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 3px 9px;
  letter-spacing: 0.04em;
}

.nj-card-name {
  font-size: 15px;
  font-weight: 800;
  color: #47577c;
  margin-bottom: 4px;
}

.nj-card-aux {
  font-size: 11px;
  color: #9d9d9c;
  font-weight: 500;
  margin-bottom: 16px;
}

.nj-card-aux strong {
  color: #47577c;
  font-weight: 700;
}

/* SVG cross-section */
.nj-svg-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

/* Annotation tags on SVG */
.nj-annotation {
  font-size: 10px;
  font-weight: 700;
  fill: #bf3425;
  font-family: "Inter", sans-serif;
}

/* Divider */
.nj-divider {
  width: 100%;
  height: 1px;
  background: #e2e8f0;
  margin-bottom: 16px;
}

/* Metrics grid */
.nj-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}

.nj-metric {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.nj-metric-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #9d9d9c;
}

.nj-metric-value {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.nj-metric-value .nj-unit {
  font-size: 11px;
  font-weight: 500;
  color: #9d9d9c;
}

/* Bar track */
.nj-bar-track {
  width: 100%;
  height: 5px;
  background: #f1f5f9;
  border-radius: 3px;
  overflow: hidden;
  margin-top: 4px;
}

.nj-bar-fill {
  height: 100%;
  border-radius: 3px;
  width: 0%;
  transition: width 1.1s cubic-bezier(0.34, 1.2, 0.64, 1);
}

/* Highest badge */
.nj-highest {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  font-weight: 700;
  color: #bf3425;
  background: rgba(191, 52, 37, 0.07);
  border-radius: 10px;
  padding: 2px 7px;
  margin-top: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Comparison section */
.nj-comparison {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px 20px;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s ease 0.55s,
    transform 0.55s ease 0.55s;
}

.nj-comparison.nj-visible {
  opacity: 1;
  transform: translateY(0);
}

.nj-comparison-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9d9d9c;
  margin-bottom: 14px;
}

.nj-compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 540px) {
  .nj-compare-grid {
    grid-template-columns: 1fr;
  }
}

.nj-compare-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nj-compare-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9d9d9c;
  margin-bottom: 2px;
}

.nj-compare-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nj-compare-name {
  font-size: 11px;
  font-weight: 600;
  color: #47577c;
  white-space: nowrap;
}

.nj-compare-track {
  height: 7px;
  background: #e9edf4;
  border-radius: 4px;
  overflow: hidden;
}

.nj-compare-fill {
  height: 100%;
  border-radius: 4px;
  width: 0%;
  transition: width 1.2s cubic-bezier(0.34, 1.1, 0.64, 1);
}

.nj-compare-val {
  font-size: 10px;
  font-weight: 700;
  color: #1e293b;
}
/* <!-- INFOGRAPHICS START 3 --> */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

.uts-root {
  font-family:
    "Inter",
    -apple-system,
    sans-serif;
  background: #ffffff;
  max-width: 820px;
  margin: 0 auto;
  padding: 32px 24px;
}

.uts-header {
  margin-bottom: 28px;
}

.uts-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #bf3425;
  margin-bottom: 6px;
}

.uts-title {
  font-size: 22px;
  font-weight: 800;
  color: #47577c;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.uts-subtitle {
  font-size: 13px;
  color: #9d9d9c;
  margin: 0;
}

/* Chart card */
.uts-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px 24px 20px;
  box-shadow: 0 2px 10px rgba(71, 87, 124, 0.07);
  position: relative;
}

/* Ceiling line label */
.uts-ceiling-label {
  position: absolute;
  top: 4px;
  right: 24px;
  font-size: 10px;
  font-weight: 700;
  color: #9d9d9c;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 3px 10px;
  letter-spacing: 0.04em;
}

/* Rows */
.uts-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.uts-row {
  display: grid;
  grid-template-columns: 148px 1fr 64px;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
  opacity: 0;
  transform: translateX(-18px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    background 0.2s ease;
  border-radius: 6px;
  cursor: default;
}

.uts-row:last-child {
  border-bottom: none;
}

.uts-row.uts-visible {
  opacity: 1;
  transform: translateX(0);
}

.uts-row:hover {
  background: #f8fafc;
}

.uts-row:hover .uts-bar-fill {
  filter: brightness(1.1);
}

/* Joint name */
.uts-name {
  font-size: 12px;
  font-weight: 600;
  color: #47577c;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.uts-tag {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9d9d9c;
}

.uts-tag.novel {
  color: #bf3425;
}
.uts-tag.control {
  color: #9d9d9c;
}

/* Bar area */
.uts-bar-area {
  position: relative;
  height: 28px;
  display: flex;
  align-items: center;
}

/* Ceiling ghost bar */
.uts-bar-ceiling {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 28px;
  background: #f1f5f9;
  border-radius: 6px;
  width: 100%;
}

/* Actual bar */
.uts-bar-track {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 28px;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}

.uts-bar-fill {
  height: 100%;
  border-radius: 6px;
  width: 0%;
  transition: width 1.1s cubic-bezier(0.34, 1.1, 0.64, 1);
  display: flex;
  align-items: center;
  padding-left: 10px;
  box-sizing: border-box;
  min-width: 0;
  position: relative;
}

/* Best badge inside bar */
.uts-best-badge {
  position: absolute;
  right: -88px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 9px;
  font-weight: 800;
  color: #bf3425;
  background: rgba(191, 52, 37, 0.09);
  border: 1px solid rgba(191, 52, 37, 0.2);
  border-radius: 20px;
  padding: 2px 8px;
  white-space: nowrap;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.4s ease 1.2s;
}

.uts-row.uts-visible .uts-best-badge {
  opacity: 1;
}

/* Value */
.uts-val {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  text-align: right;
  white-space: nowrap;
}

.uts-val span {
  font-size: 10px;
  font-weight: 500;
  color: #9d9d9c;
}

/* Ceiling reference line overlay */
.uts-bar-area-wrap {
  position: relative;
}

/* Footer */
.uts-footer {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.5s ease 0.9s;
}

.uts-footer.uts-visible {
  opacity: 1;
}

.uts-legend {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.uts-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #47577c;
}

.uts-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  flex-shrink: 0;
}

.uts-ceiling-note {
  font-size: 11px;
  color: #9d9d9c;
  font-style: italic;
}

/* Nylon ceiling marker */
.uts-nylon-marker {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    #9d9d9c 0px,
    #9d9d9c 4px,
    transparent 4px,
    transparent 8px
  );
  pointer-events: none;
}

/* % of nylon label per row */
.uts-pct {
  font-size: 9px;
  font-weight: 600;
  color: #9d9d9c;
  text-align: right;
  margin-top: 1px;
}
/* <!-- INFOGRAPHICS START 4 --> */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

.st-root {
  font-family:
    "Inter",
    -apple-system,
    sans-serif;
  background: #ffffff;
  max-width: 860px;
  margin: 0 auto;
  padding: 32px 24px;
}

.st-header {
  margin-bottom: 28px;
}

.st-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #bf3425;
  margin-bottom: 6px;
}

.st-title {
  font-size: 22px;
  font-weight: 800;
  color: #47577c;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.st-subtitle {
  font-size: 13px;
  color: #9d9d9c;
  margin: 0;
}

/* Two-panel grid */
.st-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 16px;
}

@media (max-width: 600px) {
  .st-panels {
    grid-template-columns: 1fr;
  }
}

.st-panel {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px 20px 16px;
  box-shadow: 0 2px 10px rgba(71, 87, 124, 0.07);
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.st-panel.st-visible {
  opacity: 1;
  transform: translateY(0);
}

.st-panel-title {
  font-size: 13px;
  font-weight: 700;
  color: #47577c;
  margin-bottom: 4px;
}

.st-panel-unit {
  font-size: 10px;
  font-weight: 600;
  color: #9d9d9c;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

/* Rows */
.st-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.st-row {
  display: grid;
  grid-template-columns: 120px 1fr 68px;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
  opacity: 0;
  transform: translateX(-14px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    background 0.18s ease;
  border-radius: 5px;
  cursor: default;
}

.st-row:last-child {
  border-bottom: none;
}
.st-row.st-visible {
  opacity: 1;
  transform: translateX(0);
}
.st-row:hover {
  background: #f8fafc;
}

.st-name {
  font-size: 11px;
  font-weight: 600;
  color: #47577c;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.st-name-tag {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #9d9d9c;
}
.st-name-tag.novel {
  color: #bf3425;
}

/* Bar */
.st-bar-area {
  position: relative;
  height: 22px;
  display: flex;
  align-items: center;
}

.st-bar-track {
  position: absolute;
  inset: 0;
  background: #f1f5f9;
  border-radius: 5px;
  overflow: hidden;
}

.st-bar-fill {
  height: 100%;
  border-radius: 5px;
  width: 0%;
  transition: width 1.1s cubic-bezier(0.34, 1.1, 0.64, 1);
}

/* Highest badge */
.st-highest {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 8px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.4s ease 1.3s;
  pointer-events: none;
}

.st-row.st-visible .st-highest {
  opacity: 1;
}

.st-val {
  font-size: 11px;
  font-weight: 700;
  color: #1e293b;
  text-align: right;
  white-space: nowrap;
  line-height: 1.3;
}

/* Insight banner */
.st-insight {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.5s ease 0.7s,
    transform 0.5s ease 0.7s;
}

.st-insight.st-visible {
  opacity: 1;
  transform: translateY(0);
}

.st-insight-icon {
  width: 36px;
  height: 36px;
  background: rgba(191, 52, 37, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.st-insight-text {
  font-size: 12px;
  color: #47577c;
  font-weight: 500;
  line-height: 1.5;
}

.st-insight-text strong {
  color: #bf3425;
  font-weight: 700;
}
/* <!-- INFOGRAPHICS START 5 --> */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

.njs-root {
  font-family:
    "Inter",
    -apple-system,
    sans-serif;
  background: #ffffff;
  max-width: 840px;
  margin: 0 auto;
  padding: 32px 24px;
}

.njs-header {
  margin-bottom: 28px;
}

.njs-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #bf3425;
  margin-bottom: 6px;
}

.njs-title {
  font-size: 22px;
  font-weight: 800;
  color: #47577c;
  margin: 0 0 6px 0;
  line-height: 1.2;
}

.njs-formula {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #47577c;
  margin-bottom: 8px;
}

.njs-formula span {
  color: #9d9d9c;
  font-weight: 400;
}

.njs-subtitle {
  font-size: 12px;
  color: #9d9d9c;
  margin: 0;
}

/* Card */
.njs-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 22px 22px 18px;
  box-shadow: 0 2px 10px rgba(71, 87, 124, 0.07);
  margin-bottom: 16px;
}

/* Section dividers */
.njs-section-label {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 0 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9d9d9c;
}

.njs-section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #f1f5f9;
}

.njs-section-label.ext {
  color: #9d9d9c;
}
.njs-section-label.study {
  color: #47577c;
}

/* Rows */
.njs-row {
  display: grid;
  grid-template-columns: 220px 1fr 52px;
  align-items: center;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid #f8fafc;
  opacity: 0;
  transform: translateX(-16px);
  transition:
    opacity 0.42s ease,
    transform 0.42s ease,
    background 0.18s ease;
  border-radius: 5px;
  cursor: default;
}

.njs-row:last-child {
  border-bottom: none;
}
.njs-row.njs-visible {
  opacity: 1;
  transform: translateX(0);
}
.njs-row:hover {
  background: #f8fafc;
}

/* Name column */
.njs-name {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.njs-name-text {
  font-size: 12px;
  font-weight: 600;
  color: #47577c;
  line-height: 1.3;
}

.njs-name-text.external {
  color: #1e293b;
}

.njs-name-ref {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9d9d9c;
}

.njs-name-ref.this {
  color: #bf3425;
}

/* Bar */
.njs-bar-area {
  position: relative;
  height: 24px;
  display: flex;
  align-items: center;
}

.njs-bar-track {
  position: absolute;
  inset: 0;
  background: #f1f5f9;
  border-radius: 5px;
  overflow: hidden;
}

.njs-bar-fill {
  height: 100%;
  border-radius: 5px;
  width: 0%;
  transition: width 1.1s cubic-bezier(0.34, 1.1, 0.64, 1);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
  box-sizing: border-box;
  position: relative;
}

.njs-badge {
  font-size: 8.5px;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.4s ease 1.3s;
  pointer-events: none;
}

.njs-row.njs-visible .njs-badge {
  opacity: 1;
}

/* Value */
.njs-val {
  font-size: 12px;
  font-weight: 700;
  color: #1e293b;
  text-align: right;
}

/* Footnote */
.njs-footnote {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 11px;
  color: #9d9d9c;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.5s ease 0.8s,
    transform 0.5s ease 0.8s;
}

.njs-footnote.njs-visible {
  opacity: 1;
  transform: translateY(0);
}

.njs-footnote strong {
  color: #47577c;
  font-weight: 700;
}

/* Legend */
.njs-legend {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.njs-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #47577c;
}

.njs-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  flex-shrink: 0;
}

@media (max-width: 560px) {
  .njs-row {
    grid-template-columns: 140px 1fr 44px;
    gap: 8px;
  }
  .njs-name-text {
    font-size: 11px;
  }
}
.nj-outer-wrap {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow:
    0 4px 24px rgba(71, 87, 124, 0.09),
    0 1px 4px rgba(0, 0, 0, 0.05);
  max-width: 940px;
  margin: 0 auto;
  overflow: hidden;
}
