/* ===============================================
   Microsoft Fluent Design System for Blog
   Get-CID Knowledge Base
   =============================================== */

/* ===== DESIGN TOKENS ===== */
:root {
  /* Colors - Microsoft Fluent Palette */
  --fluent-color-brand-50: #f3f2f1;
  --fluent-color-brand-60: #edebe9;
  --fluent-color-brand-70: #e1dfdd;
  --fluent-color-brand-80: #d2d0ce;
  --fluent-color-brand-90: #c8c6c4;
  --fluent-color-brand-100: #0078d4;
  --fluent-color-brand-110: #106ebe;
  --fluent-color-brand-120: #005a9e;
  --fluent-color-brand-130: #004578;

  /* Neutral Colors */
  --fluent-color-neutral-0: #ffffff;
  --fluent-color-neutral-10: #faf9f8;
  --fluent-color-neutral-20: #f3f2f1;
  --fluent-color-neutral-30: #edebe9;
  --fluent-color-neutral-40: #e1dfdd;
  --fluent-color-neutral-50: #d2d0ce;
  --fluent-color-neutral-60: #c8c6c4;
  --fluent-color-neutral-70: #beb9b5;
  --fluent-color-neutral-80: #b3b0ad;
  --fluent-color-neutral-90: #a19f9d;
  --fluent-color-neutral-100: #979593;
  --fluent-color-neutral-110: #8a8886;
  --fluent-color-neutral-120: #797775;
  --fluent-color-neutral-130: #605e5c;
  --fluent-color-neutral-140: #484644;
  --fluent-color-neutral-150: #323130;
  --fluent-color-neutral-160: #1b1a19;

  /* Status Colors */
  --fluent-color-success-100: #107c10;
  --fluent-color-success-110: #0b6a0b;
  --fluent-color-warning-100: #ff8c00;
  --fluent-color-warning-110: #e87700;
  --fluent-color-error-100: #d13438;
  --fluent-color-error-110: #c42b2b;

  /* Spacing */
  --fluent-spacing-xs: 2px;
  --fluent-spacing-s: 4px;
  --fluent-spacing-m: 8px;
  --fluent-spacing-l: 12px;
  --fluent-spacing-xl: 16px;
  --fluent-spacing-xxl: 20px;
  --fluent-spacing-xxxl: 24px;
  --fluent-spacing-xxxxl: 32px;

  /* Border Radius */
  --fluent-radius-s: 2px;
  --fluent-radius-m: 4px;
  --fluent-radius-l: 6px;
  --fluent-radius-xl: 8px;
  --fluent-radius-xxl: 12px;
  --fluent-radius-circular: 50%;

  /* Shadows */
  --fluent-shadow-depth-4: 0 1.6px 3.6px rgba(0,0,0,0.132);
  --fluent-shadow-depth-8: 0 3.2px 7.2px rgba(0,0,0,0.132);
  --fluent-shadow-depth-16: 0 6.4px 14.4px rgba(0,0,0,0.132);
  --fluent-shadow-depth-64: 0 25.6px 57.6px rgba(0,0,0,0.132);

  /* Typography */
  --fluent-font-family-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  --fluent-font-family-monospace: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', 'Consolas', monospace;

  --fluent-font-size-xs: 0.75rem;   /* 12px */
  --fluent-font-size-s: 0.875rem;   /* 14px */
  --fluent-font-size-m: 1rem;       /* 16px */
  --fluent-font-size-l: 1.125rem;   /* 18px */
  --fluent-font-size-xl: 1.25rem;   /* 20px */
  --fluent-font-size-xxl: 1.5rem;   /* 24px */
  --fluent-font-size-xxxl: 1.875rem; /* 30px */
  --fluent-font-size-xxxxl: 2.25rem; /* 36px */

  --fluent-font-weight-light: 300;
  --fluent-font-weight-normal: 400;
  --fluent-font-weight-medium: 500;
  --fluent-font-weight-semibold: 600;
  --fluent-font-weight-bold: 700;

  --fluent-line-height-tight: 1.25;
  --fluent-line-height-normal: 1.5;
  --fluent-line-height-relaxed: 1.625;
  --fluent-line-height-loose: 2;

  /* Layout */
  --fluent-max-width-xs: 320px;
  --fluent-max-width-s: 480px;
  --fluent-max-width-m: 640px;
  --fluent-max-width-l: 800px;
  --fluent-max-width-xl: 1024px;
  --fluent-max-width-xxl: 1200px;
}

/* ===== DARK THEME TOKENS ===== */
html[data-theme="dark"] {
  --fluent-color-brand-50: #1a1a1a;
  --fluent-color-brand-60: #212121;
  --fluent-color-brand-70: #2a2a2a;
  --fluent-color-brand-80: #333333;
  --fluent-color-brand-90: #3d3d3d;

  --fluent-color-neutral-0: #1b1a19;
  --fluent-color-neutral-10: #212121;
  --fluent-color-neutral-20: #2a2a2a;
  --fluent-color-neutral-30: #333333;
  --fluent-color-neutral-40: #3d3d3d;
  --fluent-color-neutral-50: #484644;
  --fluent-color-neutral-60: #605e5c;
  --fluent-color-neutral-70: #797775;
  --fluent-color-neutral-80: #8a8886;
  --fluent-color-neutral-90: #979593;
  --fluent-color-neutral-100: #a19f9d;
  --fluent-color-neutral-110: #b3b0ad;
  --fluent-color-neutral-120: #beb9b5;
  --fluent-color-neutral-130: #c8c6c4;
  --fluent-color-neutral-140: #d2d0ce;
  --fluent-color-neutral-150: #e1dfdd;
  --fluent-color-neutral-160: #edebe9;
}

/* ===== BASE STYLES ===== */
.blog-container {
  min-height: 100vh;
  background: var(--fluent-color-neutral-10);
  color: var(--fluent-color-neutral-140);
  font-family: var(--fluent-font-family-primary);
  line-height: var(--fluent-line-height-normal);
}

/* ===== CONTAINER UTILITY ===== */
.container {
  width: 100%;
  max-width: var(--fluent-max-width-l);
  margin: 0 auto;
  padding: 0 var(--fluent-spacing-l);
}

@media (min-width: 640px) {
  .container {
    padding: 0 var(--fluent-spacing-xl);
  }
}

/* ===== BLOG HEADER ===== */
.blog-header {
  background: linear-gradient(135deg, var(--fluent-color-brand-100), var(--fluent-color-brand-110));
  color: var(--fluent-color-neutral-0);
  padding: var(--fluent-spacing-xxxxl) 0;
  text-align: center;
  border-radius: 0 0 var(--fluent-radius-xl) var(--fluent-radius-xl);
  box-shadow: var(--fluent-shadow-depth-16);
  margin-bottom: var(--fluent-spacing-xxxxl);
}

.blog-title {
  font-size: var(--fluent-font-size-xxxxl);
  font-weight: var(--fluent-font-weight-bold);
  margin-bottom: var(--fluent-spacing-l);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--fluent-spacing-m);
}

.blog-title i {
  font-size: var(--fluent-font-size-xxxl);
}

.blog-subtitle {
  font-size: var(--fluent-font-size-xl);
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--fluent-line-height-relaxed);
}

/* ===== BLOG NAVIGATION ===== */
.blog-nav {
  background: var(--fluent-color-neutral-0);
  border-bottom: 1px solid var(--fluent-color-neutral-30);
  box-shadow: var(--fluent-shadow-depth-4);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--fluent-spacing-l) 0;
  max-width: var(--fluent-max-width-xxl);
  margin: 0 auto;
  padding-left: var(--fluent-spacing-l);
  padding-right: var(--fluent-spacing-l);
}

@media (min-width: 768px) {
  .nav-container {
    padding-left: var(--fluent-spacing-xl);
    padding-right: var(--fluent-spacing-xl);
  }
}

.nav-links {
  display: flex;
  gap: var(--fluent-spacing-l);
  align-items: center;
}

.nav-link {
  color: var(--fluent-color-neutral-120);
  text-decoration: none;
  padding: var(--fluent-spacing-s) var(--fluent-spacing-m);
  border-radius: var(--fluent-radius-m);
  font-weight: var(--fluent-font-weight-medium);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: var(--fluent-spacing-xs);
}

.nav-link:hover {
  background: var(--fluent-color-neutral-20);
  color: var(--fluent-color-neutral-140);
}

.nav-link.active {
  background: var(--fluent-color-brand-100);
  color: var(--fluent-color-neutral-0);
}

.nav-link i {
  font-size: var(--fluent-font-size-s);
}

/* ===== SEARCH ===== */
.blog-search {
  display: flex;
  align-items: center;
}

.search-input {
  border: 1px solid var(--fluent-color-neutral-40);
  border-radius: var(--fluent-radius-l) 0 0 var(--fluent-radius-l);
  padding: var(--fluent-spacing-s) var(--fluent-spacing-m);
  font-size: var(--fluent-font-size-m);
  background: var(--fluent-color-neutral-0);
  color: var(--fluent-color-neutral-140);
  width: 200px;
  transition: border-color 0.2s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--fluent-color-brand-100);
  box-shadow: 0 0 0 2px rgba(0, 120, 212, 0.2);
}

.search-button {
  background: var(--fluent-color-brand-100);
  border: 1px solid var(--fluent-color-brand-100);
  border-radius: 0 var(--fluent-radius-l) var(--fluent-radius-l) 0;
  color: var(--fluent-color-neutral-0);
  padding: var(--fluent-spacing-s) var(--fluent-spacing-m);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.search-button:hover {
  background: var(--fluent-color-brand-110);
}

/* ===== BLOG MAIN CONTENT ===== */
.blog-main {
  padding: var(--fluent-spacing-xxxxl) 0;
}

/* ===== BLOG FOOTER ===== */
.blog-footer {
  background: var(--fluent-color-neutral-20);
  border-top: 1px solid var(--fluent-color-neutral-30);
  padding: var(--fluent-spacing-xxxxl) 0;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--fluent-spacing-xl);
  margin-top: var(--fluent-spacing-l);
}

.footer-links a {
  color: var(--fluent-color-neutral-120);
  text-decoration: none;
  font-weight: var(--fluent-font-weight-medium);
}

.footer-links a:hover {
  color: var(--fluent-color-brand-100);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 767px) {
  .nav-container {
    flex-direction: column;
    gap: var(--fluent-spacing-l);
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .blog-search {
    width: 100%;
  }

  .search-input {
    width: 100%;
    border-radius: var(--fluent-radius-l);
  }

  .search-button {
    display: none;
  }

  .blog-header {
    padding: var(--fluent-spacing-xxxl) var(--fluent-spacing-l);
  }

  .blog-title {
    font-size: var(--fluent-font-size-xxxl);
  }

  .blog-subtitle {
    font-size: var(--fluent-font-size-l);
  }

  .footer-links {
    flex-direction: column;
    gap: var(--fluent-spacing-l);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .nav-links {
    flex-wrap: wrap;
  }

  .search-input {
    width: 150px;
  }
}

@media (min-width: 1024px) {
  .search-input {
    width: 250px;
  }
}

/* ===== ACCESSIBILITY ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  padding: var(--fluent-spacing-s) var(--fluent-spacing-m);
  margin: var(--fluent-spacing-m);
  overflow: visible;
  clip: auto;
  white-space: normal;
  border: 2px solid var(--fluent-color-brand-100);
  border-radius: var(--fluent-radius-m);
  background: var(--fluent-color-neutral-0);
  color: var(--fluent-color-neutral-140);
  z-index: 9999;
}

/* Focus indicators */
a:focus, button:focus {
  outline: 2px solid var(--fluent-color-brand-100);
  outline-offset: 2px;
  border-radius: var(--fluent-radius-m);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .nav-link:hover {
    border: 2px solid var(--fluent-color-brand-100);
  }

  .search-input:focus {
    border: 2px solid var(--fluent-color-brand-100);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== ARTICLE HERO ===== */
.article-hero {
  background: linear-gradient(135deg, var(--fluent-color-brand-100), var(--fluent-color-brand-110));
  color: var(--fluent-color-neutral-0);
  padding: var(--fluent-spacing-xxxxl) var(--fluent-spacing-l);
  text-align: center;
  border-radius: 0 0 var(--fluent-radius-xl) var(--fluent-radius-xl);
  box-shadow: var(--fluent-shadow-depth-16);
  margin-bottom: var(--fluent-spacing-xxxxl);
}

.article-hero .container {
  padding: 0;
}

.article-title {
  font-size: var(--fluent-font-size-xxxxl);
  font-weight: var(--fluent-font-weight-bold);
  margin-bottom: var(--fluent-spacing-l);
  line-height: var(--fluent-line-height-tight);
}

.article-subtitle {
  font-size: var(--fluent-font-size-xl);
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto var(--fluent-spacing-xl);
  line-height: var(--fluent-line-height-relaxed);
}

.article-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--fluent-spacing-xl);
  font-size: var(--fluent-font-size-s);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: var(--fluent-spacing-xs);
  color: rgba(255, 255, 255, 0.9);
}

.meta-item i {
  font-size: var(--fluent-font-size-m);
}

.meta-item.tags {
  flex-wrap: wrap;
  gap: var(--fluent-spacing-s);
}

.tag {
  background: rgba(255, 255, 255, 0.2);
  color: var(--fluent-color-neutral-0);
  padding: var(--fluent-spacing-xs) var(--fluent-spacing-s);
  border-radius: var(--fluent-radius-m);
  font-size: var(--fluent-font-size-xs);
  font-weight: var(--fluent-font-weight-medium);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ===== TABLE OF CONTENTS ===== */
.table-of-contents {
  background: linear-gradient(135deg, var(--fluent-color-brand-50), var(--fluent-color-brand-60));
  border: 1px solid var(--fluent-color-brand-70);
  border-radius: var(--fluent-radius-xl);
  padding: var(--fluent-spacing-xxl);
  margin: var(--fluent-spacing-xxl) 0;
  position: sticky;
  top: var(--fluent-spacing-xl);
  box-shadow: var(--fluent-shadow-depth-8);
}

.table-of-contents h2 {
  font-size: var(--fluent-font-size-xl);
  font-weight: var(--fluent-font-weight-bold);
  color: var(--fluent-color-brand-120);
  margin: 0 0 var(--fluent-spacing-l) 0;
}

.table-of-contents ol {
  margin: 0;
  padding-left: var(--fluent-spacing-l);
}

.table-of-contents li {
  margin-bottom: var(--fluent-spacing-s);
}

.table-of-contents a {
  color: var(--fluent-color-brand-120);
  text-decoration: none;
  padding: var(--fluent-spacing-s) 0;
  display: block;
  border-radius: var(--fluent-radius-m);
  transition: all 0.2s ease;
  font-weight: var(--fluent-font-weight-medium);
}

.table-of-contents a:hover,
.table-of-contents a:focus {
  background-color: rgba(0, 120, 212, 0.1);
  color: var(--fluent-color-brand-110);
  transform: translateX(4px);
}

/* ===== CONTENT CARDS ===== */
.content-card {
  background: var(--fluent-color-neutral-0);
  border-radius: var(--fluent-radius-xl);
  padding: var(--fluent-spacing-xxl);
  box-shadow: var(--fluent-shadow-depth-4);
  border: 1px solid var(--fluent-color-neutral-30);
  margin-bottom: var(--fluent-spacing-xxl);
  transition: all 0.3s ease;
}

.content-card:hover {
  box-shadow: var(--fluent-shadow-depth-16);
  transform: translateY(-2px);
}

.content-card h2,
.content-card h3,
.content-card h4 {
  color: var(--fluent-color-neutral-140);
  margin-top: 0;
  margin-bottom: var(--fluent-spacing-l);
}

.content-card h2 {
  font-size: var(--fluent-font-size-xxl);
  font-weight: var(--fluent-font-weight-semibold);
}

.content-card h3 {
  font-size: var(--fluent-font-size-xl);
  font-weight: var(--fluent-font-weight-semibold);
}

.content-card h4 {
  font-size: var(--fluent-font-size-l);
  font-weight: var(--fluent-font-weight-semibold);
}

.content-card p {
  margin-bottom: var(--fluent-spacing-l);
  line-height: var(--fluent-line-height-relaxed);
  color: var(--fluent-color-neutral-120);
}

.content-card ul,
.content-card ol {
  margin-bottom: var(--fluent-spacing-l);
  padding-left: var(--fluent-spacing-xl);
}

.content-card li {
  margin-bottom: var(--fluent-spacing-s);
  line-height: var(--fluent-line-height-relaxed);
  color: var(--fluent-color-neutral-120);
}

.content-card blockquote {
  border-left: 4px solid var(--fluent-color-brand-100);
  padding-left: var(--fluent-spacing-l);
  margin: var(--fluent-spacing-l) 0;
  font-style: italic;
  background: var(--fluent-color-neutral-10);
  padding: var(--fluent-spacing-l);
  border-radius: var(--fluent-radius-m);
}

/* ===== STEP INSTRUCTIONS ===== */
.step-instruction {
  display: flex;
  align-items: flex-start;
  gap: var(--fluent-spacing-l);
  margin-bottom: var(--fluent-spacing-xxl);
  padding-bottom: var(--fluent-spacing-xxl);
  border-bottom: 1px solid var(--fluent-color-neutral-20);
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--fluent-radius-circular);
  background: linear-gradient(135deg, var(--fluent-color-brand-100), var(--fluent-color-brand-110));
  color: var(--fluent-color-neutral-0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fluent-font-weight-bold);
  font-size: var(--fluent-font-size-xl);
  box-shadow: var(--fluent-shadow-depth-4);
}

.step-content {
  flex: 1;
}

.step-content h3,
.step-content h4 {
  margin: 0 0 var(--fluent-spacing-s) 0;
  color: var(--fluent-color-neutral-140);
  font-weight: var(--fluent-font-weight-semibold);
}

.step-content h3 {
  font-size: var(--fluent-font-size-xl);
}

.step-content h4 {
  font-size: var(--fluent-font-size-l);
}

.step-content p {
  margin: 0 0 var(--fluent-spacing-m) 0;
  color: var(--fluent-color-neutral-120);
  line-height: var(--fluent-line-height-relaxed);
}

.step-content ul,
.step-content ol {
  margin: 0 0 var(--fluent-spacing-m) 0;
  padding-left: var(--fluent-spacing-l);
}

.step-content li {
  margin-bottom: var(--fluent-spacing-xs);
  color: var(--fluent-color-neutral-120);
  line-height: var(--fluent-line-height-relaxed);
}

/* ===== WARNING/INFO BOXES ===== */
.warning-box,
.info-box,
.success-box,
.error-box {
  padding: var(--fluent-spacing-l);
  border-radius: var(--fluent-radius-l);
  margin: var(--fluent-spacing-l) 0;
  border-left: 4px solid;
}

.warning-box {
  background: rgba(255, 140, 0, 0.1);
  border-left-color: var(--fluent-color-warning-100);
  color: var(--fluent-color-neutral-130);
}

.info-box {
  background: rgba(0, 120, 212, 0.1);
  border-left-color: var(--fluent-color-brand-100);
  color: var(--fluent-color-neutral-130);
}

.success-box {
  background: rgba(16, 124, 16, 0.1);
  border-left-color: var(--fluent-color-success-100);
  color: var(--fluent-color-neutral-130);
}

.error-box {
  background: rgba(214, 52, 56, 0.1);
  border-left-color: var(--fluent-color-error-100);
  color: var(--fluent-color-neutral-130);
}

.box-title {
  font-weight: var(--fluent-font-weight-semibold);
  margin-bottom: var(--fluent-spacing-s);
  display: flex;
  align-items: center;
  gap: var(--fluent-spacing-s);
}

.box-title::before {
  content: "⚠️";
  font-size: var(--fluent-font-size-l);
}

.info-box .box-title::before {
  content: "ℹ️";
}

.success-box .box-title::before {
  content: "✅";
}

.error-box .box-title::before {
  content: "❌";
}

/* ===== CODE BLOCKS ===== */
pre {
  background: var(--fluent-color-neutral-10);
  border: 1px solid var(--fluent-color-neutral-30);
  border-radius: var(--fluent-radius-l);
  padding: var(--fluent-spacing-l);
  overflow-x: auto;
  margin: var(--fluent-spacing-l) 0;
  font-family: var(--fluent-font-family-monospace);
  font-size: var(--fluent-font-size-s);
  line-height: var(--fluent-line-height-normal);
}

code {
  background: var(--fluent-color-neutral-10);
  border: 1px solid var(--fluent-color-neutral-30);
  border-radius: var(--fluent-radius-s);
  padding: 2px 4px;
  font-family: var(--fluent-font-family-monospace);
  font-size: 0.9em;
  color: var(--fluent-color-neutral-130);
}

pre code {
  background: transparent;
  border: none;
  padding: 0;
}

/* ===== IMAGES ===== */
.article-image,
.content-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--fluent-radius-l);
  box-shadow: var(--fluent-shadow-depth-4);
  margin: var(--fluent-spacing-l) 0;
}

.article-image:hover,
.content-image:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

.image-caption {
  font-size: var(--fluent-font-size-s);
  color: var(--fluent-color-neutral-100);
  text-align: center;
  margin-top: var(--fluent-spacing-s);
  font-style: italic;
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.font-light { font-weight: var(--fluent-font-weight-light); }
.font-normal { font-weight: var(--fluent-font-weight-normal); }
.font-medium { font-weight: var(--fluent-font-weight-medium); }
.font-semibold { font-weight: var(--fluent-font-weight-semibold); }
.font-bold { font-weight: var(--fluent-font-weight-bold); }

.text-xs { font-size: var(--fluent-font-size-xs); }
.text-s { font-size: var(--fluent-font-size-s); }
.text-m { font-size: var(--fluent-font-size-m); }
.text-l { font-size: var(--fluent-font-size-l); }
.text-xl { font-size: var(--fluent-font-size-xl); }
.text-xxl { font-size: var(--fluent-font-size-xxl); }
.text-xxxl { font-size: var(--fluent-font-size-xxxl); }

.mb-xs { margin-bottom: var(--fluent-spacing-xs); }
.mb-s { margin-bottom: var(--fluent-spacing-s); }
.mb-m { margin-bottom: var(--fluent-spacing-m); }
.mb-l { margin-bottom: var(--fluent-spacing-l); }
.mb-xl { margin-bottom: var(--fluent-spacing-xl); }
.mb-xxl { margin-bottom: var(--fluent-spacing-xxl); }

.mt-xs { margin-top: var(--fluent-spacing-xs); }
.mt-s { margin-top: var(--fluent-spacing-s); }
.mt-m { margin-top: var(--fluent-spacing-m); }
.mt-l { margin-top: var(--fluent-spacing-l); }
.mt-xl { margin-top: var(--fluent-spacing-xl); }
.mt-xxl { margin-top: var(--fluent-spacing-xxl); }