/* Make Studio Theme Styles */


/* CSS Custom Properties */

    :root {
      --base: #ffffff;
      --base-muted: #f5f0e8;
      --base-alt: #1a2744;
      --panel: #f5f5f4;
      --fg: #1a2744;
      --fg-muted: #78716c;
      --fg-alt: #a8a29e;
      --brand: #bfa678;
      --on-brand: #ffffff;
      --border: #e7e5e4;
      --teal-light: #ccfbf1;
    }

/* Typography */

    /* Headlines */
    
    .heading-xl {
      font-family: Outfit;
      font-size: 56px;
      font-style: normal;
      font-weight: 700;
      line-height: 64px;
      letter-spacing: -1px;
    }

    .heading-lg {
      font-family: Outfit;
      font-size: 40px;
      font-style: normal;
      font-weight: 700;
      line-height: 48px;
      letter-spacing: -0.5px;
    }

    .heading-md {
      font-family: Outfit;
      font-size: 24px;
      font-style: normal;
      font-weight: 600;
      line-height: 32px;
      letter-spacing: 0px;
    }

    .heading-sm {
      font-family: Outfit;
      font-size: 18px;
      font-style: normal;
      font-weight: 600;
      line-height: 28px;
      letter-spacing: 0px;
    }

    .heading-xs {
      font-family: Outfit;
      font-size: 14px;
      font-style: normal;
      font-weight: 600;
      line-height: 20px;
      letter-spacing: 0px;
    }

    /* Copy */
    
    .body-lg {
      font-family: Outfit;
      font-size: 18px;
      font-style: normal;
      font-weight: 400;
      line-height: 28px;
      letter-spacing: 0px;
    }

    .body-md {
      font-family: Outfit;
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 26px;
      letter-spacing: 0px;
    }

    .body-sm {
      font-family: Outfit;
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: 22px;
      letter-spacing: 0px;
    }

    @media (max-width: 768px) {
      .heading-xl { font-size: 36px; line-height: 42px; }
      .heading-lg { font-size: 30px; line-height: 36px; }
      .heading-md { font-size: 20px; line-height: 28px; }
      .heading-sm { font-size: 18px; line-height: 28px; }
      .heading-xs { font-size: 14px; line-height: 20px; }
    }

/* Prose Styles */
.prose h1 {
  font-family: Outfit;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

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

.prose h3 {
  font-family: Outfit;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0px;
  margin-bottom: 1rem;
}

.prose p {
  font-family: Outfit;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  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: undefinedrem;
  margin-bottom: 0;
}

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

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



/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Newsreader;
  font-weight: 500;
  border-style: solid;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  box-sizing: border-box;
  text-decoration: none;
}

.btn-lg {
  font-size: 18px;
  letter-spacing: 0px;
  border-radius: 5px;
  padding: 16px 28px 14px 28px;
}

.btn-md {
  font-size: 16px;
  letter-spacing: 0px;
  border-radius: 4px;
  padding: 13px 20px 11px 20px;
}

.btn-sm {
  font-size: 14px;
  letter-spacing: 0px;
  border-radius: 3px;
  padding: 8px 16px 6px 16px;
}

.btn-primary {
  background-color: #1a2744;
  color: #ffffff;
  border-color: transparent;
  border-width: 0px;
}

.btn-primary:hover {
  background-color: #010e2b;
}

.btn-secondary {
  background-color: #f5f0e8;
  color: #1a2744;
  border-color: transparent;
  border-width: 0px;
}

.btn-secondary:hover {
  background-color: #dcd7cf;
}

.btn-outline {
  background-color: transparent;
  color: #1a2744;
  border-color: #bfa678;
  border-width: 1px;
}

.btn-outline:hover {
  background-color: #bfa678;
  color: #ffffff;
  border-color: #bfa678;
}

.btn-ghost {
  background-color: transparent;
  color: #1a2744;
  border-color: transparent;
  border-width: 0px;
}

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


