@charset "UTF-8";
@import '../fonts/stylesheet.css';
@keyframes link-underline {
  0% {
    background-size: 100% var(--al-underline-thickness);
    background-position-x: 100%;
  }
  50% {
    background-size: 0% var(--al-underline-thickness);
    background-position-x: 100%;
  }
  51% {
    background-position-x: 0;
  }
  100% {
    background-size: 100% var(--al-underline-thickness);
    background-position-x: 0;
  }
}
[class^=artlogic-social-icon] {
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/**
 * Mixin: reduce-motion
 *
 * This mixin applies reduced motion styles based on the user's preference for reduced motion.
 * It allows you to easily implement reduced motion effects in your CSS.
 *
 * @param {Boolean} [$important=true] - Determines whether the reduced motion styles are marked as important using the `if-important` function.
 *
 * @usage
 *  @include reduce-motion() {
 *    // Additional styles for reduced motion
 *    // ...
 *  }
 *
 * @example
 *  @keyframes fadeIn {
 *    // Keyframes for fade-in animation
 *    // ...
 *  }
 *
 *  .element {
 *    animation: fadeIn 1s;
 *    transition: opacity 0.5s;
 *
 *    @include reduce-motion
 *  }
 */
:root {
  --al-space-3xs: clamp(0.2rem, 0.1446153846rem + 0.15384615vw, 0.4rem);
  --al-space-2xs: clamp(0.4rem, 0.2892307692rem + 0.30769231vw, 0.8rem);
  --al-space-xs: clamp(1rem, 1rem + 0vw, 1rem);
  --al-space-s: clamp(1.2rem, 1.0892307692rem + 0.30769231vw, 1.6rem);
  --al-space-m: clamp(1.6rem, 1.4892307692rem + 0.30769231vw, 2rem);
  --al-space-l: clamp(2.5rem, 2.5rem + 0vw, 2.5rem);
  --al-space-xl: clamp(3rem, 3rem + 0vw, 3rem);
  --al-space-2xl: clamp(2rem, 1.4461538462rem + 1.53846154vw, 4rem);
  --al-space-3xl: clamp(4rem, 3.4461538462rem + 1.53846154vw, 6rem);
  --al-space-4xl: clamp(8rem, 8rem + 0vw, 8rem);
  --al-space-5xl: clamp(7.5rem, 6.5307692308rem + 2.69230769vw, 11rem);
  --al-space-6xl: clamp(9.5rem, 8.3923076923rem + 3.07692308vw, 13.5rem);
  --al-space-7xl: clamp(9.5rem, 7.8938461538rem + 4.46153846vw, 15.3rem);
  --al-space-container-px: clamp(1.2rem, -0.6830769231rem + 5.23076923vw, 8rem);
}

:root {
  --al-heading-font-size-1: clamp(4rem, 3.1138461538rem + 2.46153846vw, 7.2rem);
  --al-heading-font-size-2: clamp(3.2rem, 2.5353846154rem + 1.84615385vw, 5.6rem);
  --al-heading-font-size-3: clamp(2.8rem, 2.4676923077rem + 0.92307692vw, 4rem);
  --al-heading-font-size-4: clamp(2.4rem, 2.1784615385rem + 0.61538462vw, 3.2rem);
  --al-heading-font-size-5: clamp(2rem, 1.8892307692rem + 0.30769231vw, 2.4rem);
  --al-heading-font-size-6: clamp(1.6rem, 1.5446153846rem + 0.15384615vw, 1.8rem);
}

:root {
  --al-body-font-size--2: clamp(1rem, 0.9446153846rem + 0.15384615vw, 1.2rem);
  --al-body-font-size--1: clamp(1.2rem, 1.1446153846rem + 0.15384615vw, 1.4rem);
  --al-body-font-size-0: clamp(1.5rem, 1.5rem + 0vw, 1.5rem);
  --al-body-font-size-1: clamp(1.7rem, 1.6169230769rem + 0.23076923vw, 2rem);
  --al-body-font-size-2: clamp(1.9rem, 1.8169230769rem + 0.23076923vw, 2.2rem);
}

:root {
  --al-color-base-50: #f9fafb;
  --al-color-base-100: #f3f4f6;
  --al-color-base-200: #e5e7eb;
  --al-color-base-300: #d1d5db;
  --al-color-base-400: #9ca3af;
  --al-color-base-500: #6b7280;
  --al-color-base-600: #4b5563;
  --al-color-base-700: #808080;
  --al-color-base-800: #1f2937;
  --al-color-base-900: #111827;
  --al-color-base-950: #18181B;
}

:root {
  --al-color-white: #ffffff;
  --al-color-black: #18181B;
  --al-color-accent: #100A8E;
  --al-color-text-primary: var(--al-color-base-950);
  --al-color-text-secondary: var(--al-color-base-800);
  --al-color-text-body: var(--al-color-base-950);
  --al-color-border: var(--al-color-base-950);
  --al-color-border-focus: var(--al-color-base-300);
  --al-color-text-primary-invert: var(--al-color-white);
  --al-color-text-secondary-invert: var(--al-color-base-100);
  --al-color-text-body-invert: var(--al-color-base-300);
  --al-color-border-invert: var(--al-color-base-900);
  --al-color-border-focus-invert: var(--al-color-base-700);
  --al-color-error-primary: #dc2626;
  --al-color-error-secondary: #dc2626;
}

:root {
  --al-line-height-tight: 1;
  --al-line-height-snug: 1.2;
  --al-line-height-normal: 1.6;
  --al-line-height-relaxed: 1.7;
  --al-line-height-loose: 2;
  --al-line-height-prose: 1.75;
}

:root {
  --al-letter-spacing-tightest: -0.15em;
  --al-letter-spacing-tighter: -0.1em;
  --al-letter-spacing-tight: -0.05em;
  --al-letter-spacing-normal: 0.02em;
  --al-letter-spacing-wide: 0.06em;
  --al-letter-spacing-wider: 0.1em;
  --al-letter-spacing-widest: 0.15em;
}

:root {
  --al-border-radius-none: 0;
  --al-border-radius-s: 0.4rem;
  --al-border-radius-m: 0.8rem;
  --al-border-radius-l: 1.6rem;
  --al-border-radius-xl: 3.2rem;
  --al-border-radius-pill: 999rem;
}

:root {
  --al-section-space: var(--al-space-4xl);
  --al-container-width: 166rem;
  --al-container-px: var(--al-space-container-px);
}

:root {
  --al-button-px: var(--al-space-m);
  --al-button-py: var(--al-space-2xs);
  --al-button-border-radius: 0;
  --al-button-transition: 0.3s all cubic-bezier(0.42, 0, 0.58, 1);
  --al-button-font-family: inherit;
  --al-button-font-size: var(--al-body-font-size-0);
  --al-button-line-height: var(--al-line-height-normal);
  --al-button-font-weight: normal;
  --al-button-font-style: normal;
  --al-button-letter-spacing: var(--al-letter-spacing-normal);
  --al-button-text-transform: unset;
  --al-button-color: var(--al-color-base-950);
  --al-button-background: transparent;
  --al-button-border: 1px solid var(--al-color-base-100);
  --al-button-color-hover: var(--al-color-white);
  --al-button-background-hover: var(--al-color-base-950);
  --al-button-border-hover: 1px solid var(--al-color-base-950);
  --al-button-color-invert: var(--al-color-white);
  --al-button-background-invert: transparent;
  --al-button-border-invert: 1px solid var(--al-color-base-600);
  --al-button-color-hover-invert: var(--al-color-base-950);
  --al-button-background-hover-invert: var(--al-color-white);
  --al-button-border-hover-invert: 1px solid var(--al-color-white);
}

:root {
  --al-link-transition: 0.3s all cubic-bezier(0.42, 0, 0.58, 1);
  --al-link-font-family: inherit;
  --al-link-font-size: var(--al-body-font-size-0);
  --al-link-line-height: var(--line-height-snug);
  --al-link-font-weight: bold;
  --al-link-font-style: normal;
  --al-link-letter-spacing: var(--al-letter-spacing-normal);
  --al-link-color: var(--al-color-base-800);
  --al-link-color-hover: var(--al-color-base-900);
  --al-link-color-invert: var(--al-color-base-100);
  --al-link-color-hover-invert: var(--al-color-white);
}

.prose,
.mceContentBody {
  --al-prose-font-size: var(--al-body-font-size-0);
  --al-prose-line-height: var(--al-line-height-prose, 1.75);
  --al-prose-max-width: 80ch;
  --al-prose-body-color: var(--al-color-text-body);
  --al-prose-heading-color: var(--al-color-text-primary);
  --al-prose-lead-color: var(--al-color-text-primary);
  --al-prose-link-color: var(--al-color-base-900);
  --al-prose-bold-color: var(--al-color-base-900);
  --al-prose-counters-color: var(--al-color-base-500);
  --al-prose-bullets-color: var(--al-color-base-300);
  --al-prose-hr-color: var(--al-color-base-200);
  --al-prose-blockquote-color: var(--al-color-base-900);
  --al-prose-blockquote-border-color: var(--al-color-base-200);
  --al-prose-captions-color: var(--al-color-base-500);
  --al-prose-code-color: var(--al-color-base-900);
  --al-prose-pre-code-color: var(--al-color-base-200);
  --al-prose-pre-bg-color: var(--al-color-base-800);
  --al-prose-th-border-color: var(--al-color-base-300);
  --al-prose-td-border-color: var(--al-color-base-200);
  --al-prose-invert-body-color: var(--al-color-text-body-invert, var(--al-color-base-300));
  --al-prose-invert-heading-color: var(--al-color-white);
  --al-prose-invert-lead-color: var(--al-color-base-400);
  --al-prose-invert-link-color: var(--al-color-white);
  --al-prose-invert-bold-color: var(--al-color-white);
  --al-prose-invert-counters-color: var(--al-color-base-400);
  --al-prose-invert-bullets-color: var(--al-color-base-600);
  --al-prose-invert-hr-color: var(--al-color-base-700);
  --al-prose-invert-blockquote-color: var(--al-color-base-100);
  --al-prose-invert-blockquote-border-color: var(--al-color-base-700);
  --al-prose-invert-captions-color: var(--al-color-base-400);
  --al-prose-invert-code-color: var(--al-color-white);
  --al-prose-invert-pre-code-color: var(--al-color-base-300);
  --al-prose-invert-pre-bg-color: rgb(0 0 0 / 50%);
  --al-prose-invert-th-border-color: var(--al-color-base-600);
  --al-prose-invert-td-border-color: var(--al-color-base-700);
  font-size: var(--al-prose-font-size);
  line-height: var(--al-prose-line-height);
  color: var(--al-prose-body-color);
  max-width: var(--al-prose-max-width);
  word-break: break-word;
}
.prose :where(p):not(:where([class~=not-prose] *)),
.mceContentBody :where(p):not(:where([class~=not-prose] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.prose :where([class~=lead]):not(:where([class~=not-prose] *)),
.mceContentBody :where([class~=lead]):not(:where([class~=not-prose] *)) {
  color: var(--al-prose-lead-color);
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}
.prose :where(a):not(:where([class~=not-prose] *)),
.mceContentBody :where(a):not(:where([class~=not-prose] *)) {
  color: var(--al-prose-link-color);
  text-decoration: none;
  font-weight: bold;
}
.prose :where(strong):not(:where([class~=not-prose] *)),
.mceContentBody :where(strong):not(:where([class~=not-prose] *)) {
  color: var(--al-prose-bold-color);
  font-weight: bold;
}
.prose :where(a strong):not(:where([class~=not-prose] *)),
.mceContentBody :where(a strong):not(:where([class~=not-prose] *)) {
  color: inherit;
}
.prose :where(blockquote strong):not(:where([class~=not-prose] *)),
.mceContentBody :where(blockquote strong):not(:where([class~=not-prose] *)) {
  color: inherit;
}
.prose :where(thead th strong):not(:where([class~=not-prose] *)),
.mceContentBody :where(thead th strong):not(:where([class~=not-prose] *)) {
  color: inherit;
}
.prose :where(ol):not(:where([class~=not-prose] *)),
.mceContentBody :where(ol):not(:where([class~=not-prose] *)) {
  list-style-type: decimal;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 0.625em;
}
.prose :where(ol[type=A]):not(:where([class~=not-prose] *)),
.mceContentBody :where(ol[type=A]):not(:where([class~=not-prose] *)) {
  list-style-type: upper-alpha;
}
.prose :where(ol[type=a]):not(:where([class~=not-prose] *)),
.mceContentBody :where(ol[type=a]):not(:where([class~=not-prose] *)) {
  list-style-type: lower-alpha;
}
.prose :where(ol[type=A s]):not(:where([class~=not-prose] *)),
.mceContentBody :where(ol[type=A s]):not(:where([class~=not-prose] *)) {
  list-style-type: upper-alpha;
}
.prose :where(ol[type=a s]):not(:where([class~=not-prose] *)),
.mceContentBody :where(ol[type=a s]):not(:where([class~=not-prose] *)) {
  list-style-type: lower-alpha;
}
.prose :where(ol[type=I]):not(:where([class~=not-prose] *)),
.mceContentBody :where(ol[type=I]):not(:where([class~=not-prose] *)) {
  list-style-type: upper-roman;
}
.prose :where(ol[type=i]):not(:where([class~=not-prose] *)),
.mceContentBody :where(ol[type=i]):not(:where([class~=not-prose] *)) {
  list-style-type: lower-roman;
}
.prose :where(ol[type=I s]):not(:where([class~=not-prose] *)),
.mceContentBody :where(ol[type=I s]):not(:where([class~=not-prose] *)) {
  list-style-type: upper-roman;
}
.prose :where(ol[type=i s]):not(:where([class~=not-prose] *)),
.mceContentBody :where(ol[type=i s]):not(:where([class~=not-prose] *)) {
  list-style-type: lower-roman;
}
.prose :where(ol[type="1"]):not(:where([class~=not-prose] *)),
.mceContentBody :where(ol[type="1"]):not(:where([class~=not-prose] *)) {
  list-style-type: decimal;
}
.prose :where(ul):not(:where([class~=not-prose] *)),
.mceContentBody :where(ul):not(:where([class~=not-prose] *)) {
  list-style-type: disc;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 0.625em;
}
.prose :where(ol > li):not(:where([class~=not-prose] *))::marker,
.mceContentBody :where(ol > li):not(:where([class~=not-prose] *))::marker {
  font-weight: bold;
  color: var(--al-prose-counters-color);
}
.prose :where(ul > li):not(:where([class~=not-prose] *))::marker,
.mceContentBody :where(ul > li):not(:where([class~=not-prose] *))::marker {
  color: var(--al-prose-bullets-color);
}
.prose :where(hr):not(:where([class~=not-prose] *)),
.mceContentBody :where(hr):not(:where([class~=not-prose] *)) {
  border-width: 0;
  border-color: var(--al-prose-hr-color);
  border-top-width: 1px;
  border-style: solid;
  margin-top: 3em;
  margin-bottom: 3em;
}
.prose blockquote:not(:where([class~=not-prose] *)),
.mceContentBody blockquote:not(:where([class~=not-prose] *)) {
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  font-size: var(--al-body-font-size-0);
  line-height: 1.7142857;
  font-weight: bold;
  font-style: normal;
  color: var(--al-prose-blockquote-color);
  border-left-style: solid;
  border-left-width: 0;
  border-left-color: var(--al-prose-blockquote-border-color);
  background-color: var(--al-prose-blockquote-background-color, transparent);
  quotes: "“" "”" "‘" "’";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
}
.prose blockquote:first-child:not(:where([class~=not-prose] *)),
.mceContentBody blockquote:first-child:not(:where([class~=not-prose] *)) {
  margin-top: 0;
}
.prose blockquote:last-child:not(:where([class~=not-prose] *)),
.mceContentBody blockquote:last-child:not(:where([class~=not-prose] *)) {
  margin-bottom: 0;
}
.prose :where(h1):not(:where([class~=not-prose] *)),
.mceContentBody :where(h1):not(:where([class~=not-prose] *)) {
  color: var(--al-prose-heading-color);
  font-weight: bold;
  font-size: var(--al-body-font-size-0);
  line-height: 1.1111111;
  margin-top: 0;
  margin-bottom: 0.8888889em;
}
.prose :where(h1 strong):not(:where([class~=not-prose] *)),
.mceContentBody :where(h1 strong):not(:where([class~=not-prose] *)) {
  font-weight: bold;
  color: inherit;
}
.prose :where(h2):not(:where([class~=not-prose] *)),
.mceContentBody :where(h2):not(:where([class~=not-prose] *)) {
  color: var(--al-prose-heading-color);
  font-weight: 700;
  font-size: var(--al-body-font-size-0);
  line-height: 1.3333333;
  margin-top: 2em;
  margin-bottom: 1em;
}
.prose :where(h2 strong):not(:where([class~=not-prose] *)),
.mceContentBody :where(h2 strong):not(:where([class~=not-prose] *)) {
  font-weight: bold;
  color: inherit;
}
.prose :where(h3):not(:where([class~=not-prose] *)),
.mceContentBody :where(h3):not(:where([class~=not-prose] *)) {
  color: var(--al-prose-heading-color);
  font-weight: 600;
  font-size: var(--al-body-font-size-0);
  line-height: 1.6;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
}
.prose :where(h3 strong):not(:where([class~=not-prose] *)),
.mceContentBody :where(h3 strong):not(:where([class~=not-prose] *)) {
  font-weight: bold;
  color: inherit;
}
.prose :where(h4):not(:where([class~=not-prose] *)),
.mceContentBody :where(h4):not(:where([class~=not-prose] *)) {
  color: var(--al-prose-heading-color);
  font-weight: 600;
  font-size: var(--al-body-font-size-0);
  line-height: 1.5;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}
.prose :where(h4 strong):not(:where([class~=not-prose] *)),
.mceContentBody :where(h4 strong):not(:where([class~=not-prose] *)) {
  font-weight: bold;
  color: inherit;
}
.prose :where(img):not(:where([class~=not-prose] *)),
.mceContentBody :where(img):not(:where([class~=not-prose] *)) {
  margin-top: 3em;
  margin-bottom: 3em;
}
.prose :where(figure > *):not(:where([class~=not-prose] *)),
.mceContentBody :where(figure > *):not(:where([class~=not-prose] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.prose :where(pre):not(:where([class~=not-prose] *)),
.mceContentBody :where(pre):not(:where([class~=not-prose] *)) {
  color: var(--al-prose-pre-code-color);
  background-color: var(--al-prose-pre-bg-color);
  overflow-x: auto;
  font-weight: bold;
  font-size: var(--al-body-font-size-0);
  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] *)),
.mceContentBody :where(pre code):not(:where([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] *))::before,
.mceContentBody :where(pre code):not(:where([class~=not-prose] *))::before {
  content: none;
}
.prose :where(pre code):not(:where([class~=not-prose] *))::after,
.mceContentBody :where(pre code):not(:where([class~=not-prose] *))::after {
  content: none;
}
.prose :where(table):not(:where([class~=not-prose] *)),
.mceContentBody :where(table):not(:where([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] *)),
.mceContentBody :where(thead):not(:where([class~=not-prose] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--al-prose-th-border-color);
}
.prose :where(thead th):not(:where([class~=not-prose] *)),
.mceContentBody :where(thead th):not(:where([class~=not-prose] *)) {
  color: var(--al-prose-heading-color);
  font-weight: bold;
  vertical-align: bottom;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}
.prose :where(tbody tr):not(:where([class~=not-prose] *)),
.mceContentBody :where(tbody tr):not(:where([class~=not-prose] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--al-prose-td-border-color);
}
.prose :where(tbody tr:last-child):not(:where([class~=not-prose] *)),
.mceContentBody :where(tbody tr:last-child):not(:where([class~=not-prose] *)) {
  border-bottom-width: 0;
}
.prose :where(tbody td):not(:where([class~=not-prose] *)),
.mceContentBody :where(tbody td):not(:where([class~=not-prose] *)) {
  vertical-align: baseline;
}
.prose :where(tfoot):not(:where([class~=not-prose] *)),
.mceContentBody :where(tfoot):not(:where([class~=not-prose] *)) {
  border-top-width: 1px;
  border-top-color: var(--al-prose-th-border-color);
}
.prose :where(tfoot td):not(:where([class~=not-prose] *)),
.mceContentBody :where(tfoot td):not(:where([class~=not-prose] *)) {
  vertical-align: top;
}
.prose :where(video):not(:where([class~=not-prose] *)),
.mceContentBody :where(video):not(:where([class~=not-prose] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(figure):not(:where([class~=not-prose] *)),
.mceContentBody :where(figure):not(:where([class~=not-prose] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(li):not(:where([class~=not-prose] *)),
.mceContentBody :where(li):not(:where([class~=not-prose] *)) {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.prose :where(ol > li):not(:where([class~=not-prose] *)),
.mceContentBody :where(ol > li):not(:where([class~=not-prose] *)) {
  padding-left: 0.375em;
}
.prose :where(ul > li):not(:where([class~=not-prose] *)),
.mceContentBody :where(ul > li):not(:where([class~=not-prose] *)) {
  padding-left: 0.375em;
}
.prose :where(.prose > ul > li p):not(:where([class~=not-prose] *)),
.mceContentBody :where(.prose > ul > li p):not(:where([class~=not-prose] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.prose :where(.prose > ul > li > *:first-child):not(:where([class~=not-prose] *)),
.mceContentBody :where(.prose > ul > li > *:first-child):not(:where([class~=not-prose] *)) {
  margin-top: 1.25em;
}
.prose :where(.prose > ul > li > *:last-child):not(:where([class~=not-prose] *)),
.mceContentBody :where(.prose > ul > li > *:last-child):not(:where([class~=not-prose] *)) {
  margin-bottom: 1.25em;
}
.prose :where(.prose > ol > li > *:first-child):not(:where([class~=not-prose] *)),
.mceContentBody :where(.prose > ol > li > *:first-child):not(:where([class~=not-prose] *)) {
  margin-top: 1.25em;
}
.prose :where(.prose > ol > li > *:last-child):not(:where([class~=not-prose] *)),
.mceContentBody :where(.prose > ol > li > *:last-child):not(:where([class~=not-prose] *)) {
  margin-bottom: 1.25em;
}
.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=not-prose] *)),
.mceContentBody :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=not-prose] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.prose :where(hr + *):not(:where([class~=not-prose] *)),
.mceContentBody :where(hr + *):not(:where([class~=not-prose] *)) {
  margin-top: 0;
}
.prose :where(h2 + *):not(:where([class~=not-prose] *)),
.mceContentBody :where(h2 + *):not(:where([class~=not-prose] *)) {
  margin-top: 0;
}
.prose :where(h3 + *):not(:where([class~=not-prose] *)),
.mceContentBody :where(h3 + *):not(:where([class~=not-prose] *)) {
  margin-top: 0;
}
.prose :where(h4 + *):not(:where([class~=not-prose] *)),
.mceContentBody :where(h4 + *):not(:where([class~=not-prose] *)) {
  margin-top: 0;
}
.prose :where(thead th:first-child):not(:where([class~=not-prose] *)),
.mceContentBody :where(thead th:first-child):not(:where([class~=not-prose] *)) {
  padding-left: 0;
}
.prose :where(thead th:last-child):not(:where([class~=not-prose] *)),
.mceContentBody :where(thead th:last-child):not(:where([class~=not-prose] *)) {
  padding-right: 0;
}
.prose :where(tbody td, tfoot td):not(:where([class~=not-prose] *)),
.mceContentBody :where(tbody td, tfoot td):not(:where([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] *)),
.mceContentBody :where(tbody td:first-child, tfoot td:first-child):not(:where([class~=not-prose] *)) {
  padding-left: 0;
}
.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~=not-prose] *)),
.mceContentBody :where(tbody td:last-child, tfoot td:last-child):not(:where([class~=not-prose] *)) {
  padding-right: 0;
}
.prose :where(*:first-child):not(:where([class~=not-prose] *)),
.mceContentBody :where(*:first-child):not(:where([class~=not-prose] *)) {
  margin-top: 0;
}
.prose :where(*:last-child):not(:where([class~=not-prose] *)),
.mceContentBody :where(*:last-child):not(:where([class~=not-prose] *)) {
  margin-bottom: 0;
}

/*
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 */
  /* 2 */
}

/*
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.
7. Set the font size so 1rem is 10px 
*/
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 */
  font-size: 62.5%;
  /* 7 */
}

/*
1. Remove the margin in all browsers.
*/
body {
  margin: 0;
  font-size: var(--al-body-font-size-0, 1.6rem);
  line-height: var(--al-line-height-normal, 1.5);
  color: var(--base-color, var(--al-color-base-950));
}

/*
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;
  color: inherit;
  border-top-width: 1px;
}

/*
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;
  border-color: inherit;
  border-collapse: collapse;
}

/*
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;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

/*
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;
  background-color: transparent;
  background-image: none;
}

/*
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;
  outline-offset: -2px;
}

/*
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;
  font: inherit;
}

/*
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;
  border: 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%;
  max-height: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}

[type=text],
input:where(:not([type])),
[type=email],
[type=url],
[type=password],
[type=number],
[type=date],
[type=datetime-local],
[type=month],
[type=search],
[type=tel],
[type=time],
[type=week],
[multiple],
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--al-input-background-color, var(--white));
  border-color: var(--al-input-border-color, var(--al-color-border));
  border-width: 1px;
  border-style: solid;
  border-radius: 0px;
  padding-top: 0.5em;
  padding-right: 0.75em;
  padding-bottom: 0.5em;
  padding-left: 0.75em;
  font-size: 1em;
  line-height: 1.5;
  --al-shadow: 0 0 var(--al-color-black);
}
[type=text]:focus,
input:where(:not([type])):focus,
[type=email]:focus,
[type=url]:focus,
[type=password]:focus,
[type=number]:focus,
[type=date]:focus,
[type=datetime-local]:focus,
[type=month]:focus,
[type=search]:focus,
[type=tel]:focus,
[type=time]:focus,
[type=week]:focus,
[multiple]:focus,
textarea:focus,
select:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --al-ring-offset-width: 2px;
  --al-ring-offset-color: #fff;
  --al-ring-color: var(--border-color);
  --al-ring-offset-shadow: 0 0 0 var(--al-ring-offset-width) var(--al-ring-offset-color);
  --al-ring-shadow: 0 0 0 calc(1px + var(--al-ring-offset-width)) var(--al-ring-color);
  box-shadow: var(--al-ring-offset-shadow), var(--al-ring-shadow), var(--al-shadow);
  border-color: var(--al-color-border-focus);
}

::-moz-placeholder,
textarea::-moz-placeholder,
input::placeholder,
textarea::placeholde {
  color: var(--al-color-base-300);
  opacity: 1;
}

::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

::-webkit-date-and-time-value {
  min-height: 1.5em;
}

::-webkit-datetime-edit,
::-webkit-datetime-edit-year-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute-field,
::-webkit-datetime-edit-second-field,
::-webkit-datetime-edit-millisecond-field,
::-webkit-datetime-edit-meridiem-field {
  padding-top: 0;
  padding-bottom: 0;
}

select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
  width: 100%;
}

[multiple],
[size]:where(select:not([size="1"])) {
  background-image: initial;
  background-position: initial;
  background-repeat: unset;
  background-size: initial;
  padding-right: 0.75em;
  -webkit-print-color-adjust: unset;
  print-color-adjust: unset;
}

[type=checkbox],
[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  flex-shrink: 0;
  height: 1em;
  width: 1em;
  color: var(--al-color-base-800);
  background-color: #fff;
  border-color: var(--al-input-border-color, var(--al-color-border));
  border-width: 1px;
  border-style: solid;
  --al-shadow: 0 0 #0000;
}
[type=checkbox]:focus,
[type=radio]:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --al-ring-offset-width: 2px;
  --al-ring-offset-color: #fff;
  --al-ring-color: var(--al-color-base-800);
  --al-ring-offset-shadow: var(--al-ring-inset) 0 0 0 var(--al-ring-offset-width) var(--al-ring-offset-color);
  --al-ring-shadow: var(--al-ring-inset) 0 0 0 calc(2px + var(--al-ring-offset-width)) var(--al-ring-color);
  box-shadow: var(--al-ring-offset-shadow), var(--al-ring-shadow), var(--al-shadow);
}
[type=checkbox]:checked,
[type=radio]:checked {
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

[type=checkbox] {
  border-radius: 0px;
}

[type=radio] {
  border-radius: 100%;
}

[type=checkbox]:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}

[type=radio]:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}

[type=checkbox]:checked:hover,
[type=checkbox]:checked:focus,
[type=radio]:checked:hover,
[type=radio]:checked:focus {
  border-color: transparent;
  background-color: currentColor;
}

[type=checkbox]:indeterminate {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
[type=checkbox]:indeterminate:hover, [type=checkbox]:indeterminate:focus {
  border-color: transparent;
  background-color: currentColor;
}

[type=file] {
  background: unset;
  border-color: inherit;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-size: unset;
  line-height: inherit;
}
[type=file]:focus {
  outline: 1px solid ButtonText;
  outline: 1px auto -webkit-focus-ring-color;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: var(--al-line-height-snug);
  color: var(--al-color-text-primary);
}

blockquote {
  border: initial;
  background: initial;
  padding: initial;
  overflow: initial;
  line-height: inherit;
}

.price {
  white-space: nowrap;
}
@media only screen and (max-width: 639px) {
  .price .sale_label {
    display: block;
  }
}
@media only screen and (max-width: 459px) {
  .price strike {
    display: block;
  }
}

.caption {
  margin-top: var(--al-space-xs);
}

.description {
  display: block;
}

.subheading,
.related_items_panel_heading {
  display: block;
  color: var(--al-color-text-primary);
  margin-bottom: var(--al-panel-header-mb, var(--al-space-2xl));
}

.mceContentBody {
  padding: 1em;
}

/* classes defined in the 'Styles' menu in tinymce (see archimedes-editscreens-additional.js) */
.cms_strike {
  text-decoration: line-through;
}

.cms_textremoved {
  color: var(--al-color-base-400, #aaaaaa);
  text-decoration: line-through;
}

.cms_code {
  font-family: monospace;
  font-size: 0.8em;
}

.cms_red {
  color: #ea0000;
}

.cms_gray {
  color: var(--al-color-text-body);
}

.cms_black {
  color: var(--al-color-text-primary);
}

.embedded_img.right {
  padding: 0 0 var(--al-space-l) var(--al-space-2xl);
  float: right;
}

.embedded_img.left {
  padding: 0 var(--al-space-2xl) var(--al-space-l) 0;
  float: left;
}

:root {
  --al-container-width: 160rem;
  --al-container-px: var(--al-space-2xl);
}
@media only screen and (max-width: 639px) {
  :root {
    --al-artist-detail-navigation-arrows-width: var(--al-space-l);
  }
}

[type=text],
[type=email] {
  --al-input-border-color: var(--al-color-black);
  padding-left: 0;
  border: none;
  border-bottom: 1px solid var(--al-input-border-color);
}

input::placeholder {
  color: var(--al-color-base-700);
}

body {
  font-family: "Univers", sans-serif;
  line-height: var(--al-line-height-normal);
  letter-spacing: var(--al-letter-spacing-normal);
  font-weight: normal;
}

:is(h1, h2, h3, h4, h5, h6) {
  font-size: var(--al-body-font-size-0);
  line-height: var(--al-line-height-normal);
  font-weight: bold;
}

strong {
  font-weight: bold;
}

.caption {
  text-align: center;
  max-width: 65ch;
  margin: 0 auto;
}

.prose {
  --al-prose-body-color: var(--al-color-black);
}

/*# sourceMappingURL=base.css.map */
