@import url('/colorvars.css');
:root {
  --primary-color: hsl(var(--cs-color-h), var(--cs-color-s), var(--cs-color-l));
  /* neutral grays color pallate */
  --darkest-gray: hsl(0,0%,8%);
  --darker-gray: hsl(0,0%,28%);
  --medium-gray: hsl(0,0%,54%);
  --light-gray: hsl(0,0%,89%);
  --lighter-gray: hsl(0,0%,97%);
  --lightest-gray: hsl(0,0%,100%);
  /* monochromatic color pallate */
  --darkest-color: hsl(var(--cs-color-h), 61%, 10%);
  --darker-color: hsl(var(--cs-color-h), 30%, 37%);
  --medium-color: hsl(var(--cs-color-h), 20%, 59%);
  --light-color: hsl(var(--cs-color-h), 10%, 89%);
  --lighter-color: hsl(var(--cs-color-h), 2%, 97%);
  --lighest-color: hsl(var(--cs-color-h), 0%, 100%);
  /* footer mountain colors */
  --footer-mountain-color: var(--light-gray);
  --footer-mountain-bg-color: var(--lighter-gray);
  /* font colors */
  --font-base-color: var(--darkest-gray);
  --heading-color: var(--darker-gray);
  --small-heading-color: var(--darker-gray);
  /* button style */
  --button-bg: var(--primary-color);
  --button-text: var(--lighter-color);
  /* tag styles */
  --tag-bg: var(--light-color);
  --tag-text: var(--darkest-color);
  /* card styles */
  --card-border: var(--primary-color);
  /* content band styles */
  --cb-bg-light: var(--lighter-gray);
}

/* 
.base-color{background: var(--base-color);}
.light-1{background: var(--base-color-light-1);}
.light-2{background: var(--base-color-light-2);}
.light-3{background: var(--base-color-light-3);}
.light-4{background: var(--base-color-light-4);}
.light-5{background: var(--base-color-light-5);}
.light-6{background: var(--base-color-light-6);}
.light-7{background: var(--base-color-light-7);}
.light-8{background: var(--base-color-light-8);}
.light-9{background: var(--base-color-light-9);}

.dark-1{background: var(--base-color-dark-1);}
.dark-2{background: var(--base-color-dark-2);}
.dark-3{background: var(--base-color-dark-3);}
.dark-4{background: var(--base-color-dark-4);}
.dark-5{background: var(--base-color-dark-5);}
.dark-6{background: var(--base-color-dark-6);}
.dark-7{background: var(--base-color-dark-7);}
.dark-8{background: var(--base-color-dark-8);}
.dark-9{background: var(--base-color-dark-9);} */

.primary-color{
  background: var(--primary-color);
}

.darkest-color{
  background: var(--darkest-color);
}

.darker-color{
  background: var(--darker-color);
}

.medium-color{
  background: var(--medium-color);
}

.light-color{
  background: var(--light-color);
}

.lighter-color{
  background: var(--lighter-color);
}

.lightest-color{
  background: var(--lightest-color);
}

.darkest-gray{
  background: var(--darkest-gray)
}

.darker-gray{
  background: var(--darker-gray)
}

.medium-gray{
  background: var(--medium-gray)
}

.light-gray{
  background: var(--light-gray)
}

.lighter-gray{
  background: var(--lighter-gray)
}

.lightest-gray{
  background: var(--lightest-gray)
}

/* used in the footer */

.color-samples{
  display: flex;
}

.color-samples > div{
  height: 10px;
  width: 0;
  display: flex;
  flex: 1;
}

/* ! tailwindcss v3.3.3 | MIT License | https://tailwindcss.com */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: #e5e7eb;
  /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
*/

html {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
  font-variation-settings: normal;
  /* 6 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0;
  /* 1 */
  line-height: inherit;
  /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
  border-top-width: 1px;
  /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

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

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

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

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
  border-collapse: collapse;
  /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-feature-settings: inherit;
  /* 1 */
  font-variation-settings: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  color: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  padding: 0;
  /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

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

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

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

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden] {
  display: none;
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

.prose {
  color: var(--tw-prose-body);
  max-width: 65ch;
}

.prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-lead);
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}

.prose :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-links);
  text-decoration: underline;
  font-weight: 500;
}

.prose :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-bold);
  font-weight: 600;
}

.prose :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 1.625em;
}

.prose :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}

.prose :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}

.prose :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}

.prose :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}

.prose :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}

.prose :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}

.prose :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}

.prose :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}

.prose :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
}

.prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: disc;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 1.625em;
}

.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  font-weight: 400;
  color: var(--tw-prose-counters);
}

.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  color: var(--tw-prose-bullets);
}

.prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.25em;
}

.prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-color: var(--tw-prose-hr);
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
}

.prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-left-width: 0.25rem;
  border-left-color: var(--tw-prose-quote-borders);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-left: 1em;
}

.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: open-quote;
}

.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: close-quote;
}

.prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 800;
  font-size: 2.25em;
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
}

.prose :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 900;
  color: inherit;
}

.prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 700;
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3333333;
}

.prose :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 800;
  color: inherit;
}

.prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  font-size: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}

.prose :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}

.prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}

.prose :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}

.prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  display: block;
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-family: inherit;
  color: var(--tw-prose-kbd);
  box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%), 0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%);
  font-size: 0.875em;
  border-radius: 0.3125rem;
  padding-top: 0.1875em;
  padding-right: 0.375em;
  padding-bottom: 0.1875em;
  padding-left: 0.375em;
}

.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-code);
  font-weight: 600;
  font-size: 0.875em;
}

.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: "`";
}

.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: "`";
}

.prose :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.875em;
}

.prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.9em;
}

.prose :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-pre-code);
  background-color: var(--tw-prose-pre-bg);
  overflow-x: auto;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-right: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-left: 1.1428571em;
}

.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}

.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: none;
}

.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: none;
}

.prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  width: 100%;
  table-layout: auto;
  text-align: left;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}

.prose :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-th-borders);
}

.prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  vertical-align: bottom;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}

.prose :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-td-borders);
}

.prose :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 0;
}

.prose :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: baseline;
}

.prose :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-top-width: 1px;
  border-top-color: var(--tw-prose-th-borders);
}

.prose :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: top;
}

.prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}

.prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-captions);
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}

.prose {
  --tw-prose-body: #374151;
  --tw-prose-headings: #111827;
  --tw-prose-lead: #4b5563;
  --tw-prose-links: #111827;
  --tw-prose-bold: #111827;
  --tw-prose-counters: #6b7280;
  --tw-prose-bullets: #d1d5db;
  --tw-prose-hr: #e5e7eb;
  --tw-prose-quotes: #111827;
  --tw-prose-quote-borders: #e5e7eb;
  --tw-prose-captions: #6b7280;
  --tw-prose-kbd: #111827;
  --tw-prose-kbd-shadows: 17 24 39;
  --tw-prose-code: #111827;
  --tw-prose-pre-code: #e5e7eb;
  --tw-prose-pre-bg: #1f2937;
  --tw-prose-th-borders: #d1d5db;
  --tw-prose-td-borders: #e5e7eb;
  --tw-prose-invert-body: #d1d5db;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #9ca3af;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #9ca3af;
  --tw-prose-invert-bullets: #4b5563;
  --tw-prose-invert-hr: #374151;
  --tw-prose-invert-quotes: #f3f4f6;
  --tw-prose-invert-quote-borders: #374151;
  --tw-prose-invert-captions: #9ca3af;
  --tw-prose-invert-kbd: #fff;
  --tw-prose-invert-kbd-shadows: 255 255 255;
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d1d5db;
  --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
  --tw-prose-invert-th-borders: #4b5563;
  --tw-prose-invert-td-borders: #374151;
  font-size: 1rem;
  line-height: 1.75;
}

.prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}

.prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0.375em;
}

.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0.375em;
}

.prose :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

.prose :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}

.prose :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}

.prose :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}

.prose :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}

.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

.prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  padding-left: 1.625em;
}

.prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}

.prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}

.prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}

.prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}

.prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0;
}

.prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-right: 0;
}

.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.5714286em;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}

.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0;
}

.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-right: 0;
}

.prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}

.prose :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.inset-0 {
  inset: 0px;
}

.isolate {
  isolation: isolate;
}

.z-10 {
  z-index: 10;
}

.order-first {
  order: -9999;
}

.col-span-1 {
  grid-column: span 1 / span 1;
}

.m-0 {
  margin: 0px;
}

.-mx-4 {
  margin-left: -1rem;
  margin-right: -1rem;
}

.mx-8 {
  margin-left: 2rem;
  margin-right: 2rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-0 {
  margin-top: 0px;
  margin-bottom: 0px;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-14 {
  margin-bottom: 3.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.ml-0 {
  margin-left: 0px;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-3 {
  margin-left: 0.75rem;
}

.ml-auto {
  margin-left: auto;
}

.mt-0 {
  margin-top: 0px;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-14 {
  margin-top: 3.5rem;
}

.mt-16 {
  margin-top: 4rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-20 {
  margin-top: 5rem;
}

.mt-24 {
  margin-top: 6rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-auto {
  margin-top: auto;
}

.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.block {
  display: block;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.table {
  display: table;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.h-10 {
  height: 2.5rem;
}

.h-24 {
  height: 6rem;
}

.h-32 {
  height: 8rem;
}

.h-6 {
  height: 1.5rem;
}

.h-8 {
  height: 2rem;
}

.w-10 {
  width: 2.5rem;
}

.w-12 {
  width: 3rem;
}

.w-32 {
  width: 8rem;
}

.w-6 {
  width: 1.5rem;
}

.w-full {
  width: 100%;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.max-w-full {
  max-width: 100%;
}

.max-w-lg {
  max-width: 32rem;
}

.max-w-xl {
  max-width: 36rem;
}

.flex-auto {
  flex: 1 1 auto;
}

.flex-none {
  flex: none;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.items-start {
  align-items: flex-start;
}

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

.justify-between {
  justify-content: space-between;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-x-4 {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.gap-x-6 {
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}

.gap-x-8 {
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

.gap-y-20 {
  row-gap: 5rem;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.border {
  border-width: 1px;
}

.border-0 {
  border-width: 0px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-l {
  border-left-width: 1px;
}

.border-r-0 {
  border-right-width: 0px;
}

.border-t {
  border-top-width: 1px;
}

.border-indigo-500 {
  --tw-border-opacity: 1;
  border-color: rgb(99 102 241 / var(--tw-border-opacity));
}

.border-slate-200 {
  --tw-border-opacity: 1;
  border-color: rgb(226 232 240 / var(--tw-border-opacity));
}

.border-zinc-200 {
  --tw-border-opacity: 1;
  border-color: rgb(228 228 231 / var(--tw-border-opacity));
}

.bg-blue-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity));
}

.bg-gray-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
}

.bg-neutral-950 {
  --tw-bg-opacity: 1;
  background-color: rgb(10 10 10 / var(--tw-bg-opacity));
}

.bg-slate-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(248 250 252 / var(--tw-bg-opacity));
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.p-0 {
  padding: 0px;
}

.p-2 {
  padding: 0.5rem;
}

.p-2\.5 {
  padding: 0.625rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pl-0 {
  padding-left: 0px;
}

.pl-8 {
  padding-left: 2rem;
}

.pr-8 {
  padding-right: 2rem;
}

.pt-10 {
  padding-top: 2.5rem;
}

.pt-4 {
  padding-top: 1rem;
}

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

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

.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-5xl {
  font-size: 3rem;
  line-height: 1;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.uppercase {
  text-transform: uppercase;
}

.leading-6 {
  line-height: 1.5rem;
}

.leading-7 {
  line-height: 1.75rem;
}

.leading-8 {
  line-height: 2rem;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity));
}

.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
}

.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
}

.text-gray-900 {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}

.text-slate-800 {
  --tw-text-opacity: 1;
  color: rgb(30 41 59 / var(--tw-text-opacity));
}

.text-slate-950 {
  --tw-text-opacity: 1;
  color: rgb(2 6 23 / var(--tw-text-opacity));
}

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.underline {
  text-decoration-line: underline;
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.outline {
  outline-style: solid;
}

.ring-1 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.ring-blue-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(37 99 235 / var(--tw-ring-opacity));
}

.grayscale {
  --tw-grayscale: grayscale(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.\[text-wrap\:balance\] {
  text-wrap: balance;
}

/* all scaffolding (header/footer/structure) specific styling here */

.app {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

/* general styles */

body {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  color: var(--font-base-color);
}

body a{
  color: var(--primary-color);
  text-decoration: underline;
}

body a:hover{
  text-decoration: none;
}

/* header styles */

.header {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.header .header-menu-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  gap: 0.5rem;
  text-decoration: none;
}

.site-logo div {
  display: flex;
  flex-direction: column;
  margin: auto 0;
}

.site-logo div strong,
  .site-logo div em{
  color: var(--darkest-color);
}

.header-logo{
  fill: var(--primary-color);
  width: 64px;
  height: 64px;
}

.header .menu-button {
  border-radius: 9999px;
  padding: 0.625rem;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  background: var(--primary-color);
  width: 48px;
  height: 48px;
  margin-top: -1rem;
}

/* homepage hero section */

.home-hero{
  background: url('/img/mountain-layer-top.jpg') no-repeat bottom left;
  background-size: contain;
  padding-bottom: 6rem;
}

.recent-articles{
  background: url('/img/mountain-layer-bottom.jpg') no-repeat top left;
  background-size: contain;
  /* padding-top: 6rem; */
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
}

.header .menu-button:hover{
  /* background: var(--base-color-light-1); */
}

.header .menu-button svg{
  margin-left: 2px;
}

.header .menu-button svg,
  .header .menu-button svg path{
  color: var(--lighter-color);
}

.header .menu-button:hover svg,
  .header .menu-button:hover svg path{
  /* color: var(--base-color-dark-9); */
}

.header .menu-button svg + svg {
  display: none;
}

.resume-wrap .position.header .menu-button svg + svg{
  display: none;
}

/* footer styles */

.footer{
  /* background: var(--base-color); */
  /* background: rgb(229 231 235); */
  background: var(--footer-mountain-color);
  /* color: var(--base-color-dark-8); */
  position: relative;
}

.footer .todays-color {
  margin-bottom: 1rem;
  display: block;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

@media (min-width: 640px) {
  .footer .todays-color {
    display: flex;
  }
}

.footer .todays-color > p {
  margin-top: auto;
}

body.article-layout .mountain-footer {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.footer-content {
  display: block;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
}

@media (min-width: 640px) {
  .footer-content {
    display: flex;
  }
}

.footer-content .links {
  display: flex;
  gap: 1rem;
}

.footer a{
  color: var(--primary-color);
  /* border-bottom: 2px solid var(--primary-color) */
}

.footer a:hover{
  /* border-bottom: 2px solid var(--darker-color) */
}

/* .footer-content .links a,
 .footer .todays-color p a{
    border-bottom: 2px solid var(--primary-color)
  }
  .footer-content .links a:hover{
    border-bottom-color: var(--base-color-light-6)
  } */

.footer .todays-color-card a{
  border:none;
}

.footer .todays-color-card {
  margin-left: auto;
  display: flex;
  display: none;
  width: 8rem;
  flex-direction: column;
}

.resume-wrap .position.footer .todays-color-card{
  display: none;
}

@media (min-width: 768px) {
  .footer .todays-color-card {
    display: flex;
  }
}

.footer .todays-color-card{
  background: #fff;
}

.footer .todays-color-card .color-chip {
  display: block;
  height: 6rem;
  width: 8rem;
  background: var(--primary-color);
}

.footer .todays-color-card .color-data {
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
}

.footer .todays-color-card .color-data a{
  text-decoration: none;
}

.footer .todays-color-card .color-data strong{
}

.footer .todays-color-card .color-data em{
}

.mountain-footer{
  /* @apply bg-slate-50; */
  background: var(--footer-mountain-bg-color);
  width: 100%;
  height: auto;
  position: relative;
  /* z-index: 10; */
}

.mountain-footer svg{
  width: 100%;
  height: auto;
}

.mountain-footer svg .mf-color-1{
  /* fill:  var(--base-color); */
  /* fill: rgb(229 231 235); */
  fill: var(--footer-mountain-color);
}

.mountain-footer svg .mf-color-2{
  /* fill:  var(--base-color); */
  /* fill: rgb(229 231 235); */
  fill: var(--footer-mountain-color);
}

/* navigation styles */

body.menu-open .header .menu-button svg {
  display: none;
}

.resume-wrap body.position.menu-open .header .menu-button svg{
  display: none;
}

body.menu-open .header .menu-button svg + svg {
  display: block;
}

.site-nav{
  overflow: hidden;
  height: 0;
}

body.menu-open .site-nav{
  overflow: hidden;
  height: auto;
}

.site-nav .inner {
  max-width: 100%;
  padding: 0px;
}

.site-nav .inner nav {
  font-size: 3rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.site-nav .inner nav > div {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .site-nav .inner nav > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.site-nav .inner nav > div a {
  border-right-width: 0px;
  border-bottom-width: 1px;
  --tw-bg-opacity: 1;
  background-color: rgb(10 10 10 / var(--tw-bg-opacity));
}

@media (min-width: 640px) {
  .site-nav .inner nav > div a {
    border-right-width: 1px;
  }
}

.site-nav .inner nav > div a{
  background: var(--primary-color);
  border-color: var(--darkest-color)
}

.site-nav .inner nav > div a:hover{
  background: var(--darkest-color);
}

.site-nav .inner nav > div a span {
  position: relative;
  isolation: isolate;
  display: block;
  max-width: 32rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

@media (min-width: 640px) {
  .site-nav .inner nav > div a span {
    margin-left: auto;
  }
}

.site-nav .inner nav > div a span{
  color: var(--lighter-color)
}

.site-nav .inner nav > div a + a {
  border-right-width: 0px;
}

.site-nav .inner nav > div a + a span {
  margin-left: 0px;
}

@media (min-width: 640px) {
  .site-nav .inner nav > div a + a span {
    margin-right: auto;
  }
}

/* general prose coloring */

.prose a,
.content-band .some-link a{
  /* color: var(--base-color-dark-8); */
  /* text-decoration: none; */
  /* border-bottom: 2px solid var(--base-color-dark-8); */
}

.prose h1:not(:first-child) {
  margin-top: 3.5rem;
}

/* all content-band specific styling here */

.content-band {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.content-band .cb-intro {
  max-width: 42rem;
}

.content-band .cb-heading{
}

.content-band .cb-heading span {
  margin-bottom: 0.5rem;
  display: block;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--small-heading-color);
}

.content-band .cb-heading strong {
  display: block;
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

@media (min-width: 640px) {
  .content-band .cb-heading strong {
    font-size: 3rem;
    line-height: 1;
  }
}

.content-band .cb-heading strong{
  color: var(--heading-color);
}

.content-band .cb-excerpt {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.content-band .cb-excerpt p{
}

.content-band .cb-excerpt p + p {
  margin-top: 1.5rem;
}

/* specific styles for the Quick CV section */

.my-cv{
  /* @apply bg-slate-50 */
}

.my-cv .cv-list {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .my-cv .cv-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .my-cv .cv-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.my-cv .cv-list > li{
  /* @apply border-l border-indigo-500 text-base pl-8 py-4 */
  padding-left: 2rem;
  font-size: 1rem;
  line-height: 1.5rem;
  border-left: 1px solid var(--medium-color)
}

.my-cv .cv-list > li br {
  display: none;
}

.resume-wrap .position.my-cv .cv-list > li br{
  display: none;
}

.my-cv .cv-list > li strong {
  margin-top: 0.75rem;
  display: block;
  font-weight: 600;
}

.my-cv .cv-list > li time {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.my-cv .cv-list > li a{
  /* color: var(--base-color);
    text-decoration: underline; */
}

.my-cv .cv-list > li span {
  margin-top: 0.25rem;
  display: block;
}

.my-cv .cv-list > li.seeking {
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity));
  padding-right: 2rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.my-cv .quick-skills{
}

.my-cv .quick-skills ul{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.my-cv .quick-skills ul li {
  display: flex;
  gap: 0.5rem;
  font-weight: 500;
}

.my-cv .quick-skills ul li svg {
  height: 1.5rem;
  width: 1.5rem;
  fill: var(--darker-color);
}

.hire-me{
  /* @apply bg-slate-50 mt-12; */
  margin-top: 3rem;
  background: var(--footer-mountain-bg-color);
  position: relative;
  margin-bottom: -75px;
}

.hire-me .cb-excerpt,
  .hire-me .hire-me-btn{
  position: relative;
  z-index: 20;
}

.hire-me .hire-me-btn {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
}

@media (min-width: 1024px) {
  .hire-me .hire-me-btn {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* all article specific styling here */

.blog-wrap {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 48rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.blog-post.prose {
  max-width: 100%;
}

/* blog post styles */

.blog-post.prose .blog-header {
  position: relative;
  text-align: center;
}

.blog-post.prose .blog-header-image {
  margin-left: -1rem;
  margin-right: -1rem;
}

@media (min-width: 768px) {
  .blog-post.prose .blog-header-image {
    margin-left: -2rem;
    margin-right: -2rem;
  }
}

@media (min-width: 1024px) {
  .blog-post.prose .blog-header-image {
    margin-left: -5rem;
    margin-right: -5rem;
  }
}

.blog-post.prose .blog-header-image img {
  width: 100%;
  max-width: 100%;
}

.blog-post .blog-header .byline {
  order: -9999;
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(2 6 23 / var(--tw-text-opacity));
}

.blog-post .blog-header .byline span {
  margin-left: 0.5rem;
}

.blog-post .blog-header .byline .tag{
}

.blog-post2 .blog-header .byline .date{
}

.blog-post .blog-header h1 {
  margin-top: 1.5rem;
  margin-bottom: 0.25rem;
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.025em;
  --tw-text-opacity: 1;
  color: rgb(2 6 23 / var(--tw-text-opacity));
}

.blog-post .blog-header h3{
  position: relative;
}

.blog-post .blog-header p {
  margin-top: 1.5rem;
  text-align: left;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(2 6 23 / var(--tw-text-opacity));
}

.blog-post.prose .blog-body {
  position: relative;
  margin-top: 2.5rem;
  border-top-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(228 228 231 / var(--tw-border-opacity));
  padding-top: 2.5rem;
}

.blog-post.prose .blog-body blockquote {
  margin-left: 2rem;
  margin-right: 2rem;
}

/* styles for blog images */

.blog-post.prose .blog-body img{
  color: transparent;
  transition: filter 0.75s ease;
  filter: grayscale(0.9);
}

.blog-post.prose .blog-body img:hover{
  filter: grayscale(0.1);
}

/* the blog author section */

.blog-author {
  position: relative;
  margin-top: 6rem;
  border-top-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(228 228 231 / var(--tw-border-opacity));
  padding-top: 2.5rem;
  z-index:10;
  /* margin-bottom: -30px; */
}

.blog-author > ul {
  margin: 0px;
  padding: 0px;
}

.blog-author > ul li {
  margin: 0px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 0px;
}

@media (min-width: 640px) {
  .blog-author > ul li {
    flex-direction: row;
  }
}

.blog-comments {
  position: relative;
  margin-top: 2rem;
  border-top-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(228 228 231 / var(--tw-border-opacity));
  padding-top: 2.5rem;
  z-index:10;
  margin-bottom: -30px;
}

.author-image {
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: auto;
  margin-right: auto;
  height: 8rem;
  width: 8rem;
  flex: none;
  border-radius: 9999px;
  -o-object-fit: cover;
     object-fit: cover;
  padding-top: 0px;
  padding-bottom: 0px;
}

.author-content {
  max-width: 36rem;
  flex: 1 1 auto;
}

.author-content h3 {
  margin-top: 0px;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 2rem;
  letter-spacing: -0.025em;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}

.author-content h4 {
  font-size: 1rem;
  line-height: 1.75rem;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
}

.author-content p {
  margin-top: 1.5rem;
  margin-top: 0px;
  font-size: 1rem;
  line-height: 1.75rem;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
}

.author-content p a{
  color: var(--primary-color)
}

.author-content .social-links {
  margin-top: 1.5rem;
  display: flex;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  padding-left: 0px;
}

.author-content .social-links li{
}

.author-content .social-links li a{
  text-decoration: none;
  border-bottom: none;
}

.author-content .social-links li a span{
}

.author-content .social-links li a svg {
  height: 2rem;
  width: 2rem;
  fill: var(--primary-color);
}

.author-content .social-links li a svg:hover{
  fill: var(--darkest-color);
}

@media (min-width: 1024px) {
  .blog-comments{
    margin-bottom: -100px;
  }
}

@media (min-width: 1280px) {
  .blog-comments{
    margin-bottom: -150px;
  }
}

/* artcile listing page */

.article-list{
  margin-bottom: 6rem;
}

.article-list article {
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #ccc;
}

.article-list article:last-child {
  margin-bottom: 0px;
  border-bottom: none;
}

.article-list article svg{
  fill: var(--base-color);
  width: 64px;
  height: 64px;
  margin-right: 16px;
  margin-top: 2.5rem;
}

.article-list article .article-content {
  position: relative;
}

/* .article-list article .article-tag{
    @apply relative z-10 rounded-full bg-gray-50 px-3 py-1.5 font-medium text-gray-600;
    background: var(--base-color);
    color: var(--base-color-light-1);
  } */

.article-list article .article-title {
  margin-top: 0.75rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}

.group:hover .article-list article .article-title {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
}

.article-list article .article-excerpt {
  margin-top: 0.75rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
}

.article-list article .article-keep-reading {
  margin-top: 0.75rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 1rem;
  line-height: 1.5rem;
}

.article-list article .article-keep-reading a{
  color: var(--base-color);
  border-bottom: 2px solid var(--base-color);
}

.article-list article .article-keep-reading a:hover{
  border-bottom-color: var(--base-color-dark-9);
}

/* article card styles */

.article-cards {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
}

@media (min-width: 1024px) {
  .article-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.article-card{
  /* @apply relative flex w-full x-flex-col rounded-lg p-6 ring-1 ring-blue-600 */
  position: relative;
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border: 5px solid var(--card-border);
  border-width: 1px 1px 1px 5px;
  width: 100%;
}

.article-card .article-type {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.article-card .article-title {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
}

.article-card .article-title a{
  color: var(--primary-color);
  text-decoration: none;
}

.article-card .article-excerpt {
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
}

.article-card .article-excerpt a{
  color: var(--font-base-color);
  text-decoration: none;
}

.article-card .article-icon {
  margin-bottom: 1rem;
  width: 3rem;
}

.article-card .article-icon svg {
  height: auto;
  width: 3rem;
  fill: var(--base-color);
}

/* all project specific styling here */

.project-wrap {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 48rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.project-page.prose {
  max-width: 100%;
}

.project-page.prose .project-header {
  position: relative;
  text-align: center;
}

.project-page.prose .project-header-image{
  /* @apply -mx-4 md:-mx-8 lg:-mx-20 */
}

.project-page.prose .project-header-image img {
  width: 100%;
  max-width: 100%;
}

.project-page .project-header .byline {
  order: -9999;
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(2 6 23 / var(--tw-text-opacity));
}

.project-page .project-header .byline span {
  margin-left: 0.5rem;
}

.project-page .project-header .byline .tag{
}

.project-page2 .project-header .byline .date{
}

.project-page .project-header h1 {
  margin-top: 1.5rem;
  margin-bottom: 0.25rem;
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.025em;
  --tw-text-opacity: 1;
  color: rgb(2 6 23 / var(--tw-text-opacity));
}

.project-page .project-header h3{
  position: relative;
}

.project-page .project-header p {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(2 6 23 / var(--tw-text-opacity));
}

.project-body {
  margin-top: 3rem;
  padding-bottom: 2rem;
}

/* resume styles */

.resume-wrap .skills{
  /* @apply flex flex-col flex-wrap; */
  -moz-column-count: 2;
       column-count: 2;
}

.resume-wrap .prose h3 {
  display: flex;
  justify-content: space-between;
  flex-direction: column-reverse;
}

.resume-wrap  .position-date {
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(30 41 59 / var(--tw-text-opacity));
}

.resume-wrap .position-details {
  width: 100%;
}

.resume-wrap .prose h4 {
  margin-left: 0.75rem;
}

.resume-wrap .position {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  padding-bottom: 1rem;
  border-top: 1px solid var(--medium-color);
  border-bottom: 1px solid var(--medium-color);
}

.resume-wrap .position .resume-trigger {
  position: relative;
  margin-top: 2rem;
  display: block;
  border-width: 0px;
  top: -3px;
}

.resume-trigger svg {
  height: 2.5rem;
  width: 2.5rem;
  fill: var(--primary-color);
}

.resume-trigger svg + svg{
  display: none;
}

.resume-wrap .position + .position{
  border-top: 0;
}

.resume-wrap .position.hidden{
  display: none;
}

.resume-wrap .position.open .details{
  display: block;
}

.resume-wrap .position.open .resume-trigger svg{
  display: none;
}

.resume-wrap .position.open .resume-trigger svg + svg{
  display: block;
}

.resume-wrap .position .details{
  display: none;
}

@media (min-width: 640px) {
}

@media (min-width: 1024px) {
  .resume-wrap .prose h3 {
    flex-direction: row
  }
}

.inner {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 64rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
}

@media (min-width: 768px) {
  .hire-me{
    margin-bottom: -140px;
  }

  .home-hero{
    padding-bottom: 11rem;
  }

  .recent-articles{
    padding-top: 5rem;
  }
}

@media (min-width: 1024px) {
  .hire-me{
    margin-bottom: -130px;
    padding-bottom:0;
  }
}

@media (min-width: 1280px) {
  .hire-me{
    margin-bottom: -180px;
  }

  .home-hero{
    padding-bottom: 13rem;
  }

  .recent-articles{
    padding-top: 6rem;
  }
}

@media (min-width: 1536px) {
}

/* general button styles */

.btn {
  border-radius: 0.5rem;
  padding: 0.5rem;
  text-decoration: none;
  background: var(--button-bg);
  color: var(--button-text);
  border: 1px solid var( --button-bg);
  text-align: center;
}

.btn:hover{
}

.btn.btn-large {
  padding: 1rem;
  font-weight: 700;
}

.btn.btn-block {
  display: block;
}

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

.btn.btn-ghost{
  color: var( --button-bg);
  background: none;
  text-align: left
}

/* general tag styles */

.tag {
  position: relative;
  z-index: 10;
  margin-right: 1rem;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
  background: var(--tag-bg);
  color: var(--tag-text);
}

.tag.tag-sm {
  font-size: 0.75rem;
  line-height: 1rem;
}

.main-box-footer{
  display: none !important;
}

.hover\:text-gray-500:hover {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
}

.group:hover .group-hover\:text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
}

@media (min-width: 640px) {
  .sm\:ml-auto {
    margin-left: auto;
  }

  .sm\:mr-auto {
    margin-right: auto;
  }

  .sm\:flex {
    display: flex;
  }

  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:flex-row {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .md\:-mx-8 {
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .md\:flex {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .lg\:-mx-20 {
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .lg\:mx-0 {
    margin-left: 0px;
    margin-right: 0px;
  }

  .lg\:max-w-none {
    max-width: none;
  }

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}