/* Make Studio Theme Styles */


/* CSS Custom Properties */

    :root {
      --brand: #6366F1;
      --on-brand: #FFFFFF;
      --base: #FFFFFF;
      --base-muted: #F8FAFC;
      --base-alt: #F1F5F9;
      --panel: #F1F5F9;
      --border: #E2E8F0;
      --fg: #0F172A;
      --fg-muted: #64748B;
      --fg-alt: #94A3B8;
      --accent-1: #06B6D4;
      --accent-2: #10B981;
      --gray-100: #F1F5F9;
      --gray-300: #CBD5E1;
      --gray-500: #64748B;
      --gray-700: #334155;
      --gray-900: #0F172A;
    }

/* Typography */

    /* Headlines */
    
    .heading-xl {
      font-family: Times New Roman;
      font-size: 72px;
      font-style: normal;
      font-weight: 700;
      line-height: 40px;
      letter-spacing: 0px;
    }

    .heading-lg {
      font-family: Times New Roman;
      font-size: 48px;
      font-style: normal;
      font-weight: 700;
      line-height: 40px;
      letter-spacing: 0px;
    }

    .heading-md {
      font-family: Times New Roman;
      font-size: 32px;
      font-style: normal;
      font-weight: 700;
      line-height: 40px;
      letter-spacing: 0px;
    }

    .heading-sm {
      font-family: Times New Roman;
      font-size: 24px;
      font-style: normal;
      font-weight: 700;
      line-height: 40px;
      letter-spacing: 0px;
    }

    .heading-xs {
      font-family: Times New Roman;
      font-size: 18px;
      font-style: normal;
      font-weight: 700;
      line-height: 40px;
      letter-spacing: 0px;
    }

    /* Copy */
    
    .body-lg {
      font-family: Times New Roman;
      font-size: 32px;
      font-style: normal;
      font-weight: 700;
      line-height: 40px;
      letter-spacing: 0px;
    }

    .body-md {
      font-family: Times New Roman;
      font-size: 32px;
      font-style: normal;
      font-weight: 700;
      line-height: 40px;
      letter-spacing: 0px;
    }

    .body-sm {
      font-family: Times New Roman;
      font-size: 32px;
      font-style: normal;
      font-weight: 700;
      line-height: 40px;
      letter-spacing: 0px;
    }

/* Prose Styles */
.prose h1 {
  font-family: Times New Roman;
  font-size: 72px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0px;
  margin-bottom: 1.5rem;
}

.prose h2 {
  font-family: Times New Roman;
  font-size: 48px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0px;
  margin-bottom: 1.25rem;
}

.prose h3 {
  font-family: Times New Roman;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0px;
  margin-bottom: 1rem;
}

.prose h4 {
  font-family: Times New Roman;
  font-size: 24px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0px;
  margin-bottom: 0.75rem;
}

.prose h5 {
  font-family: Times New Roman;
  font-size: 18px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0px;
  margin-bottom: 0.5rem;
}

.prose h6 {
  font-family: Times New Roman;
  font-size: 18px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0px;
  margin-bottom: 0.5rem;
}

.prose p {
  font-family: Times New Roman;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0px;
  margin-bottom: 1.25rem;
}

.prose ul {
  font-family: Times New Roman;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0px;
  margin-bottom: 1.25rem;
}

.prose ol {
  font-family: Times New Roman;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0px;
  margin-bottom: 1.25rem;
}

.prose ul, .prose ol {
  padding-left: 1.5rem;
}

.prose ul { list-style-type: disc; }
.prose ol { list-style-type: decimal; }

.prose li {
  margin-bottom: 0.5rem;
}

.prose ul ul, .prose ul ol, .prose ol ul, .prose ol ol {
  margin-left: 1.5rem;
  margin-bottom: 0;
}

.prose a {
  color: accent;
  text-decoration: underline;
  transition: color 0.15s ease;
}

.prose a:hover {
  color: primary;
  text-decoration: underline;
}

.prose blockquote {
  border-left: 3px solid currentColor;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  opacity: 0.85;
}

.prose pre {
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem;
  border-radius: 4px;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.9em;
  overflow-x: auto;
  white-space: pre-wrap !important;
  word-wrap: break-word !important;
}

.prose pre code {
  white-space: pre-wrap !important;
  word-wrap: break-word !important;
}

.prose code:not(pre code) {
  background: rgba(0, 0, 0, 0.2);
  padding: 0.15em 0.4em;
  border-radius: 3px;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.9em;
}




