/* ============================================
   ArtifexScripts - Sam Mandragona Portfolio
   Modern Screenwriter Portfolio Styles
   ============================================ */

/* Google Fonts */
/* Google Fonts import removed as we are using system Helvetica */

/* ============================================
   CSS Custom Properties (Design Tokens)
   ============================================ */
:root {
  /* Colors - Dark Theme (Default) */
  --color-bg-primary: #0a0a0f;
  --color-bg-secondary: #12121a;
  --color-bg-tertiary: #1a1a25;
  --color-bg-card: #16161f;
  --color-bg-card-hover: #1e1e2a;

  --color-text-primary: #f5f5f7;
  --color-text-secondary: #a0a0b0;
  --color-text-muted: #6a6a7a;

  --color-accent: #d4a853;
  --color-accent-light: #e8c676;
  --color-accent-dark: #b8923f;

  --color-secondary: #4980b7;

  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-hover: rgba(255, 255, 255, 0.15);

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #0a0a0f 0%, #1a1525 50%, #0f0f18 100%);
  --gradient-card: linear-gradient(145deg, rgba(30, 30, 42, 0.5), rgba(20, 20, 30, 0.8));
  --gradient-accent: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));

  /* Typography */
  --font-display: "helvetica-neue-lt-pro", sans-serif;
  --font-body: "helvetica-neue-lt-pro", sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(212, 168, 83, 0.2);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Layout */
  --container-max: 1600px;
  --container-narrow: 800px;
  --header-height: 80px;
}

/* Light Theme */
[data-theme="light"] {
  --color-bg-primary: #fafafa;
  --color-bg-secondary: #f0f0f2;
  --color-bg-tertiary: #e8e8ec;
  --color-bg-card: #ffffff;
  --color-bg-card-hover: #f5f5f7;

  --color-text-primary: #1a1a1f;
  --color-text-secondary: #4a4a55;
  --color-text-muted: #8a8a95;

  --color-accent: #b8923f;
  --color-accent-light: #d4a853;
  --color-accent-dark: #9a7a30;

  --color-border: rgba(0, 0, 0, 0.08);
  --color-border-hover: rgba(0, 0, 0, 0.15);

  --gradient-hero: linear-gradient(135deg, #fafafa 0%, #f0ebe5 50%, #fafafa 100%);
  --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(245, 245, 247, 0.8));

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 30px rgba(184, 146, 63, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================
   Typography
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text-primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

h4 {
  font-size: 1.125rem;
}

p {
  color: var(--color-text-secondary);
}

.text-accent {
  color: var(--color-secondary);
}

.text-muted {
  color: var(--color-text-muted);
}

/* ============================================
   Layout
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--space-4xl) 0;
}

.section--hero {
  padding-top: calc(var(--header-height) + var(--space-3xl));
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: background var(--transition-base);
}

[data-theme="light"] .header {
  background: rgba(250, 250, 250, 0.85);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: block;
  height: 48px;
  width: auto;
  transition: opacity var(--transition-fast);
}

.logo img {
  height: 100%;
  width: auto;
  display: block;
}

.logo-light {
  display: none !important;
  /* Force hide light logo by default */
}

.logo-dark {
  display: block !important;
}

[data-theme="light"] .logo-light {
  display: block !important;
}

[data-theme="light"] .logo-dark {
  display: none !important;
}

.logo:hover {
  opacity: 0.8;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__list {
  display: flex;
  gap: var(--space-lg);
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-secondary);
  position: relative;
  padding: var(--space-sm) 0;
  transition: color var(--transition-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: width var(--transition-base);
}

.nav__link:hover {
  color: var(--color-secondary);
}

.nav__link.active {
  color: var(--color-accent);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

/* Theme Toggle */
.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  transition: all var(--transition-fast);
  background: var(--color-bg-tertiary);
}

.theme-toggle:hover {
  color: var(--color-secondary);
  background: var(--color-bg-card-hover);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
}

.theme-toggle .icon-sun {
  display: none;
}

[data-theme="light"] .theme-toggle .icon-moon {
  display: none;
}

[data-theme="light"] .theme-toggle .icon-sun {
  display: block;
}

/* Mobile Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: var(--space-sm);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text-primary);
  transition: all var(--transition-fast);
}

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

  .nav__list {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--color-bg-secondary);
    padding: var(--space-xl);
    gap: var(--space-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    border-bottom: 1px solid var(--color-border);
  }

  .nav__list.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__link {
    font-size: 1.1rem;
    padding: var(--space-md) 0;
  }

  .nav-toggle.active span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(212, 168, 83, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(212, 168, 83, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero__logo-min {
  max-width: 200px;
  margin: 0 auto var(--space-md);
  display: block;
}

.hero__subtitle {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-lg);
}

.hero__title {
  margin-bottom: var(--space-lg);
  font-weight: 300;
}

.hero__description {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-secondary);
  font-family: var(--font-body);
}

.hero__cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-accent);
  color: #0a0a0f;
  box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(212, 168, 83, 0.3);
}

.btn--secondary {
  background: transparent;
  color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
}

.btn--secondary:hover {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text-primary);
  border: 1px solid transparent;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-border);
}

.btn--sm {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.8rem;
}

/* ============================================
   Cards
   ============================================ */
.card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
}

.card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(73, 128, 183, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--color-secondary);
}

.card__title {
  margin-bottom: var(--space-sm);
}

.card__description {
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-secondary);
  transition: gap var(--transition-fast);
}

.card__link:hover {
  gap: var(--space-md);
}

/* Category Cards Grid */
.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

/* ============================================
   About Section
   ============================================ */
.about {
  background: var(--color-bg-secondary);
}

.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

@media (max-width: 768px) {
  .about__content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.about__text h2 {
  margin-bottom: var(--space-lg);
}

.about__text p {
  margin-bottom: var(--space-md);
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.stat {
  text-align: center;
  padding: var(--space-xl);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.stat__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  display: block;
}

.stat__label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
}

/* ============================================
   Work Pages - Script List & PDF Viewer
   ============================================ */
.work-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: var(--space-xl);
  min-height: calc(100vh - var(--header-height) - 200px);
}

@media (max-width: 1024px) {
  .work-layout {
    grid-template-columns: 1fr;
  }

  /* Compact horizontal script list on tablet/mobile */
  .script-list {
    position: static;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: var(--space-sm);
    padding: var(--space-md);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .script-list::-webkit-scrollbar {
    display: none;
  }

  .script-list__title {
    display: none;
  }

  .script-item {
    flex: 0 0 auto;
    min-width: 160px;
    max-width: 200px;
    margin-bottom: 0;
    padding: var(--space-sm) var(--space-md);
  }

  .script-item__title {
    font-size: 0.85rem;
    white-space: nowrap;
  }

  .script-item__meta {
    font-size: 0.7rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .script-item__badge {
    font-size: 0.6rem;
    padding: 1px 6px;
  }

  /* Reorder PDF viewer: header -> frame -> description */
  .pdf-viewer {
    display: flex;
    flex-direction: column;
  }

  .pdf-viewer__header {
    order: 1;
  }

  .pdf-viewer__frame {
    order: 2;
  }

  .pdf-viewer__description {
    order: 3;
  }

  .pdf-viewer__empty {
    order: 2;
  }

  /* Make the PDF frame use more of the viewport */
  .pdf-viewer__frame {
    min-height: 70vh;
  }

  .pdf-viewer__frame iframe {
    min-height: 70vh;
  }

  /* Collapsible description on mobile */
  .pdf-viewer__description {
    max-height: 0;
    overflow: hidden;
    padding: 0 var(--space-xl);
    transition: max-height var(--transition-slow), padding var(--transition-slow);
  }

  .pdf-viewer__description.expanded {
    max-height: 500px;
    padding: var(--space-xl);
  }

  /* Toggle button for description */
  .description-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    background: var(--color-bg-tertiary);
    color: var(--color-text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    border-top: 1px solid var(--color-border);
    cursor: pointer;
    transition: color var(--transition-fast);
    order: 4;
  }

  .description-toggle:hover {
    color: var(--color-secondary);
  }

  .description-toggle svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
  }

  .description-toggle.expanded svg {
    transform: rotate(180deg);
  }
}

@media (max-width: 480px) {
  .script-item {
    min-width: 140px;
    max-width: 170px;
  }

  .pdf-viewer__frame {
    min-height: 60vh;
  }

  .pdf-viewer__frame iframe {
    min-height: 60vh;
  }

  .pdf-viewer__header {
    padding: var(--space-md);
  }

  .pdf-viewer__title {
    font-size: 0.9rem;
  }
}

/* Script List Sidebar */
.script-list {
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  height: fit-content;
  position: sticky;
  top: calc(var(--header-height) + var(--space-lg));
}

.script-list__title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}

.script-item {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-bottom: var(--space-sm);
  border: 1px solid transparent;
}

.script-item:hover {
  background: var(--color-bg-card);
}

.script-item.active {
  background: var(--color-bg-card);
  border-color: var(--color-secondary);
}

.script-item__title {
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: var(--space-xs);
}

.script-item__meta {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.script-item__badge {
  display: inline-block;
  padding: 2px 8px;
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(73, 128, 183, 0.15);
  color: var(--color-secondary);
  border-radius: var(--radius-full);
  margin-top: var(--space-sm);
}

/* PDF Viewer */
.pdf-viewer {
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pdf-viewer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  background: var(--color-bg-tertiary);
  border-bottom: 1px solid var(--color-border);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.pdf-viewer__title {
  font-size: 1rem;
  font-weight: 500;
}

.pdf-viewer__actions {
  display: flex;
  gap: var(--space-sm);
}

.pdf-viewer__frame {
  flex: 1;
  min-height: 600px;
  background: var(--color-bg-card);
}

.pdf-viewer__frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 600px;
}

.pdf-viewer__description {
  padding: var(--space-xl);
  border-bottom: 1px solid var(--color-border);
}

/* Description toggle button — hidden on desktop, shown on mobile via media query */
.description-toggle {
  display: none;
}

.pdf-viewer__description h3 {
  margin-bottom: var(--space-md);
}

.pdf-viewer__subtitle {
  color: var(--color-text-muted);
  margin-top: calc(var(--space-md) * -0.5);
  margin-bottom: var(--space-md);
}

.pdf-viewer__description p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Empty State */
.pdf-viewer__empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-3xl);
  color: var(--color-text-muted);
  text-align: center;
}

.pdf-viewer__empty svg {
  width: 64px;
  height: 64px;
  margin-bottom: var(--space-lg);
  opacity: 0.5;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
  background: var(--color-bg-secondary);
}

.contact__content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact__title {
  margin-bottom: var(--space-lg);
}

.contact__description {
  margin-bottom: var(--space-2xl);
}

.contact__methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.contact__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition-fast);
}

.contact__item:hover {
  border-color: var(--color-secondary);
}

.contact__item svg {
  color: var(--color-secondary);
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.contact__item span {
  font-size: 1.1rem;
  font-weight: 500;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--color-bg-primary);
  border-top: 1px solid var(--color-border);
  padding: var(--space-2xl) 0;
}

.footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.footer__copy {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.footer__links {
  display: flex;
  gap: var(--space-lg);
}

.footer__link {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-secondary);
}

/* ============================================
   Page Header (for work pages)
   ============================================ */
.page-header {
  padding-top: calc(var(--header-height) + var(--space-3xl));
  padding-bottom: var(--space-2xl);
  background: var(--gradient-hero);
  text-align: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212, 168, 83, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.page-header__content {
  position: relative;
  z-index: 1;
}

.page-header__subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.page-header__title {
  margin-bottom: var(--space-md);
}

.page-header__description {
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.fade-in-delay-1 {
  animation-delay: 0.1s;
}

.fade-in-delay-2 {
  animation-delay: 0.2s;
}

.fade-in-delay-3 {
  animation-delay: 0.3s;
}

.fade-in-delay-4 {
  animation-delay: 0.4s;
}

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

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

.mt-1 {
  margin-top: var(--space-md);
}

.mt-2 {
  margin-top: var(--space-xl);
}

.mb-1 {
  margin-top: var(--space-md);
}

.mb-2 {
  margin-top: var(--space-xl);
}