/* Geppetto Theme Styles */


/* CSS Custom Properties */

    :root {
      --brand: #ff9940;
      --on-brand: #ffffff;
      --base: #ffffff;
      --base-muted: #f6f6f6;
      --base-alt: #2b2c2a;
      --panel: #f6f6f6;
      --border: #e0dedd;
      --fg: #343a40;
      --fg-muted: #a5a69d;
      --fg-alt: #ffffff;
      --accent-1: #343a40;
      --accent-2: #ff9940;
    }

/* Typography */

    /* Headlines */
    
    .heading-xl {
      font-family: 'Arial', sans-serif;
      font-size: 57px;
      font-style: normal;
      font-weight: 500;
      line-height: 62px;
      letter-spacing: 0px;
    }

    .heading-lg {
      font-family: 'Arial', sans-serif;
      font-size: 44px;
      font-style: normal;
      font-weight: 500;
      line-height: 50px;
      letter-spacing: 0px;
    }

    .heading-md {
      font-family: 'Arial', sans-serif;
      font-size: 23px;
      font-style: normal;
      font-weight: 400;
      line-height: 28px;
      letter-spacing: 0px;
    }

    .heading-sm {
      font-family: 'Arial', sans-serif;
      font-size: 22px;
      font-style: normal;
      font-weight: 500;
      line-height: 28px;
      letter-spacing: 0px;
    }

    .heading-xs {
      font-family: 'Arial', sans-serif;
      font-size: 18px;
      font-style: normal;
      font-weight: 500;
      line-height: 22px;
      letter-spacing: 0px;
    }

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

    .body-md {
      font-family: 'Arial', sans-serif;
      font-size: 23px;
      font-style: normal;
      font-weight: 400;
      line-height: 30px;
      letter-spacing: 0px;
    }

    .body-sm {
      font-family: span-condensed;
      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: 40px; letter-spacing: 0px; }
      .heading-lg { font-size: 30px; line-height: 34px; letter-spacing: 0px; }
      .heading-md { font-size: 23px; line-height: 30px; letter-spacing: 0px; }
      .heading-sm { font-size: 20px; line-height: 24px; letter-spacing: 0px; }
      .heading-xs { font-size: 16px; line-height: 20px; letter-spacing: 0px; }
      .body-lg { font-size: 3px; }
      .body-md { font-size: 23px; line-height: 0px; }
    }

/* Prose Styles */
.prose h1 {
  font-family: 'Arial', sans-serif;
  font-size: 57px;
  font-weight: 500;
  line-height: 62px;
  letter-spacing: 0px;
  margin-bottom: 1.5rem;
}

.prose h2 {
  font-family: 'Arial', sans-serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 50px;
  letter-spacing: 0px;
  margin-bottom: 1.25rem;
}

.prose h3 {
  font-family: 'Arial', sans-serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0px;
  margin-bottom: 1rem;
}

.prose h4 {
  font-family: 'Arial', sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0px;
  margin-bottom: 0.75rem;
}

.prose h5 {
  font-family: 'Arial', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0px;
  margin-bottom: 0.5rem;
}

.prose h6 {
  font-family: 'Arial', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0px;
  margin-bottom: 0.5rem;
}

.prose p {
  font-family: 'Arial', sans-serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0px;
  margin-bottom: 1.25rem;
}

.prose ul {
  font-family: 'Arial', sans-serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0px;
  margin-bottom: 1.25rem;
}

.prose ol {
  font-family: 'Arial', sans-serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 30px;
  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: system:brand;
  text-decoration: none;
  transition: color 0.15s ease;
}

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



/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Montserrat;
  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: 4px;
  padding: 18px 32px 18px 32px;
}

.btn-md {
  font-size: 16px;
  letter-spacing: 0px;
  border-radius: 4px;
  padding: 14px 24px 14px 24px;
}

.btn-sm {
  font-size: 14px;
  letter-spacing: 0px;
  border-radius: 4px;
  padding: 10px 16px 10px 16px;
}

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

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

.btn-secondary {
  background-color: transparent;
  color: #343a40;
  border-color: #e0dedd;
  border-width: 1px;
}

.btn-secondary:hover {
  background-color: #e0dedd;
  color: #ffffff;
  border-color: #e0dedd;
}

.btn-outline {
  background-color: transparent;
  color: #343a40;
  border-color: #e0dedd;
  border-width: 1px;
}

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

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

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

/* Global Custom CSS */
.prose p {
  margin-bottom: .7rem;
}
