/* Nexo compiled utilities — tokens + every class used in theme PHP and post_content. */

:root {
  --nexo-canvas: #F6F6F4;
  --nexo-surface: #FFFFFF;
  --nexo-line: #E8E8E4;
  --nexo-ink: #111110;
  --nexo-muted: #6B6B65;
  --nexo-brand: #2F6FED;
}

*,
::before,
::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: currentColor;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  font-family: "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
}

body {
  margin: 0;
  line-height: inherit;
}

h1,
h2,
h3,
h4,
p,
blockquote,
pre,
figure {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-size: inherit;
  font-weight: inherit;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

img,
svg,
video {
  display: block;
  vertical-align: middle;
}

img,
video {
  max-width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
  border-color: inherit;
  text-indent: 0;
}

code,
kbd,
pre,
samp {
  font-family: inherit;
  font-size: 1em;
}

button,
input {
  font-family: inherit;
  font-size: 100%;
  line-height: inherit;
  margin: 0;
}

/* Layout */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.items-center { align-items: center; }
.items-baseline { align-items: baseline; }
.ml-auto { margin-left: auto; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.h-12 { height: 3rem; }
.min-h-screen { min-height: 100vh; }
.max-w-3xl { max-width: 48rem; }
.max-w-prose { max-width: 65ch; }
.mx-auto { margin-left: auto; margin-right: auto; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.object-cover { object-fit: cover; }
.aspect-\[16\/9\] { aspect-ratio: 16 / 9; }

/* Spacing */
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.p-4 { padding: 1rem; }
.pl-4 { padding-left: 1rem; }
.pl-5 { padding-left: 1.25rem; }
.pr-4 { padding-right: 1rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.space-y-1 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.25rem; }

/* Color */
.bg-canvas { background-color: var(--nexo-canvas); }
.bg-surface { background-color: var(--nexo-surface); }
.text-ink { color: var(--nexo-ink); }
.text-muted { color: var(--nexo-muted); }
.text-ink\/10 { color: rgb(17 17 16 / 0.1); }
.hover\:text-ink:hover { color: var(--nexo-ink); }
.hover\:text-brand:hover { color: var(--nexo-brand); }

/* Border */
.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-l-2 { border-left-width: 2px; }
.border-line { border-color: var(--nexo-line); }
.border-ink { border-color: var(--nexo-ink); }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }

/* Type */
.font-sans { font-family: "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif; }
.font-mono { font-family: "IBM Plex Mono", ui-monospace, monospace; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.tracking-tight { letter-spacing: -0.025em; }
.leading-7 { line-height: 1.75rem; }
.text-left { text-align: left; }
.align-top { vertical-align: top; }
.underline { text-decoration-line: underline; }
.underline-offset-4 { text-underline-offset: 4px; }
.list-disc { list-style-type: disc; }
.list-decimal { list-style-type: decimal; }

.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-6xl { font-size: 3.75rem; line-height: 1; }

@media (min-width: 640px) {
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
}
.whitespace-nowrap{white-space:nowrap}
