@charset "UTF-8";
@font-face {
  font-family: "Figtree";
  src: url("../fonts/ofl/figtree/Figtree-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Figtree";
  src: url("../fonts/ofl/figtree/Figtree-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 900;
  font-style: italic;
  font-display: swap;
}
/* $color-zinc-950: #09090b; */
/* $font-size-text-lg: 1.125rem; // 18px
$line-height-text-lg: 1.75rem; // 28px*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-family: "Figtree", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  box-sizing: border-box;
}
.btn svg {
  width: 1.25rem;
  height: 1.25rem;
}
.btn .btn-icon-left,
.btn .btn-icon-right,
.btn .template-cta-button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
.btn.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  border-radius: 0.25rem;
}
.btn.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.0625rem;
  line-height: 1.65rem;
}

.btn-icon {
  padding: 0;
  width: 32px;
  height: 32px;
}
.btn-icon.btn-sm {
  padding: 0.75rem;
  width: 24px;
  height: 24px;
}
.btn-icon.btn-lg {
  padding: 0;
  width: 40px;
  height: 40px;
}

.btn-primary {
  background: var(--surface-button-primary, #4f46e5);
  color: var(--text-button-primary, #ffffff);
  border-radius: 0.75rem;
  border: 1px solid var(--border-button-primary, #4f46e5);
  transition: box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}
.btn-primary:hover:not(:disabled) {
  background: var(--surface-button-primary-hover, #4338ca);
  border-color: var(--border-button-primary-hover, #4338ca);
  box-shadow: 0 0 12px color-mix(in srgb, var(--border-button-primary, #4f46e5) 25%, transparent);
}
.btn-primary:disabled {
  background: var(--surface-button-disabled, #e4e4e7);
  color: var(--text-button-disabled, #a1a1aa);
  border-color: var(--border-button-disabled, #e4e4e7);
  box-shadow: none;
}
.btn-primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--border-button-primary, #4f46e5) 35%, transparent);
}

.btn-secondary {
  background: var(--surface-button-secondary, #f4f4f5);
  color: var(--text-button-secondary, #18181b);
  border: 1px solid var(--border-button-secondary, #e4e4e7);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.btn-secondary:hover:not(:disabled) {
  background: var(--surface-button-secondary-hover, #e4e4e7);
  border-color: var(--border-button-secondary, #e4e4e7);
}
.btn-secondary:disabled {
  background: var(--surface-button-disabled, #e4e4e7);
  color: var(--text-button-disabled, #a1a1aa);
  border-color: var(--border-button-disabled, #e4e4e7);
  opacity: 0.7;
}
.btn-secondary:focus-visible {
  outline: 2px solid var(--border-button-primary, #4f46e5);
  outline-offset: 2px;
}

.btn-ghost {
  background: var(--surface-body, #ffffff);
  color: var(--text-primary, #18181b);
  border: 1px solid var(--border-muted, #e4e4e7);
}
.btn-ghost:hover:not(:disabled) {
  border-color: var(--border-strong, #d4d4d8);
}
.btn-ghost:disabled {
  color: var(--text-muted, #a1a1aa);
  border-color: var(--border-subtle, #f4f4f5);
  opacity: 0.5;
}
.btn-ghost:focus-visible {
  outline: 2px solid #4f46e5;
  outline-offset: 2px;
}

[data-theme=dark] .btn-ghost {
  background: var(--surface-body, #ffffff);
  color: var(--text-primary, #18181b);
  border-color: var(--border-subtle, #f4f4f5);
}
[data-theme=dark] .btn-ghost:hover:not(:disabled) {
  border-color: var(--border-strong, #d4d4d8);
}
[data-theme=dark] .btn-ghost:disabled {
  color: var(--text-muted, #a1a1aa);
  border-color: var(--border-subtle, #f4f4f5);
  opacity: 0.5;
}
[data-theme=dark] .btn-ghost:focus-visible {
  outline-color: #818cf8;
}

.btn-destructive {
  background: #dc2626;
  color: #ffffff;
}
.btn-destructive:hover:not(:disabled) {
  background: #b91c1c;
}
.btn-destructive:disabled {
  background: #e4e4e7;
  color: #a1a1aa;
}
.btn-destructive:focus-visible {
  outline: 2px solid #dc2626;
  outline-offset: 2px;
}

[data-theme=dark] .btn-destructive {
  background: #ef4444;
}
[data-theme=dark] .btn-destructive:hover:not(:disabled) {
  background: #f87171;
}
[data-theme=dark] .btn-destructive:disabled {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.3);
}
[data-theme=dark] .btn-destructive:focus-visible {
  outline-color: #f87171;
}

.btn-success {
  background: #16a34a;
  color: #ffffff;
}
.btn-success:hover:not(:disabled) {
  background: #15803d;
}
.btn-success:disabled {
  background: #e4e4e7;
  color: #a1a1aa;
}
.btn-success:focus-visible {
  outline: 2px solid #16a34a;
  outline-offset: 2px;
}

[data-theme=dark] .btn-success {
  background: #22c55e;
}
[data-theme=dark] .btn-success:hover:not(:disabled) {
  background: #4ade80;
}
[data-theme=dark] .btn-success:disabled {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.3);
}
[data-theme=dark] .btn-success:focus-visible {
  outline-color: #4ade80;
}

.two-column .site-main .entry-content p a,
.two-column .site-main .entry-content li a,
.three-column .site-main .entry-content p a,
.three-column .site-main .entry-content li a,
.two-column .site-main .entry-content .wp-block-table td a,
.three-column .site-main .entry-content .wp-block-table td a,
figcaption a {
  color: var(--text-primary, #18181b);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 26%;
  text-decoration-color: #3730a3;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.1s ease;
  cursor: pointer;
}
.two-column .site-main .entry-content p a:hover,
.two-column .site-main .entry-content li a:hover,
.three-column .site-main .entry-content p a:hover,
.three-column .site-main .entry-content li a:hover,
.two-column .site-main .entry-content .wp-block-table td a:hover,
.three-column .site-main .entry-content .wp-block-table td a:hover,
figcaption a:hover {
  /*text-decoration-color: color-text(primary);*/
  text-decoration-thickness: 2px;
}
[data-theme=dark] .two-column .site-main .entry-content p a,
[data-theme=dark] .two-column .site-main .entry-content li a,
[data-theme=dark] .three-column .site-main .entry-content p a,
[data-theme=dark] .three-column .site-main .entry-content li a,
[data-theme=dark] .two-column .site-main .entry-content .wp-block-table td a,
[data-theme=dark] .three-column .site-main .entry-content .wp-block-table td a,
[data-theme=dark] figcaption a {
  text-decoration-color: var(--text-link, #4f46e5);
}
[data-theme=dark] .two-column .site-main .entry-content p a:hover,
[data-theme=dark] .two-column .site-main .entry-content li a:hover,
[data-theme=dark] .three-column .site-main .entry-content p a:hover,
[data-theme=dark] .three-column .site-main .entry-content li a:hover,
[data-theme=dark] .two-column .site-main .entry-content .wp-block-table td a:hover,
[data-theme=dark] .three-column .site-main .entry-content .wp-block-table td a:hover,
[data-theme=dark] figcaption a:hover {
  /*color: color-text(link);*/
  text-decoration-thickness: 2px;
}

.two-column .site-main .entry-content p a[href^=http]::after,
.two-column .site-main .entry-content li a[href^=http]::after,
.three-column .site-main .entry-content p a[href^=http]::after,
.three-column .site-main .entry-content li a[href^=http]::after,
.two-column .site-main .entry-content .wp-block-table td a[href^=http]::after,
.three-column .site-main .entry-content .wp-block-table td a[href^=http]::after,
.two-column .site-main .entry-content p a[target=_blank]::after,
.two-column .site-main .entry-content li a[target=_blank]::after,
.three-column .site-main .entry-content p a[target=_blank]::after,
.three-column .site-main .entry-content li a[target=_blank]::after,
.two-column .site-main .entry-content .wp-block-table td a[target=_blank]::after,
.three-column .site-main .entry-content .wp-block-table td a[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 0.75em;
  height: 0.75em;
  margin-left: 0.15em;
  background-color: var(--text-primary, #18181b);
  mask-image: var(--tabler-icon-external-link);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: var(--tabler-icon-external-link);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  transition: background-color 0.1s ease;
  vertical-align: baseline;
}
[data-theme=dark] .two-column .site-main .entry-content p a[href^=http]::after,
[data-theme=dark] .two-column .site-main .entry-content li a[href^=http]::after,
[data-theme=dark] .three-column .site-main .entry-content p a[href^=http]::after,
[data-theme=dark] .three-column .site-main .entry-content li a[href^=http]::after,
[data-theme=dark] .two-column .site-main .entry-content .wp-block-table td a[href^=http]::after,
[data-theme=dark] .three-column .site-main .entry-content .wp-block-table td a[href^=http]::after,
[data-theme=dark] .two-column .site-main .entry-content p a[target=_blank]::after,
[data-theme=dark] .two-column .site-main .entry-content li a[target=_blank]::after,
[data-theme=dark] .three-column .site-main .entry-content p a[target=_blank]::after,
[data-theme=dark] .three-column .site-main .entry-content li a[target=_blank]::after,
[data-theme=dark] .two-column .site-main .entry-content .wp-block-table td a[target=_blank]::after,
[data-theme=dark] .three-column .site-main .entry-content .wp-block-table td a[target=_blank]::after {
  background-color: var(--text-primary, #18181b);
}
.two-column .site-main .entry-content p a[href^=http],
.two-column .site-main .entry-content li a[href^=http],
.three-column .site-main .entry-content p a[href^=http],
.three-column .site-main .entry-content li a[href^=http],
.two-column .site-main .entry-content .wp-block-table td a[href^=http],
.three-column .site-main .entry-content .wp-block-table td a[href^=http],
.two-column .site-main .entry-content p a[target=_blank],
.two-column .site-main .entry-content li a[target=_blank],
.three-column .site-main .entry-content p a[target=_blank],
.three-column .site-main .entry-content li a[target=_blank],
.two-column .site-main .entry-content .wp-block-table td a[target=_blank],
.three-column .site-main .entry-content .wp-block-table td a[target=_blank] {
  /*&:hover::after {
      background-color: color-text(primary);

      [data-theme="dark"] & {
          background-color: color-text(link);
      }
  }*/
}

.two-column .site-main .entry-content p a[href*="flylighter.com"]:not([target=_blank])::after,
.two-column .site-main .entry-content li a[href*="flylighter.com"]:not([target=_blank])::after,
.three-column .site-main .entry-content p a[href*="flylighter.com"]:not([target=_blank])::after,
.three-column .site-main .entry-content li a[href*="flylighter.com"]:not([target=_blank])::after,
.two-column .site-main .entry-content .wp-block-table td a[href*="flylighter.com"]:not([target=_blank])::after,
.three-column .site-main .entry-content .wp-block-table td a[href*="flylighter.com"]:not([target=_blank])::after,
.two-column .site-main .entry-content p a[href*=localhost]:not([target=_blank])::after,
.two-column .site-main .entry-content li a[href*=localhost]:not([target=_blank])::after,
.three-column .site-main .entry-content p a[href*=localhost]:not([target=_blank])::after,
.three-column .site-main .entry-content li a[href*=localhost]:not([target=_blank])::after,
.two-column .site-main .entry-content .wp-block-table td a[href*=localhost]:not([target=_blank])::after,
.three-column .site-main .entry-content .wp-block-table td a[href*=localhost]:not([target=_blank])::after {
  content: none;
}

a.heading-link {
  opacity: 0;
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-left: 0.35rem;
  margin-top: 0.2rem;
  z-index: 2;
  pointer-events: all;
  background: var(--surface-muted, #fafafa);
  border: 1px solid var(--border-muted, #e4e4e7);
  border-radius: 0.25rem;
  color: var(--text-secondary, #52525b);
  font-size: 0.75rem;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
a.heading-link i {
  pointer-events: none;
  color: inherit;
  font-size: 0.75rem;
}
a.heading-link:hover, a.heading-link:focus {
  background: var(--surface-elevated, #f4f4f5);
  border-color: var(--border-strong, #d4d4d8);
  color: var(--text-primary, #18181b);
}
a.heading-link:active {
  transform: translateY(0);
}
a.heading-link:focus-visible {
  outline: 2px solid rgba(59, 130, 246, 0.55);
  outline-offset: 2px;
}
a.heading-link.copied {
  background: #f0fdf4;
  border-color: #22c55e;
  color: #16a34a;
}
a.heading-link.copied:hover {
  background: #dcfce7;
  border-color: #16a34a;
}

[data-theme=dark] a.heading-link {
  box-shadow: 0 18px 36px rgba(17, 24, 39, 0.55);
}
[data-theme=dark] a.heading-link:focus-visible {
  outline-color: rgba(147, 197, 253, 0.7);
}
[data-theme=dark] a.heading-link.copied {
  background: rgba(74, 222, 128, 0.2);
  border-color: rgba(74, 222, 128, 0.45);
  color: #bbf7d0;
}
[data-theme=dark] a.heading-link.copied:hover {
  background: rgba(74, 222, 128, 0.25);
  border-color: rgba(74, 222, 128, 0.55);
}

h1:hover a.heading-link,
h2:hover a.heading-link,
h3:hover a.heading-link,
h4:hover a.heading-link,
h5:hover a.heading-link,
h6:hover a.heading-link {
  opacity: 1;
}

#doc-author-box a {
  color: var(--text-primary, #18181b);
  text-decoration: underline;
  text-underline-offset: 26%;
  text-decoration-color: var(--text-muted, #a1a1aa);
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.1s ease;
  cursor: pointer;
}
#doc-author-box a:hover {
  text-decoration-color: var(--text-primary, #18181b);
}

#doc-author-box a[href^=http]::after,
#doc-author-box a[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 0.75em;
  height: 0.75em;
  margin-left: 0.15em;
  background-color: var(--text-muted, #a1a1aa);
  mask-image: var(--tabler-icon-external-link);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: var(--tabler-icon-external-link);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  transition: background-color 0.1s ease;
  vertical-align: baseline;
}
#doc-author-box a[href^=http]:hover::after,
#doc-author-box a[target=_blank]:hover::after {
  background-color: var(--text-primary, #18181b);
}

#doc-author-box a[href*="flylighter.com"]:not([target=_blank])::after,
#doc-author-box a[href*=localhost]:not([target=_blank])::after {
  content: none;
}

.zp-Zotpress-InTextBib,
.zp-Zotpress-InTextBib a {
  color: var(--text-secondary, #52525b);
  font-size: 0.9em;
}

.zp-Zotpress-InTextBib a {
  text-decoration: underline;
  font-size: 1em;
}

/*!
Theme Name: Flylighter Docs
Theme URI: https://docs.flylighter.com/
Author: Flylighter
Author URI: https://flylighter.com/
Description: Documentation theme for Flylighter.
Version: 1.12.7

Based on Underscores http://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  overflow-x: hidden;
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, 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;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-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.
 */
[type=search]::-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 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* taken from underscores theme (http://underscores.me/) defaults
 * text meant only for screen readers
 */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f3f4f6;
  border-radius: 0.25rem;
  box-shadow: 0 0 2px 2px rgba(17, 24, 39, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #2563eb;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

html {
  min-width: 320px;
  scrollbar-gutter: stable;
  --banner-height: calc((18px * 1.7) + (18px * .4 * 2));
}

:root {
  --surface-body: #ffffff;
  --surface-body-transparent: color-mix(in srgb, #ffffff 50%, transparent);
  --surface-body-transparent-hover: color-mix(in srgb, #ffffff 85%, transparent);
  --surface-muted: #fafafa;
  --surface-elevated: #f4f4f5;
  --surface-overlay: rgba(24, 24, 27, 0.6);
  --surface-button-primary: #4f46e5;
  --surface-button-primary-hover: #4338ca;
  --surface-button-secondary: #f4f4f5;
  --surface-button-secondary-hover: #e4e4e7;
  --surface-button-disabled: #e4e4e7;
  --text-primary: #18181b;
  --text-body-text: #3f3f46;
  --text-secondary: #52525b;
  --text-muted: #a1a1aa;
  --text-inverted: #ffffff;
  --text-accent: #4338ca;
  --text-link: #4f46e5;
  --text-button-primary: #ffffff;
  --text-button-secondary: #18181b;
  --text-button-disabled: #a1a1aa;
  --text-icon-primary: #52525b;
  --text-icon-primary-hover: #3f3f46;
  --text-icon-secondary: #e4e4e7;
  --text-icon-secondary-hover: #d4d4d8;
  --border-faint: rgba(24, 24, 27, 0.05);
  --border-subtle: #f4f4f5;
  --border-muted: #e4e4e7;
  --border-strong: #d4d4d8;
  --border-button-primary: #4f46e5;
  --border-button-primary-hover: #4338ca;
  --border-button-secondary: #e4e4e7;
  --border-button-secondary-hover: #d4d4d8;
  --border-button-disabled: #e4e4e7;
  --border-image-dark: rgba(255, 255, 255, 0.08);
}

[data-theme=dark] {
  --surface-body: #0f0f12;
  --surface-body-transparent: color-mix(in srgb, #0f0f12 50%, transparent);
  --surface-body-transparent-hover: color-mix(in srgb, #0f0f12 85%, transparent);
  --surface-muted: rgb(27, 27, 29.85);
  --surface-elevated: rgb(36.6, 36.6, 39.33);
  --surface-overlay: rgba(15, 15, 18, 0.7);
  --surface-button-primary: #4f46e5;
  --surface-button-primary-hover: #6366f1;
  --surface-button-secondary: rgba(255, 255, 255, 0.1);
  --surface-button-secondary-hover: rgba(255, 255, 255, 0.16);
  --surface-button-disabled: rgba(255, 255, 255, 0.08);
  --text-primary: #f4f4f5;
  --text-body-text: #d4d4d8;
  --text-secondary: rgba(255, 255, 255, 0.72);
  --text-muted: rgba(255, 255, 255, 0.55);
  --text-inverted: #18181b;
  --text-accent: #818cf8;
  --text-link: #818cf8;
  --text-link-hover: #6366f1;
  --text-button-primary: #ffffff;
  --text-button-secondary: #fafafa;
  --text-button-disabled: rgba(255, 255, 255, 0.3);
  --text-icon-primary: #d4d4d8;
  --text-icon-primary-hover: #fafafa;
  --text-icon-secondary: #e4e4e7;
  --text-icon-secondary-hover: #d4d4d8;
  --border-faint: rgba(255, 255, 255, 0.05);
  --border-subtle: rgba(255, 255, 255, 0.12);
  --border-muted: rgba(255, 255, 255, 0.16);
  --border-strong: rgba(255, 255, 255, 0.35);
  --border-button-primary: #6366f1;
  --border-button-primary-hover: #818cf8;
  --border-button-secondary: rgba(255, 255, 255, 0.24);
  --border-button-disabled: rgba(255, 255, 255, 0.16);
  --border-image-dark: rgba(255, 255, 255, 0.08);
}

body {
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.7;
  font-family: "Figtree", sans-serif;
  scrollbar-gutter: stable;
  color: var(--text-primary, #18181b);
  background-color: var(--surface-body, #ffffff);
}

html body.one-column .entry-content h1, html body.one-column .entry-content h2, html body.one-column .entry-content h3, html body.two-column .entry-content h1, html body.two-column .entry-content h2, html body.two-column .entry-content h3, html body.three-column .entry-content h1, html body.three-column .entry-content h2, html body.three-column .entry-content h3 {
  font-family: "Figtree", sans-serif;
  margin: 1em 0;
  text-align: left;
  font-weight: bold;
  line-height: 1.7;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
html body.one-column .entry-content h4, html body.one-column .entry-content h5, html body.one-column .entry-content h6, html body.two-column .entry-content h4, html body.two-column .entry-content h5, html body.two-column .entry-content h6, html body.three-column .entry-content h4, html body.three-column .entry-content h5, html body.three-column .entry-content h6 {
  font-family: "Figtree", sans-serif;
  font-weight: bold;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
html body.one-column .entry-content h2, html body.two-column .entry-content h2, html body.three-column .entry-content h2 {
  font-size: 1.5em;
}
html body.one-column .entry-content h3, html body.two-column .entry-content h3, html body.three-column .entry-content h3 {
  font-size: 1.2em;
}

#wpadminbar {
  position: absolute;
  z-index: 150;
}

html body .MathJax {
  font-size: 1.1em;
}

html body .entry-content > .MathJax {
  display: block !important;
  text-align: center;
}

html body .entry-content .wp-block-pb-accordion-item .MathJax {
  padding: 0.15em 0.3em;
}

span.data-type {
  color: #ffffff;
  background: #111827;
  padding: 0 0.3em;
  font-size: 0.8em;
  border-radius: 5px;
  margin: 0.2em;
  font-family: "Figtree", sans-serif;
  display: inline-block;
}

img {
  max-width: 100%;
}

.entry-content > ul, .entry-content > ol, .entry-content > figure, .entry-content > .elementor:not(:first-child), .entry-content > .wp-block-image, .entry-content > div:not(.elementor), .entry-content > .MathJax {
  margin-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  .entry-content figure.wp-block-table {
    margin-bottom: 4rem;
  }
}
.entry-content code {
  border-radius: 5px;
  padding: 0 0.3em;
}
.entry-content .elementor-3488 .elementor-element.elementor-element-7a47463c > .elementor-container {
  max-width: none;
}
.entry-content .lasso-display:has(.lasso-badge) {
  margin-top: 45px;
}
.entry-content .lasso-grid-wrap .lasso-display:has(.lasso-badge) {
  margin-top: 0;
}

.lasso-badge {
  z-index: 50 !important;
}

.lasso-list > li {
  margin-left: 30px !important;
}

.wp-block-quote {
  margin-left: 20px;
  margin-right: 20px;
}

/* Code Block Styles - Using design tokens */
.wp-block-code {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface-elevated, #f4f4f5);
  border: 1px solid var(--border-muted, #e4e4e7) !important;
  border-radius: 0.5rem;
  padding: 0;
  margin: 0.75rem 0 2rem 0;
  height: fit-content;
  max-height: 590px;
  overflow: visible;
}
@media screen and (max-width: 1024px) {
  .wp-block-code {
    max-height: 390px;
  }
}
.wp-block-code.is-expanded {
  max-height: none;
}
.wp-block-code.is-expanded > span {
  max-height: none;
}
.wp-block-code .code-block-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.25rem 0.75rem;
  background: var(--surface-elevated, #f4f4f5);
  border-bottom: 1px solid var(--border-muted, #e4e4e7);
  border-radius: 0.5rem 0.5rem 0 0;
  flex-shrink: 0;
  min-height: 40px;
}
.wp-block-code .code-block-top-bar .code-block-language {
  font-family: -apple-system, "system-ui", "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
  font-size: 0.75rem;
  color: var(--text-secondary, #52525b);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.wp-block-code .code-block-top-bar .code-block-buttons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.wp-block-code > span {
  display: block;
  overflow-y: auto;
  overflow-x: auto;
  max-height: 550px;
  padding: 0.75rem 0.25rem;
}
.wp-block-code code.hljs.shcb-wrap-lines {
  overflow-wrap: anywhere;
}

.code-block-copy-btn,
.code-block-expand-btn,
.code-block-wrap-btn {
  position: relative;
  padding: 0.25rem !important;
}
.code-block-copy-btn svg,
.code-block-expand-btn svg,
.code-block-wrap-btn svg {
  width: 12px;
  height: 12px;
  stroke-width: 2;
  display: block;
}
.code-block-copy-btn::after,
.code-block-expand-btn::after,
.code-block-wrap-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  /* bottom: -40px; */
  transform: translateX(-50%);
  /* transform: translateX(-50%) translateY(4px) !important; */
  background: #111827;
  color: #ffffff;
  padding: 6px 10px;
  border-radius: 0.25rem;
  font-family: "Figtree", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  white-space: nowrap;
  pointer-events: none;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.code-block-copy-btn::before,
.code-block-expand-btn::before,
.code-block-wrap-btn::before {
  content: "";
  position: absolute;
  top: calc(100% + 3px);
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-bottom-color: #111827;
  pointer-events: none;
  z-index: 10001;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.code-block-copy-btn:hover::after, .code-block-copy-btn:hover::before,
.code-block-expand-btn:hover::after,
.code-block-expand-btn:hover::before,
.code-block-wrap-btn:hover::after,
.code-block-wrap-btn:hover::before {
  opacity: 1;
}
html[data-theme=dark] .code-block-copy-btn::after,
html[data-theme=dark] .code-block-expand-btn::after,
html[data-theme=dark] .code-block-wrap-btn::after {
  background: #374151;
}
html[data-theme=dark] .code-block-copy-btn::before,
html[data-theme=dark] .code-block-expand-btn::before,
html[data-theme=dark] .code-block-wrap-btn::before {
  border-bottom-color: #374151;
}

.code-block-wrap-btn::after {
  left: auto;
  right: 0;
  transform: none;
}
.code-block-wrap-btn::before {
  left: auto;
  right: 10px;
  transform: none;
}

.code-block-copy-btn.copied::after {
  content: "Copied!";
  background: #22c55e;
}
.code-block-copy-btn.copied::before {
  border-bottom-color: #22c55e;
}
html[data-theme=dark] .code-block-copy-btn.copied::after {
  background: #16a34a;
}
html[data-theme=dark] .code-block-copy-btn.copied::before {
  border-bottom-color: #16a34a;
}

.code-block-expand-btn.expanded::after {
  content: "Expanded!";
  background: #22c55e;
}
.code-block-expand-btn.expanded::before {
  border-bottom-color: #22c55e;
}
.code-block-expand-btn.collapsed::after {
  content: "Collapsed!";
  background: #22c55e;
}
.code-block-expand-btn.collapsed::before {
  border-bottom-color: #22c55e;
}
html[data-theme=dark] .code-block-expand-btn.expanded::after, html[data-theme=dark] .code-block-expand-btn.collapsed::after {
  background: #16a34a;
}
html[data-theme=dark] .code-block-expand-btn.expanded::before, html[data-theme=dark] .code-block-expand-btn.collapsed::before {
  border-bottom-color: #16a34a;
}

.code-block-wrap-btn.wrapped::after {
  content: "Wrapped!";
  background: #22c55e;
}
.code-block-wrap-btn.wrapped::before {
  border-bottom-color: #22c55e;
}
.code-block-wrap-btn.unwrapped::after {
  content: "Unwrapped!";
  background: #22c55e;
}
.code-block-wrap-btn.unwrapped::before {
  border-bottom-color: #22c55e;
}
html[data-theme=dark] .code-block-wrap-btn.wrapped::after, html[data-theme=dark] .code-block-wrap-btn.unwrapped::after {
  background: #16a34a;
}
html[data-theme=dark] .code-block-wrap-btn.wrapped::before, html[data-theme=dark] .code-block-wrap-btn.unwrapped::before {
  border-bottom-color: #16a34a;
}

.hljs {
  background: transparent !important;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 1rem 0.5rem !important;
}
@media screen and (max-width: 1024px) {
  .hljs {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
.hljs.shcb-line-numbers .shcb-loc::before {
  border-right: 1px solid var(--border-muted, #e4e4e7) !important;
  color: var(--text-muted, #a1a1aa);
  padding-left: 0 !important;
  padding-right: 0.75rem !important;
}
html[data-theme=dark] .hljs.shcb-line-numbers .shcb-loc:hover {
  background-color: var(--surface-elevated, #f4f4f5);
}
html[data-theme=light] .hljs.shcb-line-numbers .shcb-loc:hover {
  background-color: #e5e7eb;
}
.hljs.shcb-line-numbers .shcb-loc:hover::before {
  border-right: 1px solid var(--border-muted, #e4e4e7) !important;
  color: var(--text-secondary, #52525b);
}
.hljs > mark.shcb-loc {
  background-color: rgba(var(--text-accent, #4338ca), 0.15) !important;
}
[data-theme=dark] .hljs > mark.shcb-loc:hover {
  background-color: var(--surface-elevated, #f4f4f5) !important;
}
[data-theme=light] .hljs > mark.shcb-loc:hover {
  background-color: #e5e7eb !important;
}
.hljs:has(mark) > span {
  opacity: 0.5;
  transition: opacity 0.2s ease;
}
.hljs:has(mark) > span:hover {
  opacity: 0.9;
}

/* Inline Code Styles */
li > code, p > code {
  word-break: break-all;
}

/* Accordion Styles - Integrated from Elementor CSS */
div.wp-block-pb-accordion-item {
  display: grid;
  grid-template-columns: 5fr 95fr;
  scroll-margin-top: 5em;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 20px 30px 20px 30px;
  margin-bottom: 1.5em;
  transition: none;
}
div.wp-block-pb-accordion-item:hover {
  border-color: #d1d5db;
}
div.wp-block-pb-accordion-item.is-open {
  padding: 25px 30px 5px 30px;
}
div.wp-block-pb-accordion-item > button::before {
  content: "";
}
div.wp-block-pb-accordion-item div.c-accordion__content {
  margin-top: 0.8em;
  width: 100%;
  grid-column: 1/3;
  transition: none !important;
  animation: none !important;
}
div.wp-block-pb-accordion-item .c-accordion__item {
  transition: none !important;
  animation: none !important;
}

.c-accordion__item,
.c-accordion__content,
.c-accordion__panel,
.wp-block-pb-accordion-item .c-accordion__item,
.wp-block-pb-accordion-item .c-accordion__content,
.wp-block-pb-accordion-item .c-accordion__panel {
  transition: none !important;
  animation: none !important;
}

.is-open > .c-accordion__title {
  margin-bottom: 0.8em;
  transition: none;
}

button.c-accordion__title {
  display: flex;
  white-space: initial;
  position: relative;
  transition: none;
}
button.c-accordion__title strong {
  padding: 0 0.5em;
}
button.c-accordion__title::before {
  align-self: center;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f05a";
  padding-right: 10px;
}
button.c-accordion__title::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f191";
  color: #374151;
  transition: none;
}
button.c-accordion__title:focus {
  outline: none;
}

.is-open > button.c-accordion__title::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f150";
  color: #374151;
}

/* Accordion heading styling */
.c-accordion__item h3.c-accordion__title {
  margin-top: 0px;
  margin-bottom: 0px;
}
.c-accordion__item h3.c-accordion__title::before {
  display: none;
}

/* Accordion links */
a[class^=accordion-link] {
  position: relative;
  color: #4b5563 !important;
}

a[class^=accordion-link]:hover {
  color: #111827 !important;
}

a[class^=accordion-link]::after {
  background-color: #111827;
  border-radius: 5px;
  color: #ffffff;
  content: "Section Permalink";
  transition: opacity 0.1s;
  padding: 0.6em 1em 0.5em 1em;
  position: absolute;
  text-align: center;
  white-space: nowrap;
  z-index: 50;
  pointer-events: none;
  opacity: 0;
  font-size: 0.8em;
  padding: 0.2em 0.3em 0.1em 0.3em;
  top: 2em;
  left: -2px;
}

a[class^=accordion-link]:not(.copied):hover::after {
  opacity: 1;
}

/* /accordion links */
/* anchor link copy notice */
@keyframes copy-notice {
  0% {
    opacity: 1;
    content: "Copied to clipboard!";
  }
  70% {
    opacity: 1;
    content: "Copied to clipboard!";
  }
  100% {
    opacity: 0;
    content: "Copied to clipboard!";
  }
}
a[class^=section-link-].copied::after, a[class^=accordion-link-].copied::after {
  animation: copy-notice 1.2s linear 1;
}

/* /anchor link copy notice */
/* Heading link styling - Integrated from Elementor CSS */
.c-accordion__item > a.section-link-h3 {
  margin-left: 0em;
}

.section-link-h2 > .fa-anchor, .section-link-h3 > .fa-anchor {
  color: #d1d5db;
}

.section-link-h2:hover .fa-anchor, .section-link-h3:hover .fa-anchor {
  color: #4b5563;
}

/* Modern Custom Scrollbar Styles */
/*
::-webkit-scrollbar {
	width: 9px;
	height: 8px;
}

::-webkit-scrollbar-track {
	background: $color-gray-50;
	background-image: linear-gradient(to right, $color-gray-200 1px, transparent 1px);
	border: 1px solid $color-gray-200;
}

::-webkit-scrollbar-thumb {
    background: rgba($color-gray-900, 0.2);
    border-radius: radius(md);
	border: 2px solid transparent;
	background-clip: padding-box;
	transition: background 0.2s ease;
	margin-left: 1px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba($color-gray-900, 0.35);
	background-clip: padding-box;
}

::-webkit-scrollbar-thumb:active {
    background: rgba($color-gray-900, 0.5);
	background-clip: padding-box;
} */
/* Firefox scrollbar */
/*
* {
    scrollbar-width: thin;
    scrollbar-color: rgba($color-gray-900, 0.2) $color-gray-50;
} */
#primary::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 1;
  background-image: radial-gradient(circle at 50% 30%, transparent 0%, transparent 30%, var(--surface-body, #ffffff) 70%), repeating-linear-gradient(0deg, var(--border-subtle, #f4f4f5) 0, var(--border-subtle, #f4f4f5) 1px, transparent 1px, transparent 48px), repeating-linear-gradient(90deg, var(--border-subtle, #f4f4f5) 0, var(--border-subtle, #f4f4f5) 1px, transparent 1px, transparent 48px);
  opacity: 0;
}
[data-theme=dark] #primary::before {
  opacity: 0.25;
  background-image: radial-gradient(circle at 50% 0%, transparent 0%, transparent 20%, var(--surface-body, #ffffff) 45%), repeating-linear-gradient(0deg, var(--border-subtle, #f4f4f5) 0, var(--border-subtle, #f4f4f5) 1px, transparent 1px, transparent 48px), repeating-linear-gradient(90deg, var(--border-subtle, #f4f4f5) 0, var(--border-subtle, #f4f4f5) 1px, transparent 1px, transparent 48px);
}
#primary::before {
  background-attachment: scroll;
  background-size: 100% 100%, 48px 48px, 48px 48px;
  background-position: center top, center top, center top;
  background-repeat: no-repeat, repeat, repeat;
}

#primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 64rem;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
  /*background: radial-gradient(
    ellipse 50% 60% at 50% -10%,
    rgba($color-primary-500, 0.15) 0%,
    rgba($color-primary-500, 0.10) 40%,
    transparent 100%
  );*/
  background: none;
}
[data-theme=dark] #primary::after {
  background: radial-gradient(ellipse 50% 60% at 50% -10%, rgba(79, 70, 229, 0.28) 0%, rgba(79, 70, 229, 0.15) 40%, transparent 100%);
}

#colophon {
  position: relative;
}
[data-theme=dark] #colophon {
  background: transparent !important;
}

#colophon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  background-image: radial-gradient(circle at 50% 100%, transparent 0%, transparent 30%, var(--surface-body, #ffffff) 70%), repeating-linear-gradient(0deg, var(--border-subtle, #f4f4f5) 0, var(--border-subtle, #f4f4f5) 1px, transparent 1px, transparent 48px), repeating-linear-gradient(90deg, var(--border-subtle, #f4f4f5) 0, var(--border-subtle, #f4f4f5) 1px, transparent 1px, transparent 48px);
}
[data-theme=dark] #colophon::before {
  opacity: 0.25;
  background-image: radial-gradient(circle at 50% 100%, transparent 0%, transparent 20%, var(--surface-body, #ffffff) 45%), repeating-linear-gradient(0deg, var(--border-subtle, #f4f4f5) 0, var(--border-subtle, #f4f4f5) 1px, transparent 1px, transparent 48px), repeating-linear-gradient(90deg, var(--border-subtle, #f4f4f5) 0, var(--border-subtle, #f4f4f5) 1px, transparent 1px, transparent 48px);
}
@media (min-width: 1500px) {
  [data-theme=dark] #colophon::before {
    background-image: radial-gradient(circle at 50% 100%, transparent 0%, transparent 10%, var(--surface-body, #ffffff) 45%), repeating-linear-gradient(0deg, var(--border-subtle, #f4f4f5) 0, var(--border-subtle, #f4f4f5) 1px, transparent 1px, transparent 48px), repeating-linear-gradient(90deg, var(--border-subtle, #f4f4f5) 0, var(--border-subtle, #f4f4f5) 1px, transparent 1px, transparent 48px);
  }
}
#colophon::before {
  background-attachment: scroll;
  background-size: 100% 100%, 48px 48px, 48px 48px;
  background-position: center bottom, center bottom, center bottom;
  background-repeat: no-repeat, repeat, repeat;
}

#colophon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 64rem;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  background: none;
}
[data-theme=dark] #colophon::after {
  background: radial-gradient(ellipse 50% 60% at 50% 110%, rgba(79, 70, 229, 0.28) 0%, rgba(79, 70, 229, 0.11) 40%, transparent 100%);
}

#colophon > * {
  position: relative;
  z-index: 1;
}

/*
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.5;

  // SVG data URI for precise grid control
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M0 0h60M0 0v60' stroke='rgba(0,0,0,0.05)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  background-position: center center;
  mask-image: radial-gradient(circle at 50% 40%, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 40%, rgba(0,0,0,0) 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 40%, rgba(0,0,0,0) 70%);
}

html[data-theme="dark"] body::before {
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M0 0h60M0 0v60' stroke='rgba(255,255,255,0.08)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
}
*/
#banner {
  background: linear-gradient(220deg, #6366f1 0%, #4338ca 100%);
  color: #ffffff;
  font-weight: 400;
  padding: 0.4em 1.5em;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
}
#banner a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}
#banner a:hover {
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  #banner {
    font-size: 1rem;
  }
}
[data-theme=dark] #banner {
  background: linear-gradient(220deg, #6366f1 0%, #3730a3 100%);
  color: var(--text-primary, #18181b);
}

section.community-link {
  display: flex;
  padding: 0.5em 1em;
  background: #ffffff;
  align-items: center;
  justify-content: flex-end;
}
section.community-link a {
  background: #4b5563;
  font-family: "Figtree", sans-serif;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.3s;
  padding: 0.5em;
  border-radius: 5px;
  font-size: 0.875rem;
  line-height: 1.2;
  display: block;
  font-weight: 300;
}
section.community-link a:hover {
  background: #111827;
  color: #ffffff;
}

#mega-menu {
  background: transparent;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#mega-menu a {
  color: #111827;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
#mega-menu a:hover, #mega-menu a:focus {
  text-decoration: none;
}
#mega-menu > li > a {
  padding: 0.5em 0.9em;
  display: block;
  white-space: nowrap;
}
#mega-menu > li > a.mm-parent::after {
  display: none;
}
#mega-menu > li > ul {
  display: grid;
  visibility: hidden;
  pointer-events: none;
  grid-gap: 1em;
  background: #ffffff;
  grid-template-columns: 1fr;
  --loud-link-height: calc((0.8em * 0.9 * 2) + (1em * 1.7) + (0.5em * 2) + (2px));
  --quiet-link-height: calc((1em * 1.7 + 1em * 0.8 * 2));
}
#mega-menu > li > ul li {
  list-style-type: none;
}
#mega-menu > li > ul li.mm-link {
  display: flex;
}
#mega-menu > li > ul li.mm-link > a {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0.75em;
  padding: 0.75em 1em;
  border-radius: 0;
}
#mega-menu > li > ul li.mm-link > a:hover, #mega-menu > li > ul li.mm-link > a:focus-within {
  background: transparent;
}
#mega-menu > li > ul .mm-link .mm-image {
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 50px;
}
#mega-menu > li > ul .mm-link .mm-image-photo {
  width: 100%;
}
#mega-menu > li > ul .mm-link .mm-image-photo > picture,
#mega-menu > li > ul .mm-link .mm-image-photo > img {
  display: block;
  border-radius: 0.25rem;
  transition: transform 0.1s ease;
}
#mega-menu > li > ul .mm-link .mm-image-photo > img {
  height: auto;
  width: 100%;
}
#mega-menu > li > ul .mm-link .mm-image i {
  color: #111827;
}
#mega-menu > li > ul .mm-link .mm-image i::before {
  font-size: 1.5rem;
  padding: 0.25em;
}
#mega-menu > li > ul .mm-link .mm-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 0.9em;
  line-height: 1.4;
  color: #374151;
  transition: color 0.2s ease;
}
#mega-menu > li > ul .mm-link .mm-text span {
  font-weight: 600;
  font-size: 0.95em;
  color: #111827;
  position: relative;
  display: inline-block;
  transition: color 0.2s ease;
}
#mega-menu > li > ul .mm-link .mm-text p {
  margin-bottom: 0;
  color: #4b5563;
  transition: color 0.2s ease;
}
#mega-menu > li > ul .mm-link > a:hover .mm-text,
#mega-menu > li > ul .mm-link > a:focus-within .mm-text {
  color: #111827;
}
#mega-menu > li > ul .mm-link > a:hover .mm-text span,
#mega-menu > li > ul .mm-link > a:focus-within .mm-text span {
  color: #111827;
}
#mega-menu > li > ul .mm-link .link-arrow {
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  color: var(--text-muted, #a1a1aa);
  font-size: 1rem;
  flex-shrink: 0;
  margin-left: 0;
  display: inline-block;
}
#mega-menu > li > ul .mm-link > a:hover .link-arrow,
#mega-menu > li > ul .mm-link > a:focus-within .link-arrow {
  opacity: 1;
  transform: translateX(0);
}
#mega-menu > li > ul .mm-link > a:hover .mm-text p,
#mega-menu > li > ul .mm-link > a:focus-within .mm-text p {
  color: #111827;
}
#mega-menu > li > ul .quiet-links {
  display: grid;
  background: transparent;
  font-size: 0.8em;
  font-weight: 600;
  margin: 0;
  border-radius: 0.25rem;
  grid-column: 1/-1;
  grid-template-columns: 1fr;
  text-align: left;
}
#mega-menu > li > ul .quiet-links a {
  color: #4b5563;
  display: block;
  transition: color 0.2s ease;
  padding: 0.9em 1em;
  border-radius: 0;
}
#mega-menu > li > ul .quiet-links a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-size: 0.875rem;
  padding-right: 0.5em;
  transition: color 0.2s ease;
  color: #4b5563;
}
#mega-menu > li > ul .quiet-links a:hover, #mega-menu > li > ul .quiet-links a:focus-within {
  background: transparent;
  color: #111827;
}
#mega-menu > li > ul .quiet-links a:hover::before, #mega-menu > li > ul .quiet-links a:focus-within::before {
  color: #111827;
}
#mega-menu > li > ul .quiet-links .ql-full-width {
  grid-column: 1/-1;
}
#mega-menu > li > ul .quiet-links .ql-half-width:first-of-type {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
#mega-menu > li > ul .quiet-links .ql-half-width:last-of-type {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

/* Special behaviour for featured product cards */
#mega-menu .mm-notion-templates .mm-column-featured .mm-link > a {
  background: transparent;
  padding: 0;
}
#mega-menu .mm-notion-templates .mm-column-featured .mm-link > a:hover, #mega-menu .mm-notion-templates .mm-column-featured .mm-link > a:focus-within {
  background: transparent;
}
#mega-menu .mm-notion-templates .mm-column-featured .mm-link > a .mm-image-photo > img,
#mega-menu .mm-notion-templates .mm-column-featured .mm-link > a .mm-image-photo > picture {
  transform: scale(1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
}

#mega-menu .mm-notion-templates .mm-column-featured .mm-link > a:hover .mm-image-photo > img,
#mega-menu .mm-notion-templates .mm-column-featured .mm-link > a:focus-within .mm-image-photo > img,
#mega-menu .mm-notion-templates .mm-column-featured .mm-link > a:hover .mm-image-photo > picture,
#mega-menu .mm-notion-templates .mm-column-featured .mm-link > a:focus-within .mm-image-photo > picture {
  transform: scale(1.05);
  filter: brightness(1.1);
}

html[data-theme=dark] #mega-menu {
  background: transparent;
}
html[data-theme=dark] #mega-menu a {
  color: var(--text-secondary, #52525b);
}
html[data-theme=dark] #mega-menu a:hover, html[data-theme=dark] #mega-menu a:focus {
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] #mega-menu > li > ul {
  background: var(--surface-body, #ffffff);
  border: 1px solid var(--border-subtle, #f4f4f5);
  box-shadow: 0 25px 45px -20px rgba(0, 0, 0, 0.55);
}
html[data-theme=dark] #mega-menu > li > ul .mm-link > a:hover,
html[data-theme=dark] #mega-menu > li > ul .mm-link > a:focus-within {
  background: transparent;
}
html[data-theme=dark] #mega-menu > li > ul .mm-link .mm-image i {
  color: #ffffff;
}
html[data-theme=dark] #mega-menu > li > ul .mm-link .mm-text {
  color: var(--text-secondary, #52525b);
  transition: color 0.2s ease;
}
html[data-theme=dark] #mega-menu > li > ul .mm-link .mm-text span {
  color: var(--text-primary, #18181b);
  transition: color 0.2s ease;
}
html[data-theme=dark] #mega-menu > li > ul .mm-link .mm-text p {
  color: var(--text-secondary, #52525b);
  transition: color 0.2s ease;
}
html[data-theme=dark] #mega-menu > li > ul .mm-link > a:hover .mm-text,
html[data-theme=dark] #mega-menu > li > ul .mm-link > a:focus-within .mm-text {
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] #mega-menu > li > ul .mm-link > a:hover .mm-text span,
html[data-theme=dark] #mega-menu > li > ul .mm-link > a:focus-within .mm-text span {
  color: #ffffff;
}
html[data-theme=dark] #mega-menu > li > ul .mm-link .link-arrow {
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  color: var(--text-muted, #a1a1aa);
  font-size: 1rem;
  flex-shrink: 0;
  margin-left: 0;
  display: inline-block;
}
html[data-theme=dark] #mega-menu > li > ul .mm-link > a:hover .link-arrow,
html[data-theme=dark] #mega-menu > li > ul .mm-link > a:focus-within .link-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--text-secondary, #52525b);
}
html[data-theme=dark] #mega-menu > li > ul .mm-link > a:hover .mm-text p,
html[data-theme=dark] #mega-menu > li > ul .mm-link > a:focus-within .mm-text p {
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] #mega-menu > li > ul .quiet-links {
  background: rgba(255, 255, 255, 0.04);
}
html[data-theme=dark] #mega-menu > li > ul .quiet-links a {
  color: var(--text-secondary, #52525b);
}
html[data-theme=dark] #mega-menu > li > ul .quiet-links a:hover, html[data-theme=dark] #mega-menu > li > ul .quiet-links a:focus-within {
  background: transparent;
  color: #ffffff;
}
html[data-theme=dark] #mega-menu > li > ul.mm-learn-notion .mm-column-featured {
  background: var(--surface-muted, #fafafa);
  border-right-color: var(--border-muted, #e4e4e7);
}
html[data-theme=dark] #mega-menu > li > ul.mm-learn-notion .mm-column-featured .mm-column-heading {
  color: var(--text-muted, #a1a1aa);
  border-bottom-color: var(--border-muted, #e4e4e7);
}
html[data-theme=dark] #mega-menu > li > ul.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .mm-image-placeholder {
  background: var(--surface-body, #ffffff);
  color: var(--text-muted, #a1a1aa);
  border-color: var(--border-muted, #e4e4e7);
}
html[data-theme=dark] #mega-menu > li > ul.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .mm-text p {
  color: var(--text-secondary, #52525b);
}
html[data-theme=dark] #mega-menu > li > ul.mm-learn-notion .mm-column-featured .mm-link-fluent-notion > a:hover .mm-text p,
html[data-theme=dark] #mega-menu > li > ul.mm-learn-notion .mm-column-featured .mm-link-fluent-notion > a:focus-within .mm-text p {
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] #mega-menu > li > ul.mm-learn-notion .mm-column-heading {
  color: var(--text-muted, #a1a1aa);
  border-bottom-color: var(--border-muted, #e4e4e7);
}
html[data-theme=dark] #mega-menu > li > ul.mm-learn-notion .mm-link-list a {
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] #mega-menu > li > ul.mm-learn-notion .mm-link-list a:hover {
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] #mega-menu > li > ul.mm-learn-notion .mm-link-list a .mm-link-icon {
  color: var(--text-muted, #a1a1aa);
}
html[data-theme=dark] #mega-menu > li > ul.mm-learn-notion .mm-link-list a:hover .mm-link-icon {
  color: var(--text-secondary, #52525b);
}
html[data-theme=dark] #mega-menu > li > ul.mm-learn-notion .mm-link-list a .link-arrow {
  color: var(--text-muted, #a1a1aa);
}
html[data-theme=dark] #mega-menu > li > ul.mm-learn-notion .mm-link-list a:hover .link-arrow {
  color: var(--text-secondary, #52525b);
}
html[data-theme=dark] #mega-menu > li > ul.mm-learn-notion .mm-link-separator {
  background: var(--border-muted, #e4e4e7);
}
html[data-theme=dark] #mega-menu.open {
  border-bottom-color: var(--border-subtle, #f4f4f5);
}
@media screen and (max-width: 1024px) {
  html[data-theme=dark] #mega-menu {
    background: transparent;
  }
  html[data-theme=dark] #mega-menu.open {
    background: var(--surface-body, #ffffff);
    border-bottom: none;
  }
  html[data-theme=dark] #mega-menu > li::after, html[data-theme=dark] #mega-menu > li.open ul.mm-about::after {
    background: var(--border-subtle, #f4f4f5);
  }
  html[data-theme=dark] #mega-menu > li:hover > a, html[data-theme=dark] #mega-menu > li.open > a, html[data-theme=dark] #mega-menu > li.mm-focus-within > a {
    background: transparent;
    color: #ffffff;
  }
}
@media screen and (min-width: 1025px) {
  html[data-theme=dark] #mega-menu > li:hover, html[data-theme=dark] #mega-menu > li.active, html[data-theme=dark] #mega-menu > li.mm-focus-within {
    border-bottom-color: rgba(255, 255, 255, 0.8);
  }
}
html[data-theme=dark] #mega-menu-mobile > li.mobile-menu-actions {
  border-top-color: var(--border-subtle, #f4f4f5);
  background: var(--surface-body, #ffffff);
}

#mega-menu-button {
  border: none;
  color: #111827;
  display: none;
}
#mega-menu-button:hover, #mega-menu-button:focus {
  background: #111827;
  color: #ffffff;
}

@media screen and (max-width: 1024px) {
  #mega-menu-mobile > li.open > ul.mm-about,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-about {
    max-height: calc(var(--loud-link-height) * 2);
  }
  #mega-menu-mobile > li.open > ul.mm-learn-notion,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-learn-notion {
    max-height: none;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0;
    padding: 0;
    border: none;
    box-shadow: none;
  }
  #mega-menu-mobile > li.open > ul.mm-learn-notion .mm-column-featured,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-learn-notion .mm-column-featured {
    display: block;
    padding: 0 1rem 0.5rem;
    margin: 0;
    border-radius: 0;
    border-right: none;
    border-bottom: none;
    background: var(--surface-body, #ffffff);
    list-style: none;
  }
  #mega-menu-mobile > li.open > ul.mm-learn-notion .mm-column-featured .mm-column-heading,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-learn-notion .mm-column-featured .mm-column-heading {
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted, #a1a1aa);
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-muted, #e4e4e7);
    line-height: 1.5rem;
  }
  [data-theme=dark] #mega-menu-mobile > li.open > ul.mm-learn-notion .mm-column-featured .mm-column-heading,
  [data-theme=dark] #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-learn-notion .mm-column-featured .mm-column-heading {
    border-bottom-color: var(--border-subtle, #f4f4f5);
  }
  #mega-menu-mobile > li.open > ul.mm-learn-notion .mm-column-featured .mm-link-fluent-notion > a,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-learn-notion .mm-column-featured .mm-link-fluent-notion > a {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    padding: 0;
    text-decoration: none;
    color: var(--text-primary, #18181b);
    background: transparent;
    border: none;
    position: relative;
  }
}
@media screen and (max-width: 1024px) and (min-width: 580px) {
  #mega-menu-mobile > li.open > ul.mm-learn-notion .mm-column-featured .mm-link-fluent-notion > a,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-learn-notion .mm-column-featured .mm-link-fluent-notion > a {
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
  }
}
@media screen and (max-width: 1024px) {
  #mega-menu-mobile > li.open > ul.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .mm-image,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .mm-image {
    flex: 0 0 auto;
  }
  #mega-menu-mobile > li.open > ul.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .mm-image img,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .mm-image img {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
    border-radius: 0.5rem;
    border: 1px solid var(--border-muted, #e4e4e7);
    transition: filter 0.3s ease;
  }
}
@media screen and (max-width: 1024px) and (max-width: 579px) {
  #mega-menu-mobile > li.open > ul.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .mm-image img,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .mm-image img {
    max-width: 300px;
  }
}
@media screen and (max-width: 1024px) {
  #mega-menu-mobile > li.open > ul.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .mm-image .mm-image-placeholder,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .mm-image .mm-image-placeholder {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-muted, #fafafa);
    color: var(--text-muted, #a1a1aa);
    border-radius: 0.5rem;
    border: 1px solid var(--border-muted, #e4e4e7);
  }
  #mega-menu-mobile > li.open > ul.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .mm-image .mm-image-placeholder svg,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .mm-image .mm-image-placeholder svg {
    width: 64px;
    height: 64px;
    opacity: 0.5;
  }
  #mega-menu-mobile > li.open > ul.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .mm-text,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .mm-text {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    min-width: 0;
    align-items: flex-start;
    text-align: left;
    padding: 0;
  }
  #mega-menu-mobile > li.open > ul.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .mm-text span,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .mm-text span {
    display: none;
  }
  #mega-menu-mobile > li.open > ul.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .mm-text p,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .mm-text p {
    font-size: 1rem;
    color: var(--text-secondary, #52525b);
    line-height: 1.5rem;
    margin: 0;
    display: block;
    max-width: 300px;
    transition: color 0.3s ease;
  }
  #mega-menu-mobile > li.open > ul.mm-learn-notion .mm-column-featured .mm-link-fluent-notion > a:hover .mm-text p,
  #mega-menu-mobile > li.open > ul.mm-learn-notion .mm-column-featured .mm-link-fluent-notion > a:focus-within .mm-text p,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-learn-notion .mm-column-featured .mm-link-fluent-notion > a:hover .mm-text p,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-learn-notion .mm-column-featured .mm-link-fluent-notion > a:focus-within .mm-text p {
    color: var(--text-primary, #18181b);
  }
  #mega-menu-mobile > li.open > ul.mm-learn-notion .mm-column-featured .mm-link-fluent-notion > a:hover .mm-image img,
  #mega-menu-mobile > li.open > ul.mm-learn-notion .mm-column-featured .mm-link-fluent-notion > a:focus-within .mm-image img,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-learn-notion .mm-column-featured .mm-link-fluent-notion > a:hover .mm-image img,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-learn-notion .mm-column-featured .mm-link-fluent-notion > a:focus-within .mm-image img {
    filter: brightness(1.1);
  }
  #mega-menu-mobile > li.open > ul.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .link-arrow,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .link-arrow {
    display: none;
  }
  #mega-menu-mobile > li.open > ul.mm-learn-notion .mm-column-links,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-learn-notion .mm-column-links {
    padding: 0 1rem 0.5rem;
    border-bottom: none;
    background: var(--surface-body, #ffffff);
    list-style: none;
  }
  #mega-menu-mobile > li.open > ul.mm-learn-notion .mm-column-links:last-child,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-learn-notion .mm-column-links:last-child {
    border-bottom: none;
  }
  #mega-menu-mobile > li.open > ul.mm-learn-notion .mm-column-heading,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-learn-notion .mm-column-heading {
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted, #a1a1aa);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-muted, #e4e4e7);
    line-height: 1.5rem;
  }
  [data-theme=dark] #mega-menu-mobile > li.open > ul.mm-learn-notion .mm-column-heading,
  [data-theme=dark] #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-learn-notion .mm-column-heading {
    border-bottom-color: var(--border-subtle, #f4f4f5);
  }
  #mega-menu-mobile > li.open > ul.mm-learn-notion .mm-link-list,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-learn-notion .mm-link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0;
    margin: 0;
    border: none;
  }
  #mega-menu-mobile > li.open > ul.mm-learn-notion .mm-link-list li,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-learn-notion .mm-link-list li {
    list-style: none;
    border: none;
  }
  #mega-menu-mobile > li.open > ul.mm-learn-notion .mm-link-list a,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-learn-notion .mm-link-list a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary, #18181b);
    text-decoration: none;
    font-size: 1.0625rem;
    line-height: 1.65rem;
    transition: color 0.2s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    position: relative;
    font-weight: 500;
  }
  #mega-menu-mobile > li.open > ul.mm-learn-notion .mm-link-list a:hover,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-learn-notion .mm-link-list a:hover {
    color: var(--text-primary, #18181b);
  }
  #mega-menu-mobile > li.open > ul.mm-learn-notion .mm-link-list a .link-text,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-learn-notion .mm-link-list a .link-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  #mega-menu-mobile > li.open > ul.mm-learn-notion .mm-link-list a .mm-link-icon,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-learn-notion .mm-link-list a .mm-link-icon {
    flex-shrink: 0;
    color: var(--text-muted, #a1a1aa);
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  #mega-menu-mobile > li.open > ul.mm-learn-notion .mm-link-list a .mm-link-icon svg,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-learn-notion .mm-link-list a .mm-link-icon svg {
    display: block;
    width: 18px;
    height: 18px;
  }
  #mega-menu-mobile > li.open > ul.mm-learn-notion .mm-link-list a .link-text > span,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-learn-notion .mm-link-list a .link-text > span {
    white-space: nowrap;
  }
  #mega-menu-mobile > li.open > ul.mm-learn-notion .mm-link-list a:hover .mm-link-icon,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-learn-notion .mm-link-list a:hover .mm-link-icon {
    color: var(--text-secondary, #52525b);
  }
  #mega-menu-mobile > li.open > ul.mm-learn-notion .mm-link-list a .link-arrow,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-learn-notion .mm-link-list a .link-arrow {
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    color: var(--text-muted, #a1a1aa);
    font-size: 1rem;
    flex-shrink: 0;
    margin-left: 0;
    display: inline-block;
  }
  #mega-menu-mobile > li.open > ul.mm-learn-notion .mm-link-list a:hover .link-arrow,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-learn-notion .mm-link-list a:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
  }
  #mega-menu-mobile > li.open > ul.mm-learn-notion .mm-link-separator,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-learn-notion .mm-link-separator {
    height: 1px;
    background: var(--border-muted, #e4e4e7);
    margin: 0.75rem 0;
    border: none;
    width: 100%;
  }
  [data-theme=dark] #mega-menu-mobile > li.open > ul.mm-learn-notion .mm-link-separator,
  [data-theme=dark] #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-learn-notion .mm-link-separator {
    background: var(--border-subtle, #f4f4f5);
  }
  #mega-menu-mobile > li.open > ul.mm-notion-templates,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-notion-templates {
    max-height: none;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0;
    padding: 0;
    border: none;
    box-shadow: none;
  }
  #mega-menu-mobile > li.open > ul.mm-notion-templates .mm-column-featured,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-notion-templates .mm-column-featured {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
    margin: 0;
    border-radius: 0;
    border-right: none;
    border-bottom: none;
    justify-content: flex-start;
    background: var(--surface-body, #ffffff);
    list-style: none;
  }
  #mega-menu-mobile > li.open > ul.mm-notion-templates .mm-link > a,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-notion-templates .mm-link > a {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 0.75rem;
    padding: 0;
    text-decoration: none;
    color: var(--text-primary, #18181b);
    background: transparent;
    border: none;
    position: relative;
  }
  #mega-menu-mobile > li.open > ul.mm-notion-templates .mm-link .mm-image,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-notion-templates .mm-link .mm-image {
    flex: 0 0 auto;
    width: calc(1.5rem * 5);
    min-width: calc(1rem * 5);
  }
  #mega-menu-mobile > li.open > ul.mm-notion-templates .mm-link .mm-image-photo,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-notion-templates .mm-link .mm-image-photo {
    width: calc(1.5rem * 5);
    height: auto;
    display: block;
    border-radius: 0.25rem;
    border: none;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
  }
  #mega-menu-mobile > li.open > ul.mm-notion-templates .mm-link .mm-image img,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-notion-templates .mm-link .mm-image img {
    max-width: calc(1.5rem * 5);
    height: auto;
    transition: filter 0.3s ease;
  }
  #mega-menu-mobile > li.open > ul.mm-notion-templates .mm-link > a:hover .mm-image img,
  #mega-menu-mobile > li.open > ul.mm-notion-templates .mm-link > a:focus-within .mm-image img,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-notion-templates .mm-link > a:hover .mm-image img,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-notion-templates .mm-link > a:focus-within .mm-image img {
    filter: brightness(1.1);
  }
  #mega-menu-mobile > li.open > ul.mm-notion-templates .mm-link .mm-text,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-notion-templates .mm-link .mm-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
    align-items: flex-start;
    text-align: left;
    padding: 0;
  }
  #mega-menu-mobile > li.open > ul.mm-notion-templates .mm-link .mm-text span,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-notion-templates .mm-link .mm-text span {
    font-weight: 500;
    font-size: 1.0625rem;
    color: var(--text-primary, #18181b);
    line-height: 1.65rem;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  #mega-menu-mobile > li.open > ul.mm-notion-templates .mm-link .mm-text p,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-notion-templates .mm-link .mm-text p {
    padding-left: 0.5rem;
    margin-block-end: 0;
    margin-block-start: 0;
    color: var(--text-secondary, #52525b);
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  #mega-menu-mobile > li.open > ul.mm-notion-templates .mm-link .link-arrow,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-notion-templates .mm-link .link-arrow {
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    color: var(--text-muted, #a1a1aa);
    font-size: 1rem;
    flex-shrink: 0;
    margin-left: 0;
    display: inline-block;
  }
  #mega-menu-mobile > li.open > ul.mm-notion-templates .mm-link > a:hover .link-arrow,
  #mega-menu-mobile > li.open > ul.mm-notion-templates .mm-link > a:focus-within .link-arrow,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-notion-templates .mm-link > a:hover .link-arrow,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-notion-templates .mm-link > a:focus-within .link-arrow {
    opacity: 1;
    transform: translateX(0);
  }
  #mega-menu-mobile > li.open > ul.mm-notion-templates .mm-column-links,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-notion-templates .mm-column-links {
    padding: 1rem;
    border-bottom: none;
    background: var(--surface-body, #ffffff);
    list-style: none;
  }
  #mega-menu-mobile > li.open > ul.mm-notion-templates .mm-column-links:last-child,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-notion-templates .mm-column-links:last-child {
    border-bottom: none;
  }
  #mega-menu-mobile > li.open > ul.mm-notion-templates .mm-column-heading,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-notion-templates .mm-column-heading {
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted, #a1a1aa);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-muted, #e4e4e7);
    line-height: 1.5rem;
  }
  [data-theme=dark] #mega-menu-mobile > li.open > ul.mm-notion-templates .mm-column-heading,
  [data-theme=dark] #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-notion-templates .mm-column-heading {
    border-bottom-color: var(--border-subtle, #f4f4f5);
  }
  #mega-menu-mobile > li.open > ul.mm-notion-templates .mm-link-list,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-notion-templates .mm-link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0;
    margin: 0;
    border: none;
  }
  #mega-menu-mobile > li.open > ul.mm-notion-templates .mm-link-list li,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-notion-templates .mm-link-list li {
    list-style: none;
    border: none;
  }
  #mega-menu-mobile > li.open > ul.mm-notion-templates .mm-link-list a,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-notion-templates .mm-link-list a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary, #18181b);
    text-decoration: none;
    font-size: 1.0625rem;
    line-height: 1.65rem;
    transition: color 0.2s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    position: relative;
    font-weight: 500;
  }
  #mega-menu-mobile > li.open > ul.mm-notion-templates .mm-link-list a:hover,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-notion-templates .mm-link-list a:hover {
    color: var(--text-primary, #18181b);
  }
  #mega-menu-mobile > li.open > ul.mm-notion-templates .mm-link-list a .link-text,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-notion-templates .mm-link-list a .link-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  #mega-menu-mobile > li.open > ul.mm-notion-templates .mm-link-list a .mm-link-icon,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-notion-templates .mm-link-list a .mm-link-icon {
    flex-shrink: 0;
    color: var(--text-muted, #a1a1aa);
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  #mega-menu-mobile > li.open > ul.mm-notion-templates .mm-link-list a .mm-link-icon svg,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-notion-templates .mm-link-list a .mm-link-icon svg {
    display: block;
    width: 18px;
    height: 18px;
  }
  #mega-menu-mobile > li.open > ul.mm-notion-templates .mm-link-list a .link-text > span,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-notion-templates .mm-link-list a .link-text > span {
    white-space: nowrap;
  }
  #mega-menu-mobile > li.open > ul.mm-notion-templates .mm-link-list a:hover .mm-link-icon,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-notion-templates .mm-link-list a:hover .mm-link-icon {
    color: var(--text-secondary, #52525b);
  }
  #mega-menu-mobile > li.open > ul.mm-notion-templates .mm-link-list a .link-arrow,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-notion-templates .mm-link-list a .link-arrow {
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    color: var(--text-muted, #a1a1aa);
    font-size: 1rem;
    flex-shrink: 0;
    margin-left: 0;
    display: inline-block;
  }
  #mega-menu-mobile > li.open > ul.mm-notion-templates .mm-link-list a:hover .link-arrow,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-notion-templates .mm-link-list a:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
  }
  #mega-menu-mobile > li.open > ul.mm-notion-templates .mm-link-separator,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-notion-templates .mm-link-separator {
    height: 1px;
    background: var(--border-muted, #e4e4e7);
    margin: 0.75rem 0;
    border: none;
    width: 100%;
  }
  [data-theme=dark] #mega-menu-mobile > li.open > ul.mm-notion-templates .mm-link-separator,
  [data-theme=dark] #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-notion-templates .mm-link-separator {
    background: var(--border-subtle, #f4f4f5);
  }
  #mega-menu-mobile > li.open > ul.mm-blog,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-blog {
    max-height: none;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0;
    padding: 0;
    border: none;
    box-shadow: none;
  }
  #mega-menu-mobile > li.open > ul.mm-blog .mm-column-links,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-blog .mm-column-links {
    padding: 0 1rem 0.5rem;
    border-bottom: none;
    background: var(--surface-body, #ffffff);
    list-style: none;
  }
  #mega-menu-mobile > li.open > ul.mm-blog .mm-column-links:last-child,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-blog .mm-column-links:last-child {
    border-bottom: none;
  }
  #mega-menu-mobile > li.open > ul.mm-blog .mm-column-heading,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-blog .mm-column-heading {
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted, #a1a1aa);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-muted, #e4e4e7);
    line-height: 1.5rem;
  }
  [data-theme=dark] #mega-menu-mobile > li.open > ul.mm-blog .mm-column-heading,
  [data-theme=dark] #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-blog .mm-column-heading {
    border-bottom-color: var(--border-subtle, #f4f4f5);
  }
  #mega-menu-mobile > li.open > ul.mm-blog .mm-link-list,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-blog .mm-link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0;
    margin: 0;
    border: none;
  }
  #mega-menu-mobile > li.open > ul.mm-blog .mm-link-list li,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-blog .mm-link-list li {
    list-style: none;
    border: none;
  }
  #mega-menu-mobile > li.open > ul.mm-blog .mm-link-list a,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-blog .mm-link-list a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary, #18181b);
    text-decoration: none;
    font-size: 1.0625rem;
    line-height: 1.65rem;
    transition: color 0.2s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    position: relative;
    font-weight: 500;
  }
  #mega-menu-mobile > li.open > ul.mm-blog .mm-link-list a:hover,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-blog .mm-link-list a:hover {
    color: var(--text-primary, #18181b);
  }
  #mega-menu-mobile > li.open > ul.mm-blog .mm-link-list a .link-text,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-blog .mm-link-list a .link-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  #mega-menu-mobile > li.open > ul.mm-blog .mm-link-list a .mm-link-icon,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-blog .mm-link-list a .mm-link-icon {
    flex-shrink: 0;
    color: var(--text-muted, #a1a1aa);
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  #mega-menu-mobile > li.open > ul.mm-blog .mm-link-list a .mm-link-icon svg,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-blog .mm-link-list a .mm-link-icon svg {
    display: block;
    width: 18px;
    height: 18px;
  }
  #mega-menu-mobile > li.open > ul.mm-blog .mm-link-list a .link-text > span,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-blog .mm-link-list a .link-text > span {
    white-space: nowrap;
  }
  #mega-menu-mobile > li.open > ul.mm-blog .mm-link-list a:hover .mm-link-icon,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-blog .mm-link-list a:hover .mm-link-icon {
    color: var(--text-secondary, #52525b);
  }
  #mega-menu-mobile > li.open > ul.mm-blog .mm-link-list a .link-arrow,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-blog .mm-link-list a .link-arrow {
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    color: var(--text-muted, #a1a1aa);
    font-size: 1rem;
    flex-shrink: 0;
    margin-left: 0;
    display: inline-block;
  }
  #mega-menu-mobile > li.open > ul.mm-blog .mm-link-list a:hover .link-arrow,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-blog .mm-link-list a:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
  }
  #mega-menu-mobile > li.open > ul.mm-blog .mm-link-separator,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-blog .mm-link-separator {
    height: 1px;
    background: var(--border-muted, #e4e4e7);
    margin: 0.75rem 0;
    border: none;
    width: 100%;
  }
  [data-theme=dark] #mega-menu-mobile > li.open > ul.mm-blog .mm-link-separator,
  [data-theme=dark] #mega-menu-mobile .mobile-menu-nav-container > li.open > ul.mm-blog .mm-link-separator {
    background: var(--border-subtle, #f4f4f5);
  }
  #mega-menu > li.open > ul.mm-about {
    max-height: calc(var(--loud-link-height) * 2);
  }
  #mega-menu > li.open > ul.mm-learn-notion {
    max-height: calc(var(--loud-link-height) * 4 + var(--quiet-link-height) * 2);
  }
  #mega-menu > li.open > ul.mm-blog {
    max-height: calc(var(--loud-link-height) * 3 + var(--quiet-link-height) * 1);
  }
  .m-row-1 {
    grid-row: 1;
  }
  .m-row-2 {
    grid-row: 2;
  }
  .m-row-3 {
    grid-row: 3;
  }
}
@media screen and (min-width: 768px) {
  #mega-menu > li > ul {
    grid-template-columns: 1fr 1fr;
  }
  #mega-menu > li > ul .quiet-links {
    grid-column: 1/3;
    grid-template-columns: 1fr 1fr;
  }
  .td-row-1 {
    grid-row: 1;
  }
  .td-row-2 {
    grid-row: 2;
  }
  .td-row-3 {
    grid-row: 3;
  }
  .td-col-1 {
    grid-column: 1;
  }
  .td-col-2 {
    grid-column: 2;
  }
  .td-col-3 {
    grid-column: 3;
  }
}
@media screen and (max-width: 1024px) {
  #mega-menu {
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    display: none;
  }
  .dropdownBackground {
    display: none !important;
  }
  .dropdown {
    display: none !important;
  }
  .topnavBar {
    position: static;
    perspective: none;
  }
  #mega-menu-button {
    display: flex;
  }
  #mega-menu-mobile {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    max-width: 100vw;
    min-height: 100dvh !important;
    height: 100dvh !important;
    margin: 0 !important;
    padding: 0 !important;
    background: var(--surface-body, #ffffff);
    z-index: 9999;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    box-sizing: border-box;
    transform: none !important;
    view-transition-name: none !important;
  }
  #mega-menu-mobile a {
    color: var(--text-primary, #18181b);
  }
  #mega-menu-mobile a:hover, #mega-menu-mobile a:focus {
    color: var(--text-primary, #18181b);
  }
  @supports not (height: 100dvh) {
    #mega-menu-mobile {
      min-height: calc(var(--vh, 1vh) * 100) !important;
      height: calc(var(--vh, 1vh) * 100) !important;
    }
  }
  #mega-menu-mobile .mobile-menu-nav-container {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
    scrollbar-gutter: auto;
    padding-bottom: calc(env(safe-area-inset-bottom, 0) + 1.5rem);
    scroll-padding-bottom: calc(env(safe-area-inset-bottom, 0) + 1.5rem);
  }
  #mega-menu-mobile > li.mobile-menu-close {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid var(--border-muted, #e4e4e7);
    background: var(--surface-body, #ffffff);
    position: sticky;
    top: 0;
    z-index: 10001;
    flex-shrink: 0;
    gap: 0.5rem;
    height: 61px;
    min-height: 61px;
    max-height: 61px;
    box-sizing: border-box;
  }
  #mega-menu-mobile > li.mobile-menu-actions {
    position: sticky;
    bottom: env(safe-area-inset-bottom, 0);
    padding: 0.75rem 0.75rem;
    padding-bottom: calc(env(safe-area-inset-bottom, 0) + 0.75rem);
    background: var(--surface-body, #ffffff);
    border-top: 1px solid var(--border-muted, #e4e4e7);
    z-index: 10000;
    display: block;
    flex-shrink: 0;
    box-sizing: border-box;
    max-width: 100%;
  }
  #mega-menu-mobile > li.mobile-menu-actions::after {
    display: none;
  }
  #mega-menu-mobile > li.mobile-menu-actions .mobile-theme-options {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-start;
  }
  #mega-menu-mobile > li.mobile-menu-actions .mobile-theme-option {
    border: 1px solid var(--border-muted, #e4e4e7);
    background: var(--surface-body, #ffffff);
    border-radius: 0.5rem;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary, #18181b);
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }
  #mega-menu-mobile > li.mobile-menu-actions .mobile-theme-option:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(56, 190, 255, 0.2);
  }
  #mega-menu-mobile > li.mobile-menu-actions .mobile-theme-option:hover {
    border-color: var(--border-strong, #d4d4d8);
  }
  #mega-menu-mobile > li.mobile-menu-actions .mobile-theme-option[aria-pressed=true], #mega-menu-mobile > li.mobile-menu-actions .mobile-theme-option.is-selected {
    background: var(--surface-elevated, #f4f4f5);
    border-color: var(--border-strong, #d4d4d8);
  }
  #mega-menu-mobile > li.mobile-menu-actions .mobile-theme-option .mobile-theme-option__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  #mega-menu-mobile > li.mobile-menu-actions .mobile-theme-option .mobile-theme-option__icon svg {
    width: 20px;
    height: 20px;
    display: block;
  }
  #mega-menu-mobile > li.mobile-menu-close .mobile-menu-logo-wrapper {
    display: flex;
    align-items: center;
    gap: calc(0.5rem + 2px);
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
  }
  #mega-menu-mobile > li.mobile-menu-close .home-link--avatar {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }
  #mega-menu-mobile > li.mobile-menu-close .home-link--avatar img.thomas {
    height: 36px;
    padding: 7px;
    width: auto;
    display: block;
  }
  #mega-menu-mobile > li.mobile-menu-close .home-link--logo {
    display: flex;
    align-items: center;
    flex-shrink: 1;
    min-width: 0;
  }
  #mega-menu-mobile > li.mobile-menu-close .home-link--logo picture.logo {
    display: block;
    width: 100%;
    max-width: 200px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 485px) {
  #mega-menu-mobile > li.mobile-menu-close .home-link--logo picture.logo {
    max-width: 180px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 420px) {
  #mega-menu-mobile > li.mobile-menu-close .home-link--logo picture.logo {
    max-width: 150px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 385px) {
  #mega-menu-mobile > li.mobile-menu-close .home-link--logo picture.logo {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  #mega-menu-mobile > li.mobile-menu-close .home-link--logo picture.logo img {
    width: 100%;
    height: auto;
    display: block;
  }
  #mega-menu-mobile > li.mobile-menu-close .home-link--logo picture.logo.logo--dark {
    display: none;
  }
  #mega-menu-mobile > li.mobile-menu-close .home-link--logo picture.logo.logo--light {
    display: block;
  }
  html[data-theme=dark] #mega-menu-mobile > li.mobile-menu-close .home-link--logo picture.logo.logo--dark {
    display: block;
  }
  html[data-theme=dark] #mega-menu-mobile > li.mobile-menu-close .home-link--logo picture.logo.logo--light {
    display: none;
  }
  #mega-menu-mobile > li.mobile-menu-close button {
    background: transparent;
    border: none;
    color: var(--text-primary, #18181b);
    font-size: 1.25rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: background 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
  }
  #mega-menu-mobile > li.mobile-menu-close button:hover, #mega-menu-mobile > li.mobile-menu-close button:focus {
    background: var(--surface-elevated, #f4f4f5);
    color: var(--text-primary, #18181b);
    outline: none;
  }
  #mega-menu-mobile > li.mobile-menu-close button svg {
    width: 24px;
    height: 24px;
    display: block;
  }
  #mega-menu-mobile > li:not(.mobile-menu-close):not(.mobile-menu-actions),
  #mega-menu-mobile .mobile-menu-nav-container > li {
    display: flex;
    flex-flow: column;
    text-align: left;
    position: relative;
    border: none;
    flex-shrink: 0;
    flex-grow: 0;
    min-height: calc(0.75rem * 2 + 1.0625rem * 1.65rem);
    overflow: hidden;
    width: 100%;
  }
  #mega-menu-mobile > li:not(.mobile-menu-close):not(.mobile-menu-actions).mobile-menu-close::after,
  #mega-menu-mobile .mobile-menu-nav-container > li.mobile-menu-close::after {
    display: none;
  }
  #mega-menu-mobile > li:not(.mobile-menu-close):not(.mobile-menu-actions) > a,
  #mega-menu-mobile > li:not(.mobile-menu-close):not(.mobile-menu-actions) > button,
  #mega-menu-mobile .mobile-menu-nav-container > li > a,
  #mega-menu-mobile .mobile-menu-nav-container > li > button {
    color: var(--text-primary, #18181b);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    font-size: 1.0625rem;
    font-weight: 500;
    line-height: 1.65rem;
    transition: background 0.2s ease, color 0.2s ease;
    background: none;
    border: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: left;
    cursor: pointer;
    gap: 0.5rem;
    white-space: nowrap;
    min-height: calc(0.75rem * 2 + 1.0625rem * 1.65rem);
    min-width: 0;
  }
  #mega-menu-mobile > li:not(.mobile-menu-close):not(.mobile-menu-actions)::after, #mega-menu-mobile > li:not(.mobile-menu-close):not(.mobile-menu-actions).open ul.mm-about::after,
  #mega-menu-mobile .mobile-menu-nav-container > li::after,
  #mega-menu-mobile .mobile-menu-nav-container > li.open ul.mm-about::after {
    content: "";
    background: var(--border-muted, #e4e4e7);
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: 0;
    margin-top: 2px;
    z-index: 9999;
  }
  #mega-menu-mobile > li:not(.mobile-menu-close):not(.mobile-menu-actions):last-of-type:not(.mobile-menu-actions):not(.mobile-menu-close)::after,
  #mega-menu-mobile .mobile-menu-nav-container > li:last-of-type:not(.mobile-menu-actions):not(.mobile-menu-close)::after {
    background: none;
  }
  #mega-menu-mobile > li:not(.mobile-menu-close):not(.mobile-menu-actions).open::after,
  #mega-menu-mobile .mobile-menu-nav-container > li.open::after {
    display: none;
  }
  #mega-menu-mobile > li:not(.mobile-menu-close):not(.mobile-menu-actions):hover > a, #mega-menu-mobile > li:not(.mobile-menu-close):not(.mobile-menu-actions):hover > button,
  #mega-menu-mobile .mobile-menu-nav-container > li:hover > a,
  #mega-menu-mobile .mobile-menu-nav-container > li:hover > button {
    background: var(--surface-elevated, #f4f4f5);
    color: var(--text-primary, #18181b);
  }
  #mega-menu-mobile > li:not(.mobile-menu-close):not(.mobile-menu-actions).open > a, #mega-menu-mobile > li:not(.mobile-menu-close):not(.mobile-menu-actions).open > button,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > a,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > button {
    background: transparent;
    color: var(--text-primary, #18181b);
  }
  #mega-menu-mobile > li:not(.mobile-menu-close):not(.mobile-menu-actions).mm-focus-within > a, #mega-menu-mobile > li:not(.mobile-menu-close):not(.mobile-menu-actions).mm-focus-within > button,
  #mega-menu-mobile .mobile-menu-nav-container > li.mm-focus-within > a,
  #mega-menu-mobile .mobile-menu-nav-container > li.mm-focus-within > button {
    background: transparent;
    color: var(--text-primary, #18181b);
  }
  #mega-menu-mobile > li:not(.mobile-menu-close):not(.mobile-menu-actions):not(.open):not(:hover) > a, #mega-menu-mobile > li:not(.mobile-menu-close):not(.mobile-menu-actions):not(.open):not(:hover) > button,
  #mega-menu-mobile .mobile-menu-nav-container > li:not(.open):not(:hover) > a,
  #mega-menu-mobile .mobile-menu-nav-container > li:not(.open):not(:hover) > button {
    background: none;
  }
  #mega-menu-mobile > li:not(.mobile-menu-close):not(.mobile-menu-actions) > a.mm-parent .mm-parent-chevron,
  #mega-menu-mobile > li:not(.mobile-menu-close):not(.mobile-menu-actions) > button.mm-parent .mm-parent-chevron,
  #mega-menu-mobile .mobile-menu-nav-container > li > a.mm-parent .mm-parent-chevron,
  #mega-menu-mobile .mobile-menu-nav-container > li > button.mm-parent .mm-parent-chevron {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0 !important;
    flex-grow: 0;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    margin-left: 0.5rem;
    color: var(--text-muted, #a1a1aa) !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
    transform: rotate(0deg);
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 1 !important;
  }
  #mega-menu-mobile > li:not(.mobile-menu-close):not(.mobile-menu-actions) > a.mm-parent .mm-parent-chevron svg,
  #mega-menu-mobile > li:not(.mobile-menu-close):not(.mobile-menu-actions) > a.mm-parent .mm-parent-chevron svg.mm-parent-chevron,
  #mega-menu-mobile > li:not(.mobile-menu-close):not(.mobile-menu-actions) > button.mm-parent .mm-parent-chevron svg,
  #mega-menu-mobile > li:not(.mobile-menu-close):not(.mobile-menu-actions) > button.mm-parent .mm-parent-chevron svg.mm-parent-chevron,
  #mega-menu-mobile .mobile-menu-nav-container > li > a.mm-parent .mm-parent-chevron svg,
  #mega-menu-mobile .mobile-menu-nav-container > li > a.mm-parent .mm-parent-chevron svg.mm-parent-chevron,
  #mega-menu-mobile .mobile-menu-nav-container > li > button.mm-parent .mm-parent-chevron svg,
  #mega-menu-mobile .mobile-menu-nav-container > li > button.mm-parent .mm-parent-chevron svg.mm-parent-chevron {
    display: block !important;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    stroke: currentColor !important;
    stroke-width: 2 !important;
    fill: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 1 !important;
  }
  #mega-menu-mobile > li:not(.mobile-menu-close):not(.mobile-menu-actions).open > a.mm-parent .mm-parent-chevron, #mega-menu-mobile > li:not(.mobile-menu-close):not(.mobile-menu-actions).open > button.mm-parent .mm-parent-chevron,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > a.mm-parent .mm-parent-chevron,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > button.mm-parent .mm-parent-chevron {
    transform: rotate(180deg);
    color: var(--text-secondary, #52525b);
  }
  #mega-menu-mobile > li:not(.mobile-menu-close):not(.mobile-menu-actions) > ul,
  #mega-menu-mobile .mobile-menu-nav-container > li > ul {
    position: static;
    padding: 0;
    margin: 0;
    border: 0;
    max-height: 0;
    overflow: hidden;
    grid-gap: 0;
    width: 100%;
    max-width: 100%;
    background: var(--surface-body, #ffffff);
  }
  #mega-menu-mobile > li:not(.mobile-menu-close):not(.mobile-menu-actions) > ul li,
  #mega-menu-mobile .mobile-menu-nav-container > li > ul li {
    align-items: flex-start !important;
  }
  #mega-menu-mobile > li:not(.mobile-menu-close):not(.mobile-menu-actions) > ul a,
  #mega-menu-mobile .mobile-menu-nav-container > li > ul a {
    border-radius: 0;
    color: var(--text-primary, #18181b);
  }
  #mega-menu-mobile > li:not(.mobile-menu-close):not(.mobile-menu-actions).open > ul,
  #mega-menu-mobile .mobile-menu-nav-container > li.open > ul {
    visibility: visible;
    max-height: none;
    overflow: auto;
  }
  #mega-menu-mobile > li ul li.mm-link > a,
  #mega-menu-mobile .mobile-menu-nav-container > li ul li.mm-link > a {
    padding: 0.5em;
  }
  #mega-menu-mobile .mm-link .mm-image i {
    font-size: 1.875rem;
    display: flex;
  }
  #mega-menu-mobile .mm-link .mm-text {
    font-size: 0.9em;
    padding: 0.8em 0;
    align-items: center;
    text-align: center;
  }
  #mega-menu-mobile .mm-link .mm-text span {
    padding: 0 0 0 0.5em;
  }
  #mega-menu-mobile > li ul .quiet-links,
  #mega-menu-mobile .mobile-menu-nav-container > li ul .quiet-links {
    border-radius: 0;
  }
}
@media screen and (min-width: 1025px) {
  #mega-menu > li > ul {
    display: none !important;
  }
  .topnavBar {
    position: relative;
    perspective: 600px;
  }
  .dropdownBackground {
    width: 160px;
    height: 100px;
    position: absolute;
    background: var(--surface-body, #ffffff);
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(24, 24, 27, 0.12), 0 10px 10px -5px rgba(24, 24, 27, 0.08);
    border: 1px solid var(--border-muted, #e4e4e7);
    transition: width 0.32s cubic-bezier(0.4, 0, 0.2, 1), height 0.32s cubic-bezier(0.4, 0, 0.2, 1), transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: 50% 0;
    opacity: 0;
    pointer-events: none;
    overflow: visible;
    z-index: 9999;
  }
  [data-theme=dark] .dropdownBackground {
    border: 1px solid var(--border-subtle, #f4f4f5);
  }
  .dropdownBackground.open {
    opacity: 1;
  }
  .arrow {
    position: absolute;
    top: 0;
    left: 50%;
    width: 16px;
    height: 16px;
    background: var(--surface-body, #ffffff);
    border-top: 1px solid var(--border-muted, #e4e4e7);
    border-left: 1px solid var(--border-muted, #e4e4e7);
    border-right: none;
    border-bottom: none;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: left 0.36s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.36s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
  }
  [data-theme=dark] .arrow {
    border-top: 1px solid var(--border-subtle, #f4f4f5);
    border-left: 1px solid var(--border-subtle, #f4f4f5);
  }
  .dropdown {
    opacity: 0;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    transition: opacity 0.1s ease, transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    will-change: opacity, transform;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
  }
  .dropdown.exiting-left {
    transform: translateX(40px) translateY(0px);
    opacity: 0;
  }
  .dropdown.exiting-right {
    transform: translateX(-40px) translateY(0px);
    opacity: 0;
  }
  .dropdown.entering-left {
    transform: translateX(-40px) translateY(0px);
    opacity: 0;
  }
  .dropdown.entering-right {
    transform: translateX(40px) translateY(0px);
    opacity: 0;
  }
  .dropdown.is-open {
    display: block;
    opacity: 0;
    visibility: hidden;
  }
  .dropdown.is-visible {
    opacity: 1 !important;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }
  .dropdown a {
    color: inherit;
    text-decoration: none;
  }
  .dropdown a:focus:not(:focus-visible) {
    outline: none;
  }
  body.user-is-tabbing .nav-trigger:focus,
  body.user-is-tabbing .nav-trigger:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 4px;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
  }
  body.user-is-tabbing .dropdown a:focus,
  body.user-is-tabbing .dropdown a:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
  }
  .nav-trigger:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 4px;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
  }
  .dropdown a:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
  }
  .nav-trigger {
    position: relative;
    background: none;
    border: 0;
    color: var(--text-secondary, #52525b);
    font-size: 1.0625rem;
    line-height: 1.65rem;
    padding: 0.5em 0.6em;
    margin: 0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: color 0.2s ease;
  }
  .nav-trigger .mm-parent-chevron {
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
  }
  .nav-trigger:hover {
    color: var(--text-primary, #18181b);
  }
  .nav-trigger:hover .mm-parent-chevron {
    transform: rotate(180deg);
  }
  .nav-trigger[aria-expanded=true] .mm-parent-chevron {
    transform: rotate(180deg);
  }
  .nav-trigger[href] {
    text-decoration: none;
  }
  .nav-trigger:focus:not(:focus-visible) {
    outline: none;
  }
}
@media screen and (min-width: 1025px) and (min-width: 1025px) {
  #mega-menu > li > button.mm-parent {
    cursor: default;
  }
}
@media screen and (min-width: 1025px) {
  #mega-menu {
    align-items: baseline;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    padding: 0;
    z-index: 9999;
    white-space: nowrap;
  }
  #mega-menu > li.mobile-menu-actions {
    display: none;
  }
  #mega-menu > li > a,
  #mega-menu > li > button {
    font-size: 1.0625rem;
    line-height: 1.65rem;
    padding: 0.5em 0.6em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary, #52525b);
    transition: color 0.2s ease;
    white-space: nowrap;
  }
  #mega-menu > li:hover > a,
  #mega-menu > li:hover > button,
  #mega-menu > li.mm-focus-within > a,
  #mega-menu > li.mm-focus-within > button {
    color: var(--text-primary, #18181b);
  }
}
@media screen and (min-width: 1025px) and (min-width: 1025px) and (max-width: 1150px) {
  #mega-menu > li > a,
  #mega-menu > li > button {
    font-size: 1rem;
    line-height: 1.5rem;
    padding: 0.45em 0.5em;
  }
}
@media screen and (min-width: 1025px) {
  .dropdown .mm-learn-notion,
  .dropdown .mm-notion-templates {
    display: grid;
    grid-template-columns: 400px 0.95fr 1.05fr;
    gap: 2rem;
    background: var(--surface-body, #ffffff);
    border-radius: 1rem;
    padding: 1.5rem;
    list-style: none;
    margin: 0;
    width: 1000px;
    max-width: 100%;
    box-sizing: border-box;
  }
  .dropdown .mm-notion-templates {
    width: 960px;
    grid-template-columns: 400px 0.95fr 1.05fr;
  }
  .dropdown .mm-notion-templates .mm-column-featured {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    background: var(--surface-muted, #fafafa);
    padding: calc(1.5rem + 4px);
    margin: -1.5rem;
    margin-left: -1.5rem;
    margin-right: 0;
    border-radius: 1rem 0 0 1rem;
    border-right: 1px solid var(--border-muted, #e4e4e7);
    list-style: none;
    grid-column: 1;
    min-width: 0;
  }
  [data-theme=dark] .dropdown .mm-notion-templates .mm-column-featured {
    border-right: 1px solid var(--border-subtle, #f4f4f5);
  }
  .dropdown .mm-notion-templates .mm-column-featured .mm-link .mm-image {
    width: 150px;
    min-width: 150px;
  }
  .dropdown .mm-notion-templates .mm-column-featured .mm-link .mm-image-photo {
    width: 150px;
  }
  .dropdown .mm-notion-templates .mm-column-featured .mm-link .mm-image img {
    max-width: 150px;
  }
  .dropdown .mm-notion-templates .mm-column-links {
    display: flex;
    flex-direction: column;
    min-width: 0;
    grid-column: auto;
  }
  .dropdown .mm-notion-templates .mm-column-links:nth-of-type(2) {
    grid-column: 2;
  }
  .dropdown .mm-notion-templates .mm-column-links:nth-of-type(3) {
    grid-column: 3;
  }
  .dropdown .mm-notion-templates .mm-column-links .mm-link-list a {
    white-space: nowrap;
  }
  .dropdown .mm-learn-notion .mm-column-links,
  .dropdown .mm-notion-templates .mm-column-links,
  .dropdown .mm-blog .mm-column-links {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }
  .dropdown .mm-learn-notion .mm-column-links .mm-link-list a,
  .dropdown .mm-notion-templates .mm-column-links .mm-link-list a,
  .dropdown .mm-blog .mm-column-links .mm-link-list a {
    white-space: nowrap;
  }
  .dropdown .mm-learn-notion .mm-column-heading,
  .dropdown .mm-notion-templates .mm-column-heading,
  .dropdown .mm-blog .mm-column-heading {
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted, #a1a1aa);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-muted, #e4e4e7);
    line-height: 1.5rem;
  }
  .dropdown .mm-learn-notion .mm-link-list,
  .dropdown .mm-notion-templates .mm-link-list,
  .dropdown .mm-blog .mm-link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0;
    margin: 0;
    border: none;
  }
  .dropdown .mm-learn-notion .mm-link-list li,
  .dropdown .mm-notion-templates .mm-link-list li,
  .dropdown .mm-blog .mm-link-list li {
    list-style: none;
    border: none;
  }
  .dropdown .mm-learn-notion .mm-link-list a,
  .dropdown .mm-notion-templates .mm-link-list a,
  .dropdown .mm-blog .mm-link-list a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary, #18181b);
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.5rem;
    transition: color 0.2s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    position: relative;
  }
  .dropdown .mm-learn-notion .mm-link-list a:hover,
  .dropdown .mm-notion-templates .mm-link-list a:hover,
  .dropdown .mm-blog .mm-link-list a:hover {
    color: var(--text-primary, #18181b);
  }
  .dropdown .mm-learn-notion .mm-link-list a .link-text,
  .dropdown .mm-notion-templates .mm-link-list a .link-text,
  .dropdown .mm-blog .mm-link-list a .link-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .dropdown .mm-learn-notion .mm-link-list a .mm-link-icon,
  .dropdown .mm-notion-templates .mm-link-list a .mm-link-icon,
  .dropdown .mm-blog .mm-link-list a .mm-link-icon {
    flex-shrink: 0;
    color: var(--text-muted, #a1a1aa);
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
  }
  .dropdown .mm-learn-notion .mm-link-list a .mm-link-icon svg,
  .dropdown .mm-notion-templates .mm-link-list a .mm-link-icon svg,
  .dropdown .mm-blog .mm-link-list a .mm-link-icon svg {
    display: block;
    width: 18px;
    height: 18px;
  }
  .dropdown .mm-learn-notion .mm-link-list a .link-text > span,
  .dropdown .mm-notion-templates .mm-link-list a .link-text > span,
  .dropdown .mm-blog .mm-link-list a .link-text > span {
    white-space: nowrap;
  }
  .dropdown .mm-learn-notion .mm-link-list a:hover .mm-link-icon,
  .dropdown .mm-notion-templates .mm-link-list a:hover .mm-link-icon,
  .dropdown .mm-blog .mm-link-list a:hover .mm-link-icon {
    color: var(--text-secondary, #52525b);
  }
  .dropdown .mm-learn-notion .mm-link-list a .link-arrow,
  .dropdown .mm-notion-templates .mm-link-list a .link-arrow,
  .dropdown .mm-blog .mm-link-list a .link-arrow {
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    color: var(--text-muted, #a1a1aa);
    font-size: 1rem;
    flex-shrink: 0;
    margin-left: 0;
    display: inline-block;
  }
  .dropdown .mm-learn-notion .mm-link-list a:hover .link-arrow,
  .dropdown .mm-notion-templates .mm-link-list a:hover .link-arrow,
  .dropdown .mm-blog .mm-link-list a:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
  }
  .dropdown .mm-learn-notion .mm-link-separator,
  .dropdown .mm-notion-templates .mm-link-separator,
  .dropdown .mm-blog .mm-link-separator {
    height: 1px;
    background: var(--border-muted, #e4e4e7);
    margin: 0.75rem 0;
    border: none;
    width: 100%;
  }
  .dropdown .mm-learn-notion .mm-link,
  .dropdown .mm-notion-templates .mm-link,
  .dropdown .mm-blog .mm-link {
    display: flex;
    list-style: none;
  }
  .dropdown .mm-learn-notion .mm-link > a,
  .dropdown .mm-notion-templates .mm-link > a,
  .dropdown .mm-blog .mm-link > a {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 1.25rem;
    padding: 0;
    text-decoration: none;
    color: var(--text-primary, #18181b);
    background: transparent;
    border: none;
    position: relative;
  }
  .dropdown .mm-learn-notion .mm-link .mm-image,
  .dropdown .mm-notion-templates .mm-link .mm-image,
  .dropdown .mm-blog .mm-link .mm-image {
    flex: 0 0 auto;
    width: 124px;
    min-width: 124px;
  }
  .dropdown .mm-learn-notion .mm-link .mm-image-photo,
  .dropdown .mm-notion-templates .mm-link .mm-image-photo,
  .dropdown .mm-blog .mm-link .mm-image-photo {
    width: 124px;
    height: auto;
    display: block;
    border-radius: 0.5rem;
    border: 1px solid var(--border-muted, #e4e4e7);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
  }
  .dropdown .mm-learn-notion .mm-link .mm-image img,
  .dropdown .mm-notion-templates .mm-link .mm-image img,
  .dropdown .mm-blog .mm-link .mm-image img {
    height: auto;
    transition: filter 0.3s ease;
  }
  .dropdown .mm-learn-notion .mm-link .mm-text,
  .dropdown .mm-notion-templates .mm-link .mm-text,
  .dropdown .mm-blog .mm-link .mm-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }
  .dropdown .mm-learn-notion .mm-link .mm-text span,
  .dropdown .mm-notion-templates .mm-link .mm-text span,
  .dropdown .mm-blog .mm-link .mm-text span {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary, #18181b);
    line-height: 1.5rem;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  .dropdown .mm-learn-notion .mm-link .mm-text span .link-arrow,
  .dropdown .mm-notion-templates .mm-link .mm-text span .link-arrow,
  .dropdown .mm-blog .mm-link .mm-text span .link-arrow {
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    color: var(--text-muted, #a1a1aa);
    font-size: 1rem;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
  }
  .dropdown .mm-learn-notion .mm-link .mm-text p,
  .dropdown .mm-notion-templates .mm-link .mm-text p,
  .dropdown .mm-blog .mm-link .mm-text p {
    font-size: 0.875rem;
    color: var(--text-secondary, #52525b);
    line-height: 1.5rem;
    margin: 0;
    transition: color 0.3s ease;
  }
  .dropdown .mm-learn-notion .mm-link > a:hover .mm-text span .link-arrow,
  .dropdown .mm-learn-notion .mm-link > a:focus-within .mm-text span .link-arrow,
  .dropdown .mm-notion-templates .mm-link > a:hover .mm-text span .link-arrow,
  .dropdown .mm-notion-templates .mm-link > a:focus-within .mm-text span .link-arrow,
  .dropdown .mm-blog .mm-link > a:hover .mm-text span .link-arrow,
  .dropdown .mm-blog .mm-link > a:focus-within .mm-text span .link-arrow {
    opacity: 1;
    transform: translateX(0);
  }
  .dropdown .mm-learn-notion .mm-link > a:hover .mm-image img,
  .dropdown .mm-learn-notion .mm-link > a:focus-within .mm-image img,
  .dropdown .mm-notion-templates .mm-link > a:hover .mm-image img,
  .dropdown .mm-notion-templates .mm-link > a:focus-within .mm-image img,
  .dropdown .mm-blog .mm-link > a:hover .mm-image img,
  .dropdown .mm-blog .mm-link > a:focus-within .mm-image img {
    filter: brightness(1.1);
  }
  .dropdown .mm-learn-notion .mm-link .mm-image-photo,
  .dropdown .mm-notion-templates .mm-link .mm-image-photo,
  .dropdown .mm-blog .mm-link .mm-image-photo {
    width: 90px;
    /* padding-right: 4px; */
    flex: 0 0 90px;
  }
  .dropdown .mm-learn-notion .mm-link .mm-image i,
  .dropdown .mm-notion-templates .mm-link .mm-image i,
  .dropdown .mm-blog .mm-link .mm-image i {
    display: flex;
    font-size: 1.6875rem;
    color: #111827;
  }
  .dropdown .mm-learn-notion .mm-link .mm-image i::before,
  .dropdown .mm-notion-templates .mm-link .mm-image i::before,
  .dropdown .mm-blog .mm-link .mm-image i::before {
    font-size: 1.6875rem;
  }
  .dropdown .mm-learn-notion .mm-link > a:hover .mm-image i,
  .dropdown .mm-learn-notion .mm-link > a:focus-within .mm-image i,
  .dropdown .mm-notion-templates .mm-link > a:hover .mm-image i,
  .dropdown .mm-notion-templates .mm-link > a:focus-within .mm-image i,
  .dropdown .mm-blog .mm-link > a:hover .mm-image i,
  .dropdown .mm-blog .mm-link > a:focus-within .mm-image i {
    font-size: 1.875rem;
  }
  .dropdown .mm-learn-notion .mm-link .mm-text,
  .dropdown .mm-notion-templates .mm-link .mm-text,
  .dropdown .mm-blog .mm-link .mm-text {
    padding: 0.2em;
    font-size: 0.9em;
    line-height: 1.4;
    align-items: flex-start;
    text-align: left;
    justify-content: flex-start;
  }
  .dropdown .mm-learn-notion .mm-link .mm-text p,
  .dropdown .mm-notion-templates .mm-link .mm-text p,
  .dropdown .mm-blog .mm-link .mm-text p {
    display: block;
  }
  .dropdown .mm-learn-notion .quiet-links,
  .dropdown .mm-notion-templates .quiet-links,
  .dropdown .mm-blog .quiet-links {
    border-radius: 5px;
  }
  .dropdown .mm-learn-notion .quiet-links .ql-full-width,
  .dropdown .mm-notion-templates .quiet-links .ql-full-width,
  .dropdown .mm-blog .quiet-links .ql-full-width {
    border-radius: 5px;
  }
  .dropdown .mm-learn-notion .quiet-links .ql-half-width:first-of-type,
  .dropdown .mm-notion-templates .quiet-links .ql-half-width:first-of-type,
  .dropdown .mm-blog .quiet-links .ql-half-width:first-of-type {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }
  .dropdown .mm-learn-notion .quiet-links .ql-half-width:last-of-type,
  .dropdown .mm-notion-templates .quiet-links .ql-half-width:last-of-type,
  .dropdown .mm-blog .quiet-links .ql-half-width:last-of-type {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  .dropdown .mm-learn-notion.mm-learn-notion,
  .dropdown .mm-notion-templates.mm-learn-notion,
  .dropdown .mm-blog.mm-learn-notion {
    width: 880px;
    display: grid !important;
    grid-template-columns: 320px 1fr 1fr;
    gap: 2rem;
    background: var(--surface-body, #ffffff);
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(24, 24, 27, 0.08), 0 2px 4px -2px rgba(24, 24, 27, 0.06);
    padding: 1.5rem;
    list-style: none;
    grid-auto-flow: row;
  }
  .dropdown .mm-learn-notion.mm-learn-notion .mm-column-featured,
  .dropdown .mm-notion-templates.mm-learn-notion .mm-column-featured,
  .dropdown .mm-blog.mm-learn-notion .mm-column-featured {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
    background: var(--surface-muted, #fafafa);
    padding: 1.5rem calc(1.5rem + 4px);
    margin: -1.5rem;
    margin-left: -1.5rem;
    margin-right: 0;
    border-radius: 1rem 0 0 1rem;
    border-right: 1px solid var(--border-muted, #e4e4e7);
    list-style: none;
    grid-column: 1;
    min-width: 0;
  }
  [data-theme=dark] .dropdown .mm-learn-notion.mm-learn-notion .mm-column-featured,
  [data-theme=dark] .dropdown .mm-notion-templates.mm-learn-notion .mm-column-featured,
  [data-theme=dark] .dropdown .mm-blog.mm-learn-notion .mm-column-featured {
    border-right: 1px solid var(--border-subtle, #f4f4f5);
  }
  .dropdown .mm-learn-notion.mm-learn-notion .mm-column-featured .mm-column-heading,
  .dropdown .mm-notion-templates.mm-learn-notion .mm-column-featured .mm-column-heading,
  .dropdown .mm-blog.mm-learn-notion .mm-column-featured .mm-column-heading {
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted, #a1a1aa);
    margin-bottom: 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-muted, #e4e4e7);
    line-height: 1.5rem;
  }
  .dropdown .mm-learn-notion.mm-learn-notion .mm-column-featured .mm-link-fluent-notion,
  .dropdown .mm-notion-templates.mm-learn-notion .mm-column-featured .mm-link-fluent-notion,
  .dropdown .mm-blog.mm-learn-notion .mm-column-featured .mm-link-fluent-notion {
    display: flex;
    flex-direction: column;
  }
  .dropdown .mm-learn-notion.mm-learn-notion .mm-column-featured .mm-link-fluent-notion > a,
  .dropdown .mm-notion-templates.mm-learn-notion .mm-column-featured .mm-link-fluent-notion > a,
  .dropdown .mm-blog.mm-learn-notion .mm-column-featured .mm-link-fluent-notion > a {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    padding: 0;
    text-decoration: none;
    color: var(--text-primary, #18181b);
    background: transparent;
    border: none;
    position: relative;
  }
  .dropdown .mm-learn-notion.mm-learn-notion .mm-column-featured .mm-link-fluent-notion > a:hover, .dropdown .mm-learn-notion.mm-learn-notion .mm-column-featured .mm-link-fluent-notion > a:focus-within,
  .dropdown .mm-notion-templates.mm-learn-notion .mm-column-featured .mm-link-fluent-notion > a:hover,
  .dropdown .mm-notion-templates.mm-learn-notion .mm-column-featured .mm-link-fluent-notion > a:focus-within,
  .dropdown .mm-blog.mm-learn-notion .mm-column-featured .mm-link-fluent-notion > a:hover,
  .dropdown .mm-blog.mm-learn-notion .mm-column-featured .mm-link-fluent-notion > a:focus-within {
    background: transparent;
  }
  .dropdown .mm-learn-notion.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .mm-image,
  .dropdown .mm-notion-templates.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .mm-image,
  .dropdown .mm-blog.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .mm-image {
    width: 100%;
    flex: 0 0 auto;
  }
  .dropdown .mm-learn-notion.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .mm-image img,
  .dropdown .mm-notion-templates.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .mm-image img,
  .dropdown .mm-blog.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .mm-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.5rem;
    border: 1px solid var(--border-muted, #e4e4e7);
    transition: filter 0.3s ease;
  }
  .dropdown .mm-learn-notion.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .mm-image .mm-image-placeholder,
  .dropdown .mm-notion-templates.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .mm-image .mm-image-placeholder,
  .dropdown .mm-blog.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .mm-image .mm-image-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-body, #ffffff);
    color: var(--text-muted, #a1a1aa);
    border-radius: 0.5rem;
    border: 1px solid var(--border-muted, #e4e4e7);
  }
  .dropdown .mm-learn-notion.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .mm-image .mm-image-placeholder svg,
  .dropdown .mm-notion-templates.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .mm-image .mm-image-placeholder svg,
  .dropdown .mm-blog.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .mm-image .mm-image-placeholder svg {
    width: 64px;
    height: 64px;
    opacity: 0.5;
  }
  .dropdown .mm-learn-notion.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .mm-text,
  .dropdown .mm-notion-templates.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .mm-text,
  .dropdown .mm-blog.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .mm-text {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    min-width: 0;
    align-items: flex-start;
    text-align: left;
    padding: 0;
  }
  .dropdown .mm-learn-notion.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .mm-text span,
  .dropdown .mm-notion-templates.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .mm-text span,
  .dropdown .mm-blog.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .mm-text span {
    display: none;
  }
  .dropdown .mm-learn-notion.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .mm-text p,
  .dropdown .mm-notion-templates.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .mm-text p,
  .dropdown .mm-blog.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .mm-text p {
    font-size: 0.875rem;
    color: var(--text-secondary, #52525b);
    line-height: 1.5rem;
    margin: 0;
    transition: color 0.3s ease;
  }
  .dropdown .mm-learn-notion.mm-learn-notion .mm-column-featured .mm-link-fluent-notion > a:hover .mm-text p,
  .dropdown .mm-learn-notion.mm-learn-notion .mm-column-featured .mm-link-fluent-notion > a:focus-within .mm-text p,
  .dropdown .mm-notion-templates.mm-learn-notion .mm-column-featured .mm-link-fluent-notion > a:hover .mm-text p,
  .dropdown .mm-notion-templates.mm-learn-notion .mm-column-featured .mm-link-fluent-notion > a:focus-within .mm-text p,
  .dropdown .mm-blog.mm-learn-notion .mm-column-featured .mm-link-fluent-notion > a:hover .mm-text p,
  .dropdown .mm-blog.mm-learn-notion .mm-column-featured .mm-link-fluent-notion > a:focus-within .mm-text p {
    color: var(--text-primary, #18181b);
  }
  .dropdown .mm-learn-notion.mm-learn-notion .mm-column-featured .mm-link-fluent-notion > a:hover .mm-image img,
  .dropdown .mm-learn-notion.mm-learn-notion .mm-column-featured .mm-link-fluent-notion > a:focus-within .mm-image img,
  .dropdown .mm-notion-templates.mm-learn-notion .mm-column-featured .mm-link-fluent-notion > a:hover .mm-image img,
  .dropdown .mm-notion-templates.mm-learn-notion .mm-column-featured .mm-link-fluent-notion > a:focus-within .mm-image img,
  .dropdown .mm-blog.mm-learn-notion .mm-column-featured .mm-link-fluent-notion > a:hover .mm-image img,
  .dropdown .mm-blog.mm-learn-notion .mm-column-featured .mm-link-fluent-notion > a:focus-within .mm-image img {
    filter: brightness(1.1);
  }
  .dropdown .mm-learn-notion.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .link-arrow,
  .dropdown .mm-notion-templates.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .link-arrow,
  .dropdown .mm-blog.mm-learn-notion .mm-column-featured .mm-link-fluent-notion .link-arrow {
    display: none;
  }
  .dropdown .mm-learn-notion.mm-learn-notion .mm-column-links,
  .dropdown .mm-notion-templates.mm-learn-notion .mm-column-links,
  .dropdown .mm-blog.mm-learn-notion .mm-column-links {
    display: flex;
    flex-direction: column;
    min-width: 0;
    grid-column: auto;
  }
  .dropdown .mm-learn-notion.mm-learn-notion .mm-column-links:nth-of-type(2),
  .dropdown .mm-notion-templates.mm-learn-notion .mm-column-links:nth-of-type(2),
  .dropdown .mm-blog.mm-learn-notion .mm-column-links:nth-of-type(2) {
    grid-column: 2;
  }
  .dropdown .mm-learn-notion.mm-learn-notion .mm-column-links:nth-of-type(3),
  .dropdown .mm-notion-templates.mm-learn-notion .mm-column-links:nth-of-type(3),
  .dropdown .mm-blog.mm-learn-notion .mm-column-links:nth-of-type(3) {
    grid-column: 3;
  }
  .dropdown .mm-learn-notion.mm-learn-notion .mm-column-links .mm-link-list a,
  .dropdown .mm-notion-templates.mm-learn-notion .mm-column-links .mm-link-list a,
  .dropdown .mm-blog.mm-learn-notion .mm-column-links .mm-link-list a {
    white-space: nowrap;
  }
  .dropdown .mm-learn-notion.mm-learn-notion .mm-column-heading,
  .dropdown .mm-notion-templates.mm-learn-notion .mm-column-heading,
  .dropdown .mm-blog.mm-learn-notion .mm-column-heading {
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted, #a1a1aa);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-muted, #e4e4e7);
    line-height: 1.5rem;
  }
  .dropdown .mm-learn-notion.mm-learn-notion .mm-link-list,
  .dropdown .mm-notion-templates.mm-learn-notion .mm-link-list,
  .dropdown .mm-blog.mm-learn-notion .mm-link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0;
    margin: 0;
    border: none;
  }
  .dropdown .mm-learn-notion.mm-learn-notion .mm-link-list li,
  .dropdown .mm-notion-templates.mm-learn-notion .mm-link-list li,
  .dropdown .mm-blog.mm-learn-notion .mm-link-list li {
    list-style: none;
    border: none;
  }
  .dropdown .mm-learn-notion.mm-learn-notion .mm-link-list a,
  .dropdown .mm-notion-templates.mm-learn-notion .mm-link-list a,
  .dropdown .mm-blog.mm-learn-notion .mm-link-list a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary, #18181b);
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.5rem;
    transition: color 0.2s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    position: relative;
  }
  .dropdown .mm-learn-notion.mm-learn-notion .mm-link-list a:hover,
  .dropdown .mm-notion-templates.mm-learn-notion .mm-link-list a:hover,
  .dropdown .mm-blog.mm-learn-notion .mm-link-list a:hover {
    color: var(--text-primary, #18181b);
  }
  .dropdown .mm-learn-notion.mm-learn-notion .mm-link-list a .link-text,
  .dropdown .mm-notion-templates.mm-learn-notion .mm-link-list a .link-text,
  .dropdown .mm-blog.mm-learn-notion .mm-link-list a .link-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .dropdown .mm-learn-notion.mm-learn-notion .mm-link-list a .mm-link-icon,
  .dropdown .mm-notion-templates.mm-learn-notion .mm-link-list a .mm-link-icon,
  .dropdown .mm-blog.mm-learn-notion .mm-link-list a .mm-link-icon {
    flex-shrink: 0;
    color: var(--text-muted, #a1a1aa);
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
  }
  .dropdown .mm-learn-notion.mm-learn-notion .mm-link-list a .mm-link-icon svg,
  .dropdown .mm-notion-templates.mm-learn-notion .mm-link-list a .mm-link-icon svg,
  .dropdown .mm-blog.mm-learn-notion .mm-link-list a .mm-link-icon svg {
    display: block;
    width: 18px;
    height: 18px;
  }
  .dropdown .mm-learn-notion.mm-learn-notion .mm-link-list a .link-text > span,
  .dropdown .mm-notion-templates.mm-learn-notion .mm-link-list a .link-text > span,
  .dropdown .mm-blog.mm-learn-notion .mm-link-list a .link-text > span {
    white-space: nowrap;
  }
  .dropdown .mm-learn-notion.mm-learn-notion .mm-link-list a:hover .mm-link-icon,
  .dropdown .mm-notion-templates.mm-learn-notion .mm-link-list a:hover .mm-link-icon,
  .dropdown .mm-blog.mm-learn-notion .mm-link-list a:hover .mm-link-icon {
    color: var(--text-secondary, #52525b);
  }
  .dropdown .mm-learn-notion.mm-learn-notion .mm-link-list a .link-arrow,
  .dropdown .mm-notion-templates.mm-learn-notion .mm-link-list a .link-arrow,
  .dropdown .mm-blog.mm-learn-notion .mm-link-list a .link-arrow {
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    color: var(--text-muted, #a1a1aa);
    font-size: 1rem;
    flex-shrink: 0;
    margin-left: 0;
    display: inline-block;
  }
  .dropdown .mm-learn-notion.mm-learn-notion .mm-link-list a:hover .link-arrow,
  .dropdown .mm-notion-templates.mm-learn-notion .mm-link-list a:hover .link-arrow,
  .dropdown .mm-blog.mm-learn-notion .mm-link-list a:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
  }
  .dropdown .mm-learn-notion.mm-learn-notion .mm-link-separator,
  .dropdown .mm-notion-templates.mm-learn-notion .mm-link-separator,
  .dropdown .mm-blog.mm-learn-notion .mm-link-separator {
    height: 1px;
    background: var(--border-muted, #e4e4e7);
    margin: 0.75rem 0;
    border: none;
    width: 100%;
  }
  .dropdown .mm-blog {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: var(--surface-body, #ffffff);
    border-radius: 1rem;
    padding: 1.5rem;
    list-style: none;
    margin: 0;
    width: 600px;
    max-width: 100%;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 1025px) {
  #mega-menu > li > ul {
    border-radius: 0.75rem;
  }
}
@keyframes mm-arrow-bounce {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(0.25em);
  }
  100% {
    transform: translateX(0);
  }
}
@media screen and (max-width: 1024px) {
  html.mega-menu-open {
    overflow: hidden;
    scrollbar-gutter: auto;
  }
  body.mega-menu-open {
    overflow: hidden;
    scrollbar-gutter: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .topnavBar .dropdownBackground {
    transition: none !important;
    will-change: auto;
  }
  .topnavBar .arrow {
    transition: none !important;
  }
  .dropdown {
    transition: none !important;
    will-change: auto;
  }
  .dropdown.entering-left, .dropdown.entering-right, .dropdown.exiting-left, .dropdown.exiting-right {
    transform: translateY(0) !important;
  }
}
html[data-reduce-motion=true] .topnavBar .dropdownBackground,
:root.prefers-reduced-motion .topnavBar .dropdownBackground {
  transition: none !important;
  will-change: auto;
}
html[data-reduce-motion=true] .topnavBar .arrow,
:root.prefers-reduced-motion .topnavBar .arrow {
  transition: none !important;
}
html[data-reduce-motion=true] .dropdown,
:root.prefers-reduced-motion .dropdown {
  transition: none !important;
  will-change: auto;
}
html[data-reduce-motion=true] .dropdown.entering-left, html[data-reduce-motion=true] .dropdown.entering-right, html[data-reduce-motion=true] .dropdown.exiting-left, html[data-reduce-motion=true] .dropdown.exiting-right,
:root.prefers-reduced-motion .dropdown.entering-left,
:root.prefers-reduced-motion .dropdown.entering-right,
:root.prefers-reduced-motion .dropdown.exiting-left,
:root.prefers-reduced-motion .dropdown.exiting-right {
  transform: translateY(0) !important;
}

/* stylelint-disable at-rule-no-unknown */
/* View Transitions API - Smooth page transitions */
/* Enable automatic view transitions for same-origin navigation */
/* stylelint-disable-next-line at-rule-no-unknown */
@view-transition {
  navigation: auto;
}
/* stylelint-enable at-rule-no-unknown */
/* Header continuity - stays in place during page transitions */
#masthead {
  view-transition-name: header;
}

/* Banner continuity */
#banner {
  view-transition-name: banner;
}

/* Header actions container - handles smooth swap between search and buy button */
#masthead .header-actions {
  view-transition-name: header-actions;
}

/* Footer continuity */
#colophon {
  view-transition-name: footer;
}

/* Main content area - smooth content transitions */
.main-content-box {
  view-transition-name: main-content;
}

/* Customize transition timing for smoother feel */
/* Override default zoom animations with simple fade */
::view-transition-old(root) {
  animation: 0.3s cubic-bezier(0.4, 0, 0.2, 1) both fade-out;
}

::view-transition-new(root) {
  animation: 0.3s cubic-bezier(0.4, 0, 0.2, 1) both fade-in;
}

@keyframes fade-out {
  to {
    opacity: 0;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
}
/* Header stays in place (no animation) */
::view-transition-old(header),
::view-transition-new(header) {
  animation: none;
}

/* Footer stays in place (no animation) */
::view-transition-old(footer),
::view-transition-new(footer) {
  animation: none;
}

/* Banner stays in place (no animation) */
::view-transition-old(banner),
::view-transition-new(banner) {
  animation: none;
}

/* Smooth fade for header actions when swapping search/buy button */
::view-transition-old(header-actions),
::view-transition-new(header-actions) {
  animation-duration: 0.2s;
  animation-timing-function: ease-in-out;
}

/* Content fade transition */
::view-transition-old(main-content),
::view-transition-new(main-content) {
  animation-duration: 0.25s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

:root[data-view-transitions=disabled] #masthead, :root[data-view-transitions=disabled] #banner, :root[data-view-transitions=disabled] #masthead .header-actions, :root[data-view-transitions=disabled] #colophon, :root[data-view-transitions=disabled] .main-content-box {
  view-transition-name: none !important;
}
:root[data-view-transitions=disabled]::view-transition-old(root), :root[data-view-transitions=disabled]::view-transition-new(root), :root[data-view-transitions=disabled]::view-transition-old(main-content), :root[data-view-transitions=disabled]::view-transition-new(main-content), :root[data-view-transitions=disabled]::view-transition-old(header-actions), :root[data-view-transitions=disabled]::view-transition-new(header-actions) {
  animation: none !important;
}

@media (prefers-reduced-motion: reduce) {
  #masthead,
  #banner,
  #masthead .header-actions,
  #colophon,
  .main-content-box {
    view-transition-name: none !important;
  }
  ::view-transition-old(root),
  ::view-transition-new(root),
  ::view-transition-old(main-content),
  ::view-transition-new(main-content),
  ::view-transition-old(header-actions),
  ::view-transition-new(header-actions) {
    animation: none !important;
  }
}
:root[data-reduce-motion=true] #masthead, :root[data-reduce-motion=true] #banner, :root[data-reduce-motion=true] #masthead .header-actions, :root[data-reduce-motion=true] #colophon, :root[data-reduce-motion=true] .main-content-box,
:root.prefers-reduced-motion #masthead,
:root.prefers-reduced-motion #banner,
:root.prefers-reduced-motion #masthead .header-actions,
:root.prefers-reduced-motion #colophon,
:root.prefers-reduced-motion .main-content-box {
  view-transition-name: none !important;
}
:root[data-reduce-motion=true]::view-transition-old(root), :root[data-reduce-motion=true]::view-transition-new(root), :root[data-reduce-motion=true]::view-transition-old(main-content), :root[data-reduce-motion=true]::view-transition-new(main-content), :root[data-reduce-motion=true]::view-transition-old(header-actions), :root[data-reduce-motion=true]::view-transition-new(header-actions),
:root.prefers-reduced-motion::view-transition-old(root),
:root.prefers-reduced-motion::view-transition-new(root),
:root.prefers-reduced-motion::view-transition-old(main-content),
:root.prefers-reduced-motion::view-transition-new(main-content),
:root.prefers-reduced-motion::view-transition-old(header-actions),
:root.prefers-reduced-motion::view-transition-new(header-actions) {
  animation: none !important;
}

/* main body styles */
#page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* header stuff */
#masthead.stuck {
  border-bottom: 1px solid var(--border-muted, #e4e4e7);
}
@media screen and (max-width: 1024px) {
  .two-column:not(.no-toc) #masthead {
    border-bottom: 1px solid var(--border-muted, #e4e4e7);
  }
}
.two-column #masthead {
  border-bottom: 1px solid var(--border-muted, #e4e4e7);
}
.three-column #masthead {
  border-bottom: 1px solid var(--border-muted, #e4e4e7);
}

#masthead > a.home-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 200px;
}
#masthead > a.home-link--avatar {
  grid-column: 1;
  justify-self: start;
}
#masthead > a.home-link--logo {
  grid-column: 1;
  justify-self: start;
  max-width: 220px;
}
#masthead .home-link--logo {
  gap: 0.5rem;
}
#masthead .home-link--logo picture.logo {
  display: block;
  width: 200px;
  max-width: 200px;
}
#masthead .home-link--logo picture.logo img {
  width: 100%;
  height: auto;
  display: block;
}
#masthead .home-link--logo picture.logo.logo--dark {
  display: none;
}
#masthead .home-link--logo picture.logo.logo--light {
  display: block;
}
@media screen and (max-width: 1024px) {
  #masthead > a.home-link--logo {
    grid-column: 1;
    max-width: 150px;
  }
}
@media screen and (max-width: 385px) {
  #masthead > a.home-link--logo {
    display: none;
  }
}

#masthead a.header-buy-button {
  border: 0;
  color: var(--text-button-primary, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-button-primary, #4f46e5);
  border-radius: 0.5rem;
  padding: 0 1rem;
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  height: 40px;
  box-sizing: border-box;
  min-width: fit-content;
  white-space: nowrap;
  transition: background 0.2s ease;
}
#masthead a.header-buy-button:hover {
  background: var(--surface-button-primary-hover, #4338ca);
}
@media screen and (max-width: 455px) {
  #masthead a.header-buy-button {
    font-size: 0;
  }
  #masthead a.header-buy-button::before {
    content: "Buy";
    font-size: 1rem;
  }
}

@media screen and (max-width: 1024px) {
  .cm-autocomplete {
    grid-column: 3;
    grid-row: 1;
  }
  .header-buy-button {
    grid-column: 3;
    grid-row: 1;
  }
  #masthead {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    align-content: center;
    background: #ffffff;
    grid-template-rows: 60px;
    z-index: 100000000;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    grid-column-gap: 0;
  }
  .hbbo #masthead {
    grid-template-columns: 1fr 120px auto;
  }
  #masthead .logo {
    width: 220px;
    cursor: pointer;
  }
  #masthead .mobile-header-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }
  #mega-menu-button {
    background: none;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #111827;
    transition: background 0.2s ease, color 0.2s ease;
    height: 44px;
    width: 44px;
    padding: 0;
    border-radius: 0.5rem;
    align-self: center;
  }
  #mega-menu-button:hover, #mega-menu-button:focus {
    background: var(--surface-elevated, #f4f4f5);
    color: #111827;
  }
  #masthead #mega-menu {
    grid-column: 1/-1;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 9999;
  }
  #masthead .header-actions .theme-toggle {
    display: none;
  }
  /* Remove side padding on mobile for full-width menu */
}
@media screen and (max-width: 1024px) and (max-width: 1024px) {
  #masthead {
    grid-template-columns: 1fr auto !important;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
/* /header stuff */
/* search box */
.aa-Form {
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: none;
  border-radius: 8px;
  position: relative;
  transition: all 0.2s ease;
  cursor: pointer;
}
.aa-Form input {
  cursor: pointer;
}
.aa-Form:hover {
  background: #ffffff;
  border-color: rgba(17, 24, 39, 0.12);
  box-shadow: none;
}
.aa-Form:focus-within {
  background: #ffffff;
  border-color: rgba(17, 24, 39, 0.15);
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.05);
}

.aa-SubmitIcon path {
  color: #6b7280;
  transition: color 0.2s ease;
}

.aa-Form:focus-within .aa-SubmitIcon path {
  color: #374151;
}

.cm-autocomplete {
  position: relative;
}

@media screen and (min-width: 1151px) {
  body .cm-autocomplete::before,
  body .search-button::before {
    content: " ";
    opacity: 0;
    transition: opacity 0.3s ease, border-color 0.2s ease, background 0.2s ease;
    pointer-events: none;
    font-family: "Figtree", sans-serif;
    background: var(--surface-muted, #fafafa);
    border: 1px solid var(--border-subtle, #f4f4f5);
    border-radius: 6px;
    color: var(--text-muted, #a1a1aa);
    font-weight: 500;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.6875rem;
    padding: 0.25em 0.5em;
    height: auto;
    display: flex;
    align-items: center;
    letter-spacing: 0.5px;
  }
  body .aa-Form:hover .cm-autocomplete::before,
  body .aa-Form:hover .search-button::before,
  body .search-button:hover::before {
    border-color: var(--border-muted, #e4e4e7);
    background: var(--surface-muted, #fafafa);
  }
  body.os-apple .cm-autocomplete::before,
  body.os-apple .search-button::before {
    content: "⌘ K";
    opacity: 1;
  }
  body.os-orange .cm-autocomplete::before,
  body.os-orange .search-button::before {
    content: "Ctrl K";
    padding: 0.25em 0.5em;
    opacity: 1;
  }
  body.os-orange .cm-autocomplete::after,
  body.os-orange .search-button::after {
    content: "⊞";
    opacity: 1;
    transition: opacity 0.6s;
    pointer-events: none;
    font-family: "Figtree", sans-serif;
    border-radius: 5px;
    color: #ffffff;
    font-weight: bold;
    position: absolute;
    right: calc(10px + 2.7em);
    top: 9px;
    font-size: 0.75rem;
    padding: 0;
    height: 20px;
    display: flex;
    align-items: center;
  }
}
/*
  body.os-orange .aa-Form::before {
    content: "  ﹢ K";
    padding: .5em .8em .5em 1.8em;
    opacity: 1;
    pointer-events: none;
    transition: opacity .6s 1.2s;
    font-family: $font-forte;
  }

  body.os-orange .aa-Form::after {
    content: "⊞";
    opacity: 1;
    pointer-events: none;
    transition: opacity .6s 1.2s;
    font-family: $font-forte;
  }

  body .aa-Form::after {
    color: $color-white-900;
    content: " ";
    font-weight: bold;
    opacity: 0;
    padding-right: 3.4em;
    position: absolute;
    right: 0;
    top: calc(50% - (1.18em / 2));
    transition: opacity .6s 1.2s;
    z-index: 100;
    transition: opacity 0s;
  }

  body .aa-Form::before {
    background: rgba($color-gray-900, 0.04);
    border: 1px solid rgba($color-gray-900, 0.06);
    border-radius: 5px;
    color: $color-gray-500;
    content: " ";
    font-weight: 500;
    opacity: 0;
    transition: opacity 0s;
    position: absolute;
    right: .5em;
    top: calc(50% - ((1em + (.5em * 2)) / 2));
    // delay added to prevent flicker when going back and forth from workspaces on macOS
  }

  body.os-apple .aa-Form:focus-within::before, body.os-orange .aa-Form:focus-within::before, body.os-orange .aa-Form:focus-within::after/*,
  body.os-apple .aa-Autocomplete[aria-expanded="true"] .aa-Form::before, body.os-orange .aa-Autocomplete[aria-expanded="true"] .aa-Form::before, body.os-orange .aa-Autocomplete[aria-expanded="true"] .aa-Form::after */
/*{
    opacity: 0;
    transition: opacity 0s;
  }
  */
/* /search box */
/* Search/Autocomplete Styles - Integrated from Elementor CSS */
/* Algolia Autocomplete Styling */
.autocomplete-header {
  display: none;
}

.aa-dropdown-menu .suggestion-post-thumbnail {
  width: 60px;
  height: 60px;
}
.aa-dropdown-menu a {
  font-size: 0.875rem !important;
}
.aa-dropdown-menu .aa-suggestion .suggestion-post-title {
  font-weight: 600 !important;
}

.aa-suggestions .aa-cursor {
  background-color: gainsboro !important;
}

/* Jet Search Pop-up Styling */
.jet-search__popup-content {
  margin-bottom: 50vh !important;
  background-color: #ffffff !important;
  border-radius: 5px !important;
  padding: 20px !important;
  width: calc(500px + 20vw) !important;
}

.jet-search_label aa-input {
  border: none !important;
}

.jet-search__field {
  border: none !important;
  color: #6b7280 !important;
}

input[type=search]:focus {
  outline: none !important;
}

.jet-search__submit {
  background-color: #111827 !important;
  padding: 13px 16px !important;
}
.jet-search__submit:hover {
  background-color: #4b5563 !important;
  padding: 13px 16px !important;
}

input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  height: 1em;
  width: 1em;
  border-radius: 50em;
  background: url(https://pro.fontawesome.com/releases/v5.10.0/svgs/solid/times-circle.svg) no-repeat 50% 50%;
  background-size: contain;
  opacity: 0;
  pointer-events: none;
}

input[type=search]:focus::-webkit-search-cancel-button {
  opacity: 0.3;
  pointer-events: all;
}

input[type=search].dark::-webkit-search-cancel-button {
  filter: invert(1);
}

html[data-theme=dark] input[type=search]::-webkit-search-cancel-button {
  filter: invert(1);
}

/* /Search/Autocomplete Styles */
/* header stuff */
#masthead .logo {
  box-sizing: border-box;
  width: 220px;
  max-width: 100%;
  height: auto;
}

#masthead .header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.75rem;
  grid-column: -2/-1;
}

@media screen and (max-width: 1024px) {
  #masthead .header-actions {
    display: none;
  }
}
#masthead {
  display: grid;
  align-items: center;
  align-content: center;
  background: var(--surface-body, #ffffff);
  grid-template-rows: 50px;
  z-index: 100;
  grid-column-gap: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--border-muted, #e4e4e7);
}
@media screen and (min-width: 1025px) {
  #masthead {
    grid-template-columns: minmax(160px, 220px) 1fr auto auto;
    background: var(--surface-body, #ffffff);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}
@media screen and (min-width: 1520px) {
  #masthead {
    padding-left: max(10px, (100% - 1500px) / 2);
    padding-right: max(10px, (100% - 1500px) / 2);
  }
}

.theme-toggle {
  border: 1px solid var(--border-muted, #e4e4e7);
  background: var(--surface-body, #ffffff);
  border-radius: 0.5rem;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary, #18181b);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.theme-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(56, 190, 255, 0.2);
}

.theme-toggle:hover {
  border-color: var(--border-strong, #d4d4d8);
}

.theme-toggle-wrapper {
  position: relative;
  display: inline-flex;
}

.theme-toggle__icon {
  display: none;
}
.theme-toggle__icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

[data-effective-theme=light] .theme-toggle__icon--sun {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

[data-effective-theme=dark] .theme-toggle__icon--moon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

html[data-theme=light] .theme-toggle__icon--sun,
html:not([data-theme]) .theme-toggle__icon--sun {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

html[data-theme=dark] .theme-toggle__icon--moon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (prefers-color-scheme: dark) {
  html:not([data-theme]) .theme-toggle__icon--sun {
    display: none;
  }
  html:not([data-theme]) .theme-toggle__icon--moon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
.theme-toggle-dropdown {
  position: absolute;
  display: none;
  min-width: 140px;
  background: var(--surface-body, #ffffff);
  border: 1px solid var(--border-muted, #e4e4e7);
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(24, 24, 27, 0.12), 0 10px 10px -5px rgba(24, 24, 27, 0.08);
  padding: 0.25rem;
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  transform: translateY(-4px);
}
.theme-toggle-dropdown.is-open {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0);
}
@media screen and (max-width: 1024px) {
  .theme-toggle-dropdown {
    z-index: 10001 !important;
    min-width: 180px;
    min-height: 150px;
  }
  .theme-toggle-dropdown.is-open {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

.theme-toggle-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: none;
  background: transparent;
  color: var(--text-primary, #18181b);
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  border-radius: 0.25rem;
  transition: background 0.15s ease;
}
.theme-toggle-option .theme-toggle-option__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-muted, #a1a1aa);
  transition: color 0.2s ease;
}
.theme-toggle-option .theme-toggle-option__icon svg {
  width: 18px;
  height: 18px;
  display: block;
}
.theme-toggle-option .theme-toggle-option__label {
  flex: 1;
  color: var(--text-primary, #18181b);
}
.theme-toggle-option .theme-toggle-option__check {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-muted, #a1a1aa);
  transition: color 0.2s ease;
}
.theme-toggle-option .theme-toggle-option__check svg {
  width: 16px;
  height: 16px;
  display: block;
}
.theme-toggle-option:hover, .theme-toggle-option:focus {
  background: var(--surface-muted, #fafafa);
  outline: none;
}
.theme-toggle-option:hover .theme-toggle-option__icon, .theme-toggle-option:focus .theme-toggle-option__icon {
  color: var(--text-primary, #18181b);
}
.theme-toggle-option:hover .theme-toggle-option__check, .theme-toggle-option:focus .theme-toggle-option__check {
  color: var(--text-primary, #18181b);
}
.theme-toggle-option:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}
.theme-toggle-option.is-selected .theme-toggle-option__check {
  display: flex;
}

#masthead .search-button {
  background: var(--surface-body, #ffffff);
  border: 1px solid var(--border-muted, #e4e4e7);
  box-shadow: none;
  height: 40px;
  cursor: pointer;
  color: var(--text-muted, #a1a1aa);
  display: flex;
  align-items: center;
  border-radius: 0.5rem;
  position: relative;
  transition: all 0.2s ease;
  width: 180px;
  padding: 0.45em 0.7em;
}
#masthead .search-button:hover {
  background: var(--surface-body, #ffffff);
  border-color: var(--border-strong, #d4d4d8);
  box-shadow: none;
}
#masthead .search-button:focus-within {
  background: var(--surface-body, #ffffff);
  border-color: var(--border-strong, #d4d4d8);
  box-shadow: 0 0 0 3px rgba(24, 24, 27, 0.05);
}
#masthead .search-button .search-button-icon {
  width: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}
#masthead .search-button .search-button-icon svg {
  height: 18px;
  width: 18px;
}
#masthead .search-button .search-button-icon svg path {
  stroke: var(--text-secondary, #52525b);
  fill: none;
  stroke-width: 3;
  transition: all 0.2s ease;
}
#masthead .search-button .search-button-placeholder {
  font-size: 0.9375rem;
  height: 16px;
  color: var(--text-muted, #a1a1aa);
  transition: color 0.2s ease;
  padding-right: 0.35em;
  margin-left: 0.5rem;
}
#masthead .search-button:focus-within .search-button-placeholder {
  color: var(--text-muted, #a1a1aa);
}
@media screen and (max-width: 1150px) and (min-width: 1025px) {
  #masthead .search-button {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
  }
  #masthead .search-button .search-button-placeholder {
    display: none;
  }
  #masthead .search-button .search-button-icon svg path {
    stroke: var(--text-primary, #18181b);
  }
}
@media screen and (max-width: 1024px) {
  #masthead .search-button {
    cursor: pointer;
    border: 0;
    background: none;
    box-shadow: none;
    height: 44px;
    width: 44px;
    padding: 0;
    justify-content: center;
    border-radius: 0.5rem;
    align-self: center;
  }
  #masthead .search-button .search-button-placeholder {
    display: none;
  }
  #masthead .search-button .search-button-icon svg path {
    stroke: var(--text-primary, #18181b);
    fill: none;
  }
  #masthead .search-button:hover {
    background: var(--surface-elevated, #f4f4f5);
    color: var(--text-primary, #18181b);
  }
  #masthead .search-button:hover .search-button-icon svg path {
    stroke: var(--text-primary, #18181b);
    fill: none;
  }
}

#masthead .aa-DetachedSearchButton {
  border: 0;
  background: none;
  height: 100%;
  box-shadow: none;
}

#masthead .aa-Autocomplete {
  height: 100%;
}

#masthead .cm-autocomplete {
  height: 100%;
}

#masthead .aa-DetachedSearchButton svg path {
  stroke: #111827;
  fill: #111827;
  stroke-width: 1;
}

.aa-DetachedOverlay {
  height: 100%;
  width: 100%;
  background: rgba(17, 24, 39, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.aa-DetachedContainer {
  height: 84%;
  position: relative;
  width: 84%;
  border-radius: 5px;
}

.aa-Form .aa-InputWrapperPrefix svg path {
  stroke: #6b7280;
  fill: #6b7280;
  stroke-width: 1.5;
  transition: all 0.2s ease;
}

.aa-Form:focus-within .aa-InputWrapperPrefix svg path {
  stroke: #374151;
  fill: #374151;
}

@media screen and (max-width: 1024px) {
  .aa-DetachedSearchButtonPlaceholder {
    display: none;
  }
  #masthead .cm-autocomplete:hover {
    background: #111827;
    color: #ffffff;
  }
  #masthead .cm-autocomplete:hover .aa-DetachedSearchButton svg path {
    stroke: #ffffff;
    fill: #ffffff;
  }
}
@media screen and (min-width: 1025px) {
  #masthead {
    grid-template-columns: 240px minmax(360px, 1fr) auto auto;
  }
  #masthead .cm-autocomplete,
  #masthead .search-button {
    max-width: 220px;
  }
  #masthead .header-actions {
    gap: 1rem;
    grid-column: 4;
  }
  #masthead #mega-menu {
    position: relative;
    grid-column: 3;
    justify-self: end;
  }
  #masthead #mega-menu-button {
    display: none;
  }
  #masthead .mobile-header-buttons {
    display: none;
  }
}
@media screen and (max-width: 680px) {
  .aa-ClearButton {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .site-main .entry-content {
    overflow-x: hidden;
  }
}
html[data-theme=light],
html:not([data-theme]) {
  color-scheme: light;
}

html[data-theme=dark] {
  color-scheme: dark;
}
html[data-theme=dark] body {
  background-color: var(--surface-body, #ffffff);
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] #masthead .home-link--logo .logo--light {
  display: none;
}
html[data-theme=dark] #masthead .home-link--logo .logo--dark {
  display: block;
}
html[data-theme=dark] {
  /* .site-main,
  .site-main .entry-content,
  .site-main .entry-content p,
  .site-main .entry-content ul,
  .site-main .entry-content ol,
  .site-main .entry-content li,
  .site-main .entry-content blockquote,
  .site-main .entry-content span,
  .site-main .entry-content table,
  .site-main .entry-content td,
  .site-main .entry-content th {
    :not(.btn, .btn *) {
      color: color-text(secondary);
    }
  } */
}
html[data-theme=dark] .hljs {
  background: transparent !important;
}
html[data-theme=dark] .site-main .entry-content h1,
html[data-theme=dark] .site-main .entry-content h2,
html[data-theme=dark] .site-main .entry-content h3,
html[data-theme=dark] .site-main .entry-content h4,
html[data-theme=dark] .site-main .entry-content h5,
html[data-theme=dark] .site-main .entry-content h6 {
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] .site-main .entry-content h1:hover,
html[data-theme=dark] .site-main .entry-content h2:hover,
html[data-theme=dark] .site-main .entry-content h3:hover,
html[data-theme=dark] .site-main .entry-content h4:hover,
html[data-theme=dark] .site-main .entry-content h5:hover,
html[data-theme=dark] .site-main .entry-content h6:hover {
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] .site-main .entry-content strong,
html[data-theme=dark] .site-main .entry-content b {
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] body h1.entry-title {
  color: #ffffff;
}
html[data-theme=dark] .text-fragment-link-button {
  box-shadow: 0 18px 36px rgba(17, 24, 39, 0.55);
}
html[data-theme=dark] .text-fragment-link-button:hover::after {
  background: rgba(17, 24, 39, 0.92);
  color: #ffffff;
}
html[data-theme=dark] .text-fragment-link-button:hover::before {
  border-top-color: rgba(17, 24, 39, 0.92);
}
html[data-theme=dark] .text-fragment-link-button.copied {
  background: rgba(74, 222, 128, 0.2);
  border-color: rgba(74, 222, 128, 0.45);
  color: #bbf7d0;
}
html[data-theme=dark] .text-fragment-link-button.copied:hover {
  background: rgba(74, 222, 128, 0.25);
  border-color: rgba(74, 222, 128, 0.55);
}
html[data-theme=dark] .text-fragment-link-button.copied:hover::after {
  background: #16a34a;
  color: #ffffff;
}
html[data-theme=dark] .text-fragment-link-button.copied:hover::before {
  border-top-color: rgba(74, 222, 128, 0.35);
}
html[data-theme=dark] a.heading-link {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text-secondary, #52525b);
  box-shadow: 0 18px 36px rgba(17, 24, 39, 0.55);
}
html[data-theme=dark] a.heading-link:hover,
html[data-theme=dark] a.heading-link:focus {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] a.heading-link:active {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(0);
}
html[data-theme=dark] a.heading-link.copied {
  background: rgba(74, 222, 128, 0.2);
  border-color: rgba(74, 222, 128, 0.45);
  color: #bbf7d0;
}
html[data-theme=dark] a.heading-link.copied:hover {
  background: rgba(74, 222, 128, 0.25);
  border-color: rgba(74, 222, 128, 0.55);
}
html[data-theme=dark] a.heading-link:focus-visible {
  outline: 2px solid rgba(147, 197, 253, 0.7);
}
html[data-theme=dark] .one-column .site-main .entry-content .section-link-header .section-copy-h2.copied,
html[data-theme=dark] .one-column .site-main .entry-content .section-link-header .section-copy-h3.copied,
html[data-theme=dark] .two-column .site-main .entry-content .section-link-header .section-copy-h2.copied,
html[data-theme=dark] .two-column .site-main .entry-content .section-link-header .section-copy-h3.copied,
html[data-theme=dark] .three-column .site-main .entry-content .section-link-header .section-copy-h2.copied,
html[data-theme=dark] .three-column .site-main .entry-content .section-link-header .section-copy-h3.copied {
  background: rgba(74, 222, 128, 0.2);
  border-color: rgba(74, 222, 128, 0.45);
  color: #bbf7d0;
}
html[data-theme=dark] .one-column .site-main .entry-content .section-link-header .section-copy-h2.copied:hover,
html[data-theme=dark] .one-column .site-main .entry-content .section-link-header .section-copy-h3.copied:hover,
html[data-theme=dark] .two-column .site-main .entry-content .section-link-header .section-copy-h2.copied:hover,
html[data-theme=dark] .two-column .site-main .entry-content .section-link-header .section-copy-h3.copied:hover,
html[data-theme=dark] .three-column .site-main .entry-content .section-link-header .section-copy-h2.copied:hover,
html[data-theme=dark] .three-column .site-main .entry-content .section-link-header .section-copy-h3.copied:hover {
  background: rgba(74, 222, 128, 0.25);
  border-color: rgba(74, 222, 128, 0.55);
}
html[data-theme=dark] .one-column .site-main .entry-content .section-link-header .section-copy-h2.copied:hover::after,
html[data-theme=dark] .one-column .site-main .entry-content .section-link-header .section-copy-h3.copied:hover::after,
html[data-theme=dark] .two-column .site-main .entry-content .section-link-header .section-copy-h2.copied:hover::after,
html[data-theme=dark] .two-column .site-main .entry-content .section-link-header .section-copy-h3.copied:hover::after,
html[data-theme=dark] .three-column .site-main .entry-content .section-link-header .section-copy-h2.copied:hover::after,
html[data-theme=dark] .three-column .site-main .entry-content .section-link-header .section-copy-h3.copied:hover::after {
  background: #16a34a;
  color: #ffffff;
}
html[data-theme=dark] .one-column .site-main .entry-content .section-link-header .section-copy-h2.copied:hover::before,
html[data-theme=dark] .one-column .site-main .entry-content .section-link-header .section-copy-h3.copied:hover::before,
html[data-theme=dark] .two-column .site-main .entry-content .section-link-header .section-copy-h2.copied:hover::before,
html[data-theme=dark] .two-column .site-main .entry-content .section-link-header .section-copy-h3.copied:hover::before,
html[data-theme=dark] .three-column .site-main .entry-content .section-link-header .section-copy-h2.copied:hover::before,
html[data-theme=dark] .three-column .site-main .entry-content .section-link-header .section-copy-h3.copied:hover::before {
  border-top-color: #16a34a;
}
html[data-theme=dark] #page {
  background-color: transparent;
}
html[data-theme=dark] #masthead {
  /* background: color-surface(body); */
  background: var(--surface-body, #ffffff);
  border-bottom: 1px solid var(--border-faint, rgba(24, 24, 27, 0.05));
  transition: background 0.3s ease;
}
@media screen and (min-width: 1025px) {
  html[data-theme=dark] #masthead {
    background: var(--surface-body-transparent, color-mix(in srgb, #ffffff 50%, transparent));
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
}
@media screen and (min-width: 1025px) {
  html[data-theme=dark] #masthead {
    background: var(--surface-body-transparent, color-mix(in srgb, #ffffff 50%, transparent));
  }
}
html[data-theme=dark] #masthead.stuck {
  background: var(--surface-body, #ffffff);
  border-bottom: 1px solid var(--border-faint, rgba(24, 24, 27, 0.05));
}
@media screen and (min-width: 1025px) {
  html[data-theme=dark] #masthead.stuck {
    background: var(--surface-body-transparent-hover, color-mix(in srgb, #ffffff 85%, transparent));
  }
}
@media screen and (max-width: 1024px) {
  html[data-theme=dark] .two-column:not(.no-toc) #masthead {
    border-bottom: 1px solid var(--border-faint, rgba(24, 24, 27, 0.05));
  }
}
html[data-theme=dark] #masthead #mega-menu-button {
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] #masthead #mega-menu-button:hover, html[data-theme=dark] #masthead #mega-menu-button:focus {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] #masthead .search-button {
  background: var(--surface-body, #ffffff);
  border-color: var(--border-subtle, #f4f4f5);
  color: var(--text-muted, #a1a1aa);
}
html[data-theme=dark] #masthead .search-button .search-button-icon svg path {
  stroke: var(--text-secondary, #52525b);
  fill: none;
}
@media screen and (max-width: 1024px) {
  html[data-theme=dark] #masthead .search-button {
    background: none;
    border: 0;
    color: var(--text-primary, #18181b);
  }
  html[data-theme=dark] #masthead .search-button .search-button-icon svg path {
    stroke: var(--text-primary, #18181b);
    fill: none;
  }
  html[data-theme=dark] #masthead .search-button:hover, html[data-theme=dark] #masthead .search-button:focus {
    background: var(--surface-elevated, #f4f4f5);
    color: var(--text-primary, #18181b);
  }
  html[data-theme=dark] #masthead .search-button:hover .search-button-icon svg path, html[data-theme=dark] #masthead .search-button:focus .search-button-icon svg path {
    stroke: var(--text-primary, #18181b);
    fill: none;
  }
}
html[data-theme=dark] #masthead .search-button:hover {
  border-color: var(--border-strong, #d4d4d8);
}
html[data-theme=dark] #masthead .search-button:focus-within {
  border-color: rgba(216, 180, 254, 0.35);
  box-shadow: 0 0 0 3px rgba(192, 132, 252, 0.25);
}
html[data-theme=dark] #masthead .search-button-placeholder {
  color: var(--text-muted, #a1a1aa);
}
html[data-theme=dark] .theme-toggle {
  background: var(--surface-body, #ffffff);
  border-color: var(--border-subtle, #f4f4f5);
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] .theme-toggle:hover {
  border-color: var(--border-strong, #d4d4d8);
}
html[data-theme=dark] .theme-toggle:focus-visible {
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.35);
}
html[data-theme=dark] #mega-menu > li > a {
  color: var(--text-secondary, #52525b);
}
html[data-theme=dark] #mega-menu > li > a:hover,
html[data-theme=dark] #mega-menu > li > a:focus {
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] #mega-menu > li > button {
  color: var(--text-secondary, #52525b);
}
html[data-theme=dark] #mega-menu > li > button:hover,
html[data-theme=dark] #mega-menu > li > button:focus {
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] #mega-menu > li ul {
  background: var(--surface-body, #ffffff);
  border: 1px solid var(--border-subtle, #f4f4f5);
  box-shadow: 0 25px 45px -20px rgba(0, 0, 0, 0.55);
}
html[data-theme=dark] #mega-menu .mm-link .mm-text span {
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] #mega-menu .mm-link .mm-text p {
  color: var(--text-secondary, #52525b);
}
html[data-theme=dark] #mega-menu .mm-link > a:hover,
html[data-theme=dark] #mega-menu .mm-link > a:focus-within {
  background: var(--surface-body, #ffffff);
}
html[data-theme=dark] #mega-menu > li ul .quiet-links {
  background: rgba(255, 255, 255, 0.04);
}
html[data-theme=dark] #mega-menu > li ul .quiet-links a {
  color: var(--text-secondary, #52525b);
}
html[data-theme=dark] #mega-menu > li ul .quiet-links a:hover,
html[data-theme=dark] #mega-menu > li ul .quiet-links a:focus-within {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] .affiliate-disclaimer {
  color: var(--text-secondary, #52525b);
}
html[data-theme=dark] .affiliate-disclaimer a {
  color: #bfdbfe !important;
}
html[data-theme=dark] .wp-block-table table {
  background: transparent;
}
html[data-theme=dark] .wp-block-table thead th:first-child {
  border-top-left-radius: 0.5rem;
}
html[data-theme=dark] .wp-block-table thead th:last-child {
  border-top-right-radius: 0.5rem;
}
html[data-theme=dark] .wp-block-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 0.5rem;
}
html[data-theme=dark] .wp-block-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 0;
}
html[data-theme=dark] .wp-block-table.header-stuck thead th:first-child {
  border-top-left-radius: 0;
}
html[data-theme=dark] .wp-block-table.header-stuck thead th:last-child {
  border-top-right-radius: 0;
}
html[data-theme=dark] .wp-block-table td,
html[data-theme=dark] .wp-block-table th {
  border-color: var(--border-subtle, #f4f4f5);
  color: var(--text-secondary, #52525b);
}
html[data-theme=dark] .wp-block-table th {
  background: var(--surface-elevated, #f4f4f5);
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] .wp-block-table tbody tr:nth-child(even) {
  background: var(--surface-muted, #fafafa);
}
html[data-theme=dark] .wp-block-table tbody tr:nth-child(odd) {
  background: var(--surface-body, #ffffff);
}
html[data-theme=dark] .wp-block-table tbody tr:hover {
  background: var(--surface-elevated, #f4f4f5);
}
html[data-theme=dark] .wp-block-table .table-copy-markdown-btn {
  background: var(--surface-body, #ffffff);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text-secondary, #52525b);
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.55);
}
html[data-theme=dark] .wp-block-table .table-copy-markdown-btn:hover {
  background: var(--surface-muted, #fafafa);
  border-color: var(--border-muted, #e4e4e7);
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] .wp-block-table .table-copy-markdown-btn.copied {
  background: rgba(74, 222, 128, 0.2);
  border-color: rgba(74, 222, 128, 0.45);
  color: #bbf7d0;
}
html[data-theme=dark] .two-column .site-main .entry-content p code,
html[data-theme=dark] .two-column .site-main .entry-content li code,
html[data-theme=dark] .two-column .site-main .entry-content td code,
html[data-theme=dark] .three-column .site-main .entry-content p code,
html[data-theme=dark] .three-column .site-main .entry-content li code,
html[data-theme=dark] .three-column .site-main .entry-content td code,
html[data-theme=dark] figcaption code {
  background-color: var(--surface-muted, #fafafa);
  border-color: var(--border-subtle, #f4f4f5);
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] kbd {
  background-color: var(--surface-muted, #fafafa);
  border-color: var(--border-subtle, #f4f4f5);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.55), 0 2px 0 0 rgba(var(--text-primary, #18181b), 0.08) inset;
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] .search-keyboard-hints {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary, #52525b);
}
html[data-theme=dark] .search-keyboard-hints .kbd-key {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.45);
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] div.wp-block-pb-accordion-item {
  background: transparent;
  border-color: var(--border-subtle, #f4f4f5) !important;
  color: var(--text-secondary, #52525b);
}
html[data-theme=dark] div.wp-block-pb-accordion-item:hover {
  border-color: var(--border-muted, #e4e4e7) !important;
}
html[data-theme=dark] button.c-accordion__title::before,
html[data-theme=dark] button.c-accordion__title::after,
html[data-theme=dark] .is-open > button.c-accordion__title::after {
  color: var(--text-secondary, #52525b);
}
html[data-theme=dark] .c-accordion__item h3.c-accordion__title {
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] a[class^=accordion-link] {
  color: var(--text-secondary, #52525b) !important;
}
html[data-theme=dark] a[class^=accordion-link]:hover {
  color: var(--text-primary, #18181b) !important;
}
html[data-theme=dark] a[class^=accordion-link]::after {
  background-color: rgba(17, 24, 39, 0.92);
  color: #ffffff;
}
html[data-theme=dark] .wp-block-embed-twitter,
html[data-theme=dark] .wp-block-embed-twitter > div {
  background: transparent !important;
  border: none !important;
  border-radius: 0.75rem;
  overflow: hidden;
}
html[data-theme=dark] .wp-block-embed-twitter iframe {
  background: transparent;
  border-radius: 0.5rem;
}
html[data-theme=dark] .wp-block-embed__wrapper {
  border: none !important;
}
html[data-theme=dark] blockquote.twitter-tweet {
  background: transparent !important;
  color: var(--text-secondary, #52525b);
  border: none !important;
}
html[data-theme=dark] .wp-block-code {
  background: var(--surface-muted, #fafafa);
  border-color: var(--border-subtle, #f4f4f5) !important;
}
html[data-theme=dark] .code-block-copy-btn,
html[data-theme=dark] .code-block-expand-btn {
  background: var(--surface-body, #ffffff);
  border-color: var(--border-muted, #e4e4e7);
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] .code-block-copy-btn:hover,
html[data-theme=dark] .code-block-expand-btn:hover {
  background: var(--surface-elevated, #f4f4f5);
  border-color: var(--border-strong, #d4d4d8);
}
html[data-theme=dark] .hljs {
  background: transparent !important;
}
html[data-theme=dark] .documentation-menu {
  background: transparent;
  border-right: 1px solid var(--border-subtle, #f4f4f5);
  color: var(--text-secondary, #52525b);
  box-shadow: none;
}
html[data-theme=dark] html body .doc a {
  color: var(--text-secondary, #52525b);
}
html[data-theme=dark] html body .doc a:hover {
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] .doc > span,
html[data-theme=dark] .doc-header > span {
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] .doc li > span {
  color: var(--text-muted, #a1a1aa);
}
html[data-theme=dark] .doc > ul > li > ul li:not(.parent-component) > a,
html[data-theme=dark] .doc > ul > li > ul > li.parent-component > a:first-child {
  color: var(--text-secondary, #52525b);
}
html[data-theme=dark] .doc > ul > li > ul li:not(.parent-component) > a:hover,
html[data-theme=dark] .doc > ul > li > ul > li.parent-component > a:first-child:hover {
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] .doc > ul > li > ul li.active-component > a,
html[data-theme=dark] .doc > ul > li > ul li.active-subcomponent > a {
  color: var(--text-link, #4f46e5);
  font-weight: bold;
}
html[data-theme=dark] .doc-close {
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] .doc-close:hover, html[data-theme=dark] .doc-close:focus {
  background: var(--surface-elevated, #f4f4f5);
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] li.parent-component > ul {
  border-left-color: var(--border-subtle, #f4f4f5);
}
html[data-theme=dark] .doc > ul > li > ul > li.parent-component > a.documentation-menu-arrow {
  color: var(--text-secondary, #52525b);
  transition: background 0.2s ease, color 0.1s ease;
}
html[data-theme=dark] .doc > ul > li > ul > li.parent-component > a.documentation-menu-arrow:hover {
  color: var(--text-primary, #18181b);
}
@media screen and (min-width: 1025px) and (max-width: 1199px) {
  html[data-theme=dark] .three-column .documentation-menu .toc {
    font-size: 0.875rem !important;
    color: var(--text-secondary, #52525b) !important;
  }
  html[data-theme=dark] .three-column .documentation-menu .toc > span,
  html[data-theme=dark] .three-column .documentation-menu .toc .toc-header > span {
    color: var(--text-primary, #18181b) !important;
    font-size: 0.875rem !important;
  }
  html[data-theme=dark] .three-column .documentation-menu .toc a {
    color: var(--text-secondary, #52525b) !important;
    font-size: 0.875rem !important;
  }
  html[data-theme=dark] .three-column .documentation-menu .toc a:hover {
    color: var(--text-primary, #18181b) !important;
  }
  html[data-theme=dark] .three-column .documentation-menu .toc a.is-active {
    color: #60a5fa !important;
  }
  html[data-theme=dark] .three-column .documentation-menu .toc li.scrollspy-active > a {
    color: var(--text-primary, #18181b) !important;
  }
  html[data-theme=dark] html body .three-column .documentation-menu .toc a {
    color: var(--text-secondary, #52525b) !important;
    font-size: 0.875rem !important;
  }
  html[data-theme=dark] html body .three-column .documentation-menu .toc a:hover {
    color: var(--text-primary, #18181b) !important;
  }
  html[data-theme=dark] html body .three-column .documentation-menu .toc a.is-active {
    color: #60a5fa !important;
  }
  html[data-theme=dark] .three-column .documentation-menu .toc li.scrollspy-active > a {
    color: var(--text-primary, #18181b) !important;
  }
}
html[data-theme=dark] .two-column .main-content-box .site-main,
html[data-theme=dark] .three-column .main-content-box .site-main {
  border-left: none;
  border-right: none;
}
html[data-theme=dark] .table-of-contents {
  background: transparent;
  border-left: 1px solid var(--border-subtle, #f4f4f5);
}
html[data-theme=dark] .table-of-contents::before {
  background: var(--border-subtle, #f4f4f5);
}
html[data-theme=dark] .table-of-contents .toc > span {
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] .table-of-contents .toc a {
  color: var(--text-secondary, #52525b);
}
html[data-theme=dark] .table-of-contents .toc a:hover {
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] .table-of-contents .return-link {
  color: var(--text-secondary, #52525b);
}
html[data-theme=dark] .table-of-contents .return-link:hover {
  color: var(--text-primary, #18181b);
}
@media screen and (min-width: 1025px) and (max-width: 1199px) {
  html[data-theme=dark] .two-column .table-of-contents {
    font-size: 0.875rem !important;
  }
  html[data-theme=dark] .two-column .table-of-contents nav.toc {
    color: var(--text-secondary, #52525b) !important;
    font-size: 0.875rem !important;
  }
  html[data-theme=dark] .two-column .table-of-contents .toc > span,
  html[data-theme=dark] .two-column .table-of-contents .toc-header > span {
    color: var(--text-primary, #18181b) !important;
    font-size: 0.875rem !important;
    background: transparent !important;
  }
  html[data-theme=dark] .two-column .table-of-contents html body .toc a {
    color: var(--text-secondary, #52525b) !important;
    font-size: 0.875rem !important;
  }
  html[data-theme=dark] .two-column .table-of-contents html body .toc a:hover {
    color: var(--text-primary, #18181b) !important;
  }
  html[data-theme=dark] .two-column .table-of-contents html body .toc a.is-active {
    color: #60a5fa !important;
  }
  html[data-theme=dark] .two-column .table-of-contents .toc li.scrollspy-active > a {
    color: var(--text-primary, #18181b) !important;
  }
}
html[data-theme=dark] .aa-DetachedOverlay {
  background: var(--surface-overlay, rgba(24, 24, 27, 0.6));
}
html[data-theme=dark] .aa-DetachedContainer,
html[data-theme=dark] .jet-search__popup-content {
  background: var(--surface-body, #ffffff) !important;
  color: var(--text-primary, #18181b) !important;
  border: 1px solid var(--border-muted, #e4e4e7) !important;
}
html[data-theme=dark] .aa-Form {
  background: var(--surface-muted, #fafafa);
  border: 1px solid var(--border-muted, #e4e4e7);
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] .aa-Form input {
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] .aa-SubmitIcon path,
html[data-theme=dark] .aa-Form .aa-InputWrapperPrefix svg path {
  color: var(--text-secondary, #52525b);
  stroke: var(--text-secondary, #52525b);
  fill: var(--text-secondary, #52525b);
}
html[data-theme=dark] .aa-Form:focus-within {
  background: var(--surface-body, #ffffff);
  border-color: var(--border-strong, #d4d4d8);
  box-shadow: 0 0 0 3px rgba(24, 24, 27, 0.08);
}
@media screen and (min-width: 1151px) {
  html[data-theme=dark] body .cm-autocomplete::before,
  html[data-theme=dark] body .search-button::before {
    background: var(--surface-muted, #fafafa);
    border: 1px solid var(--border-subtle, #f4f4f5);
    color: var(--text-secondary, #52525b);
  }
}
html[data-theme=dark] .aa-Panel,
html[data-theme=dark] .aa-PanelLayout,
html[data-theme=dark] .aa-PanelLayout > * {
  background: transparent;
  color: var(--text-secondary, #52525b);
}
html[data-theme=dark] .aa-SourceHeader,
html[data-theme=dark] .aa-SourceFooter {
  color: var(--text-muted, #a1a1aa);
  border-color: rgba(255, 255, 255, 0.12);
}
html[data-theme=dark] .aa-ItemLink {
  background: transparent;
  border-radius: 0.5rem;
  transition: background 0.15s ease, color 0.15s ease;
}
html[data-theme=dark] .aa-Item[aria-selected=true] .aa-ItemLink,
html[data-theme=dark] .aa-ItemLink:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] .aa-ItemTitle {
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] .aa-ItemSubtitle,
html[data-theme=dark] .aa-ItemContentDescription {
  color: var(--text-secondary, #52525b);
}
html[data-theme=dark] .aa-ItemUrl {
  color: #bfdbfe;
}
html[data-theme=dark] .aa-Tabs,
html[data-theme=dark] .aa-Pagination {
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
html[data-theme=dark] .aa-PanelButtons button,
html[data-theme=dark] .aa-Tabs button,
html[data-theme=dark] .aa-Pagination button {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text-secondary, #52525b);
  border-radius: 0.25rem;
}
html[data-theme=dark] .aa-PanelButtons button:hover,
html[data-theme=dark] .aa-Tabs button:hover,
html[data-theme=dark] .aa-Pagination button:hover,
html[data-theme=dark] .aa-Tabs button[aria-selected=true],
html[data-theme=dark] .aa-Pagination button[aria-current=true] {
  background: rgba(255, 255, 255, 0.16);
  color: var(--text-primary, #18181b);
  border-color: rgba(255, 255, 255, 0.24);
}
html[data-theme=dark] .jet-search__submit {
  background-color: #9333ea !important;
}
html[data-theme=dark] .jet-search__submit:hover {
  background-color: #a855f7 !important;
}
html[data-theme=dark] #colophon {
  background: var(--surface-body, #ffffff);
  color: var(--text-secondary, #52525b);
  /* border-top: 1px solid color-border(subtle); */
  border-top: 1px solid var(--border-faint, rgba(24, 24, 27, 0.05));
  margin-top: auto;
}
html[data-theme=dark] #colophon a {
  color: var(--text-primary, #18181b);
  text-decoration: none;
  transition: text-decoration 0.2s ease;
}
html[data-theme=dark] #colophon a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
html[data-theme=dark] #colophon .boring-links {
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] #colophon > nav > section > span strong {
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] #colophon .social-links a {
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] #colophon .social-links a[href*=youtube]:hover {
  color: #ff0000;
}
html[data-theme=dark] #colophon .social-links a[href*=twitter]:hover {
  color: #1da1f2;
}
html[data-theme=dark] #colophon .social-links a[href*=instagram]:hover {
  color: #e4405f;
}
html[data-theme=dark] #colophon .social-links a[href*=spotify]:hover {
  color: #1db954;
}
html[data-theme=dark] #colophon .social-links a[href*=facebook]:hover {
  color: #1877f2;
}
html[data-theme=dark] {
  /* Search popup dark mode styles */
}
html[data-theme=dark] .search-modal {
  background: var(--surface-body-transparent-hover, color-mix(in srgb, #ffffff 85%, transparent));
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
html[data-theme=dark] .search-modal .search-box {
  background: var(--surface-body, #ffffff);
  box-shadow: 0 20px 60px rgba(24, 24, 27, 0.6);
  border: 1px solid var(--border-subtle, #f4f4f5);
}
html[data-theme=dark] .search-modal .cmswt-SearchBox {
  background: var(--surface-body, #ffffff);
}
html[data-theme=dark] .search-modal .ais-SearchBox-input {
  background: var(--surface-body, #ffffff) !important;
  border-color: var(--border-muted, #e4e4e7) !important;
  color: var(--text-primary, #18181b) !important;
  transition: border-color 0.15s ease !important;
}
html[data-theme=dark] .search-modal .ais-SearchBox-input::placeholder {
  color: var(--text-muted, #a1a1aa) !important;
}
html[data-theme=dark] .search-modal .ais-SearchBox-input:hover {
  border-color: var(--border-strong, #d4d4d8) !important;
}
html[data-theme=dark] .search-modal .ais-SearchBox-input:focus {
  background: var(--surface-body, #ffffff) !important;
  border-color: var(--border-strong, #d4d4d8) !important;
  box-shadow: 0 0 0 3px rgba(24, 24, 27, 0.08) !important;
}
html[data-theme=dark] .search-modal .cmswt-SearchBox .search-close {
  color: var(--text-secondary, #52525b);
}
html[data-theme=dark] .search-modal .cmswt-SearchBox .search-close:hover {
  background: var(--surface-elevated, #f4f4f5);
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] .search-modal ul.cmswt-IndexSwitcher {
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: none !important;
  border-right: none !important;
}
html[data-theme=dark] .search-modal .cmswt-IndexSwitcher-item a,
html[data-theme=dark] .search-modal .cmswt-IndexSwitcher-item button {
  box-sizing: border-box !important;
  border-radius: 6px !important;
  padding: 6px 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.15s ease !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  border: 1px solid transparent !important;
  box-shadow: none !important;
  background: transparent !important;
}
html[data-theme=dark] .search-modal .cmswt-IndexSwitcher-item:not(.active) a,
html[data-theme=dark] .search-modal .cmswt-IndexSwitcher-item:not(.active) button {
  border-color: rgba(255, 255, 255, 0.18) !important;
  color: var(--text-secondary, #52525b) !important;
}
html[data-theme=dark] .search-modal .cmswt-IndexSwitcher-item:not(.active) a:hover,
html[data-theme=dark] .search-modal .cmswt-IndexSwitcher-item:not(.active) button:hover {
  border-color: rgba(255, 255, 255, 0.24) !important;
  color: var(--text-primary, #18181b) !important;
}
html[data-theme=dark] .search-modal .cmswt-IndexSwitcher-item.active a,
html[data-theme=dark] .search-modal .cmswt-IndexSwitcher-item.active button {
  color: var(--text-primary, #18181b) !important;
  border-color: rgba(255, 255, 255, 0.24) !important;
  font-weight: 500 !important;
}
html[data-theme=dark] .search-modal .cmswt-IndexSwitcher-item a:active,
html[data-theme=dark] .search-modal .cmswt-IndexSwitcher-item button:active {
  transform: translateY(1px) !important;
  box-shadow: inset 0 1px 2px rgba(17, 24, 39, 0.1) !important;
}
html[data-theme=dark] .search-modal .cmswt-Pagination {
  background: var(--surface-body, #ffffff);
  border-top-color: rgba(255, 255, 255, 0.12);
}
html[data-theme=dark] .search-modal .ais-Pagination-item .ais-Pagination-link {
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  background: transparent !important;
  border-radius: 6px !important;
  padding: 4px 8px !important;
  min-width: 28px !important;
  height: 28px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.15s ease !important;
  font-size: 0.875em !important;
  font-weight: 500 !important;
}
html[data-theme=dark] .search-modal .ais-Pagination-item:not(.ais-Pagination-item--disabled) .ais-Pagination-link {
  border-color: rgba(255, 255, 255, 0.18) !important;
  color: var(--text-secondary, #52525b) !important;
}
html[data-theme=dark] .search-modal .ais-Pagination-item:not(.ais-Pagination-item--disabled) .ais-Pagination-link:hover {
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.24) !important;
  color: var(--text-primary, #18181b) !important;
}
html[data-theme=dark] .search-modal .ais-Pagination-item.ais-Pagination-item--disabled .ais-Pagination-link {
  opacity: 0.4;
  cursor: not-allowed;
}
html[data-theme=dark] .search-modal .ais-Pagination-item.ais-Pagination-item--selected .ais-Pagination-link {
  background: transparent !important;
  color: var(--text-primary, #18181b) !important;
  border-color: rgba(255, 255, 255, 0.24) !important;
  font-weight: 600 !important;
}
html[data-theme=dark] .search-modal .ais-Pagination-link.keyboard-selected {
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.24) !important;
  color: var(--text-primary, #18181b) !important;
  outline: 2px solid rgba(255, 255, 255, 0.2) !important;
  outline-offset: 2px !important;
}
html[data-theme=dark] .search-modal .hit-content a {
  color: var(--text-muted, #a1a1aa) !important;
}
html[data-theme=dark] .search-modal .hit-content a.keyboard-selected {
  background: var(--surface-elevated, #f4f4f5) !important;
  color: var(--text-primary, #18181b) !important;
}
html[data-theme=dark] .search-modal .hit-content a:hover,
html[data-theme=dark] .search-modal .hit-content a:focus {
  background: var(--surface-elevated, #f4f4f5) !important;
  color: var(--text-primary, #18181b) !important;
}
html[data-theme=dark] .search-modal .hit-content .title,
html[data-theme=dark] .search-modal .hit-content a h5 {
  color: var(--text-muted, #a1a1aa) !important;
}
html[data-theme=dark] .search-modal .hit-content a.keyboard-selected .title,
html[data-theme=dark] .search-modal .hit-content a.keyboard-selected h5,
html[data-theme=dark] .search-modal .hit-content a:hover .title,
html[data-theme=dark] .search-modal .hit-content a:hover h5,
html[data-theme=dark] .search-modal .hit-content a:focus .title,
html[data-theme=dark] .search-modal .hit-content a:focus h5 {
  color: var(--text-primary, #18181b) !important;
}
html[data-theme=dark] .search-modal .hit-description {
  color: var(--text-muted, #a1a1aa) !important;
}
html[data-theme=dark] .search-modal .hit-content .hit-description {
  color: var(--text-muted, #a1a1aa) !important;
}
html[data-theme=dark] .search-modal .hit-content a.keyboard-selected .hit-description,
html[data-theme=dark] .search-modal .hit-content a:hover .hit-description,
html[data-theme=dark] .search-modal .hit-content a:focus .hit-description {
  color: var(--text-primary, #18181b) !important;
}
html[data-theme=dark] .search-modal .search-result-link {
  color: var(--text-muted, #a1a1aa) !important;
}
html[data-theme=dark] .search-modal .hit-content a.keyboard-selected .search-result-link,
html[data-theme=dark] .search-modal .hit-content a:hover .search-result-link,
html[data-theme=dark] .search-modal .hit-content a:focus .search-result-link {
  color: var(--text-primary, #18181b) !important;
}
html[data-theme=dark] .search-modal .ais-Highlight-highlighted,
html[data-theme=dark] .search-modal .ais-Snippet-highlighted {
  background: none !important;
  color: #ffffff !important;
  padding: 0 !important;
  font-weight: 600 !important;
  font-size: 1em !important;
}
html[data-theme=dark] .search-modal .hit-content a:hover .ais-Highlight-highlighted,
html[data-theme=dark] .search-modal .hit-content a:hover .ais-Snippet-highlighted,
html[data-theme=dark] .search-modal .hit-content a:focus .ais-Highlight-highlighted,
html[data-theme=dark] .search-modal .hit-content a:focus .ais-Snippet-highlighted,
html[data-theme=dark] .search-modal .hit-content a.keyboard-selected .ais-Highlight-highlighted,
html[data-theme=dark] .search-modal .hit-content a.keyboard-selected .ais-Snippet-highlighted {
  color: var(--text-primary, #18181b) !important;
  font-weight: 600 !important;
}
html[data-theme=dark] .search-modal .search-keyboard-hints {
  background: var(--surface-body, #ffffff) !important;
  border-top-color: rgba(255, 255, 255, 0.12) !important;
  color: var(--text-muted, #a1a1aa) !important;
}
html[data-theme=dark] .search-modal .search-keyboard-hints .kbd-key {
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  color: var(--text-secondary, #52525b) !important;
  box-shadow: none !important;
}
html[data-theme=dark] .search-modal .search-category-dropdown-button {
  background: var(--surface-body, #ffffff) !important;
  border-color: var(--border-muted, #e4e4e7) !important;
  color: var(--text-secondary, #52525b) !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  box-shadow: none !important;
}
html[data-theme=dark] .search-modal .search-category-dropdown-button:hover {
  border-color: var(--border-strong, #d4d4d8) !important;
}
html[data-theme=dark] .search-modal .search-category-dropdown-button:focus {
  outline: none !important;
}
html[data-theme=dark] .search-modal .search-category-dropdown-button:focus-visible {
  outline: 2px solid rgba(96, 165, 250, 0.5) !important;
  outline-offset: 2px !important;
}
html[data-theme=dark] .search-modal .search-category-dropdown-button .search-category-dropdown-arrow {
  color: var(--text-muted, #a1a1aa) !important;
  opacity: 0.6 !important;
}
html[data-theme=dark] .search-modal .search-category-dropdown-button .search-category-dropdown-arrow svg {
  width: 14px !important;
  height: 14px !important;
  stroke-width: 1.5 !important;
}
html[data-theme=dark] .search-modal .search-category-dropdown-container.open .search-category-dropdown-button {
  border-color: var(--border-strong, #d4d4d8) !important;
}
html[data-theme=dark] .search-modal .search-category-dropdown-container.open .search-category-dropdown-button .search-category-dropdown-arrow {
  opacity: 0.8 !important;
}
html[data-theme=dark] .search-modal .search-category-dropdown-menu {
  background: var(--surface-body, #ffffff) !important;
  border-color: var(--border-muted, #e4e4e7) !important;
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.4), 0 2px 4px rgba(17, 24, 39, 0.2) !important;
}
html[data-theme=dark] .search-modal .search-category-dropdown-menu .search-category-dropdown-item {
  color: var(--text-primary, #18181b) !important;
}
html[data-theme=dark] .search-modal .search-category-dropdown-menu .search-category-dropdown-item:hover, html[data-theme=dark] .search-modal .search-category-dropdown-menu .search-category-dropdown-item:focus {
  background: var(--surface-muted, #fafafa) !important;
}
html[data-theme=dark] .search-modal .search-category-dropdown-menu li.active .search-category-dropdown-item {
  background: var(--surface-elevated, #f4f4f5) !important;
  color: var(--text-primary, #18181b) !important;
  font-weight: 500 !important;
}
html[data-theme=dark] .search-modal .default-MainPanel {
  color: var(--text-secondary, #52525b);
}
html[data-theme=dark] .search-modal .search-box a {
  color: var(--text-secondary, #52525b);
}
html[data-theme=dark] #neighbor-nav .nn-prev,
html[data-theme=dark] #neighbor-nav .nn-next {
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] #neighbor-nav a {
  border-color: var(--border-subtle, #f4f4f5);
}
html[data-theme=dark] #neighbor-nav .nn-prev:hover,
html[data-theme=dark] #neighbor-nav .nn-next:hover {
  background: var(--surface-body, #ffffff);
  border-color: var(--border-muted, #e4e4e7);
}

/* /header stuff */
/* post header */
html body h1.entry-title {
  font-family: "Figtree", sans-serif;
  font-size: 1.5rem;
  line-height: 1.35;
  font-weight: 800;
  margin-bottom: 0.7em;
  letter-spacing: -0.01em;
}

@media screen and (max-width: 1024px) {
  html body.two-column:not(.no-toc) h1.entry-title {
    padding-top: 0.67em;
    margin-top: 0;
  }
  html body.three-column h1.entry-title {
    padding-top: 0.67em;
    margin-top: 0;
  }
}
@media screen and (min-width: 769px) {
  html body h1.entry-title {
    font-size: 2.25rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
  }
}
@media screen and (min-width: 1025px) {
  html body h1.entry-title {
    font-size: 2.5rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
  }
  .mobile-nav-header {
    display: none;
  }
}
.entry-subtitle {
  font-family: "Figtree", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-secondary, #52525b);
  display: block;
  margin: -0.5em 0 1em 0;
}

.three-column .entry-subtitle {
  border-bottom: 2px solid var(--border-muted, #e4e4e7);
  padding-bottom: 1em;
  /* border-image: linear-gradient(90deg, transparent 0%, color-border(muted) 5%, color-border(muted) 50%, transparent 80%, transparent 100%);
  border-image-slice: 1;*/
  border-bottom: none;
}

@media screen and (min-width: 769px) {
  .entry-subtitle {
    font-size: 1.0625rem;
  }
}
@media screen and (min-width: 1025px) {
  .entry-subtitle {
    font-size: 1.25rem;
  }
}
.affiliate-disclaimer-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: nowrap;
  margin-bottom: 1rem;
}
@media screen and (max-width: 400px) {
  .affiliate-disclaimer-row {
    flex-wrap: wrap;
  }
}

.affiliate-disclaimer {
  text-align: left;
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
  flex: 1 1 60ch;
  margin-block-end: 0 !important;
  min-width: 0;
}
.affiliate-disclaimer .affiliate-disclaimer-short {
  display: none;
}
.affiliate-disclaimer a {
  font-weight: 600;
  color: #2563eb !important;
  text-decoration: underline;
  text-underline-offset: 26%;
  text-decoration-color: #2563eb;
  text-decoration-thickness: 1px;
  transition: text-decoration-thickness 0.2s ease;
}
.affiliate-disclaimer a:hover {
  text-decoration-thickness: 2px;
}

/* Hide entire affiliate disclaimer row on one-column pages */
.one-column .affiliate-disclaimer-row {
  display: none;
}

@media screen and (max-width: 1024px) {
  .affiliate-disclaimer-row {
    flex-wrap: nowrap;
  }
  .affiliate-disclaimer {
    font-size: 0.8125rem;
    flex-shrink: 1;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .two-column .affiliate-disclaimer-row {
    flex-wrap: nowrap;
  }
  .two-column .affiliate-disclaimer {
    font-size: 0.8125rem;
    flex-shrink: 1;
  }
}
@media screen and (max-width: 640px) {
  .affiliate-disclaimer-row {
    justify-content: flex-start;
    gap: 0.75rem;
  }
  .affiliate-disclaimer {
    flex-shrink: 1;
    min-width: 0;
  }
  .affiliate-disclaimer .affiliate-disclaimer-long {
    display: none;
  }
  .affiliate-disclaimer .affiliate-disclaimer-short {
    display: inline;
  }
}
.entry-header {
  width: 90%;
  max-width: 900px;
  text-align: left;
  margin: 0 auto;
}

.entry-header__top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 18px 0 10px;
}
@media screen and (max-width: 640px) {
  .entry-header__top-row {
    flex-wrap: wrap;
    align-items: flex-start;
    margin-top: 16px;
  }
}
.entry-header__top-row .content-tools {
  margin-left: auto;
  flex-shrink: 0;
}

.entry-section-label {
  color: var(--text-link, #4f46e5);
  font-family: inherit;
  font-size: 0.85em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
  display: block;
}

.entry-header__top-row + .entry-title {
  margin-top: 0;
}

.three-column .entry-header {
  width: 100%;
}

.one-column .entry-header + .elementor,
.two-column .entry-header + .elementor {
  max-width: 1600px;
  margin: 0 auto;
}
.one-column .site-main .entry-header,
.two-column .site-main .entry-header {
  width: 100%;
  max-width: 100%;
  margin: 0;
}
.one-column .site-main .elementor,
.two-column .site-main .elementor {
  width: 100%;
  max-width: 100%;
  margin-bottom: 2em;
}
.one-column .site-main .elementor img,
.one-column .site-main .elementor video,
.two-column .site-main .elementor img,
.two-column .site-main .elementor video {
  max-width: 100%;
  height: auto;
}
.one-column .site-main .elementor iframe,
.two-column .site-main .elementor iframe {
  max-width: 100%;
}

.three-column .entry-header + .elementor {
  max-width: 1600px;
  margin: 0 auto;
}
.three-column .site-main header + .elementor + article {
  margin-top: 30px;
}
.three-column .site-main .elementor {
  width: 100%;
  max-width: 100%;
  margin-bottom: 2em;
}
.three-column .site-main .elementor img,
.three-column .site-main .elementor video {
  max-width: 100%;
  height: auto;
}
.three-column .site-main .elementor iframe {
  max-width: 100%;
}

/* /post header */
/* footer */
#colophon {
  background: #ffffff;
  color: #111827;
  font-size: 1rem;
  padding: 50px 50px 25px 50px;
  border-top: 1px solid #e5e7eb;
}

#colophon a {
  font-weight: 400;
  color: #111827;
  text-decoration: none;
  font-family: "Figtree", sans-serif;
}

#colophon a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

#colophon > nav,
#colophon > section {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

#colophon > nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
}
@media screen and (max-width: 400px) {
  #colophon > nav {
    grid-template-columns: 1fr;
  }
}

#colophon > nav > section {
  display: flex;
  flex-direction: column;
  margin: 0;
}

@media screen and (min-width: 768px) {
  #colophon > nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
  #colophon > nav > section {
    margin: 0 30px;
  }
}
#colophon > section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  #colophon > section {
    flex-direction: row;
    justify-content: space-between;
  }
}
#colophon .boring-links,
#colophon .boring-links a {
  font-size: 0.75rem;
  font-weight: 200;
  font-family: "Figtree", sans-serif;
}

#colophon .social-links ul {
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  width: 250px;
  padding-left: 0;
  font-size: 1.25rem;
}

#colophon .social-links a {
  color: #111827;
  transition: color 0.2s ease;
}

#colophon .social-links a[href*=youtube]:hover {
  color: #ff0000;
}

#colophon .social-links a[href*=twitter]:hover {
  color: #1da1f2;
}

#colophon .social-links a[href*=instagram]:hover {
  color: #e4405f;
}

#colophon .social-links a[href*=spotify]:hover {
  color: #1db954;
}

#colophon .social-links a[href*=facebook]:hover {
  color: #1877f2;
}

#colophon > nav > section > span strong {
  color: #111827;
}

/* /footer */
/* body content */
.entry-content {
  text-align: left;
  font-family: "Figtree", sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.65rem;
  overflow-wrap: break-word;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  margin-top: 2rem;
}
@media screen and (max-width: 1024px) {
  .entry-content {
    margin-top: 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.65rem;
  }
}
.entry-content p {
  margin-block-start: 1rem !important;
  margin-block-end: 1.75rem !important;
}
.entry-content p, .entry-content li, .entry-content td, .entry-content em {
  color: var(--text-body-text, #3f3f46);
}
.entry-content p > strong,
.entry-content li > strong,
.entry-content td > strong,
.entry-content em > strong {
  color: var(--text-primary, #18181b);
}
.entry-content ul li + li,
.entry-content ol li + li {
  margin-top: 0.25rem;
}
.entry-content ul ul,
.entry-content ul ol,
.entry-content ol ul,
.entry-content ol ol {
  margin-top: 0.25rem;
}
[data-theme=dark] .entry-content p, [data-theme=dark] .entry-content li, [data-theme=dark] .entry-content td, [data-theme=dark] .entry-content em {
  color: var(--text-secondary, #52525b);
}
[data-theme=dark] .entry-content h1 > em, [data-theme=dark] .entry-content h2 > em, [data-theme=dark] .entry-content h3 > em, [data-theme=dark] .entry-content h4 > em, [data-theme=dark] .entry-content h5 > em, [data-theme=dark] .entry-content h6 > em {
  color: var(--text-primary, #18181b);
}

/*
.entry-content .wp-block-image img, .entry-content .wp-block-video video {
  max-height: 600px;
  width: auto;
  max-width: 100%;
}
*/
.entry-content .wp-block-video {
  text-align: center;
}

/* Blog post images - only apply to blog post templates, not Elementor pages */
.two-column .site-main .entry-content .wp-block-image img,
.two-column .site-main .entry-content .wp-block-video video,
.two-column .site-main .entry-content .wp-block-embed div,
.three-column .site-main .entry-content .wp-block-image img,
.three-column .site-main .entry-content .wp-block-video video,
.three-column .site-main .entry-content .wp-block-embed div,
.template-landing .site-main .entry-content .wp-block-image img,
.template-landing .site-main .entry-content .wp-block-video video,
.template-landing .site-main .entry-content .wp-block-embed div {
  border-radius: 8px;
  border: 1px solid var(--surface-body, #ffffff);
}
.two-column .site-main .entry-content .wp-block-image img.lazy-youtube-embed, .two-column .site-main .entry-content .wp-block-image img.featured-video-wrapper, .two-column .site-main .entry-content .wp-block-image img.featured-video-disclosure, .two-column .site-main .entry-content .wp-block-image img.featured-video-thumbnail, .two-column .site-main .entry-content .wp-block-image img.featured-video-play-button,
.two-column .site-main .entry-content .wp-block-video video.lazy-youtube-embed,
.two-column .site-main .entry-content .wp-block-video video.featured-video-wrapper,
.two-column .site-main .entry-content .wp-block-video video.featured-video-disclosure,
.two-column .site-main .entry-content .wp-block-video video.featured-video-thumbnail,
.two-column .site-main .entry-content .wp-block-video video.featured-video-play-button,
.two-column .site-main .entry-content .wp-block-embed div.lazy-youtube-embed,
.two-column .site-main .entry-content .wp-block-embed div.featured-video-wrapper,
.two-column .site-main .entry-content .wp-block-embed div.featured-video-disclosure,
.two-column .site-main .entry-content .wp-block-embed div.featured-video-thumbnail,
.two-column .site-main .entry-content .wp-block-embed div.featured-video-play-button,
.three-column .site-main .entry-content .wp-block-image img.lazy-youtube-embed,
.three-column .site-main .entry-content .wp-block-image img.featured-video-wrapper,
.three-column .site-main .entry-content .wp-block-image img.featured-video-disclosure,
.three-column .site-main .entry-content .wp-block-image img.featured-video-thumbnail,
.three-column .site-main .entry-content .wp-block-image img.featured-video-play-button,
.three-column .site-main .entry-content .wp-block-video video.lazy-youtube-embed,
.three-column .site-main .entry-content .wp-block-video video.featured-video-wrapper,
.three-column .site-main .entry-content .wp-block-video video.featured-video-disclosure,
.three-column .site-main .entry-content .wp-block-video video.featured-video-thumbnail,
.three-column .site-main .entry-content .wp-block-video video.featured-video-play-button,
.three-column .site-main .entry-content .wp-block-embed div.lazy-youtube-embed,
.three-column .site-main .entry-content .wp-block-embed div.featured-video-wrapper,
.three-column .site-main .entry-content .wp-block-embed div.featured-video-disclosure,
.three-column .site-main .entry-content .wp-block-embed div.featured-video-thumbnail,
.three-column .site-main .entry-content .wp-block-embed div.featured-video-play-button,
.template-landing .site-main .entry-content .wp-block-image img.lazy-youtube-embed,
.template-landing .site-main .entry-content .wp-block-image img.featured-video-wrapper,
.template-landing .site-main .entry-content .wp-block-image img.featured-video-disclosure,
.template-landing .site-main .entry-content .wp-block-image img.featured-video-thumbnail,
.template-landing .site-main .entry-content .wp-block-image img.featured-video-play-button,
.template-landing .site-main .entry-content .wp-block-video video.lazy-youtube-embed,
.template-landing .site-main .entry-content .wp-block-video video.featured-video-wrapper,
.template-landing .site-main .entry-content .wp-block-video video.featured-video-disclosure,
.template-landing .site-main .entry-content .wp-block-video video.featured-video-thumbnail,
.template-landing .site-main .entry-content .wp-block-video video.featured-video-play-button,
.template-landing .site-main .entry-content .wp-block-embed div.lazy-youtube-embed,
.template-landing .site-main .entry-content .wp-block-embed div.featured-video-wrapper,
.template-landing .site-main .entry-content .wp-block-embed div.featured-video-disclosure,
.template-landing .site-main .entry-content .wp-block-embed div.featured-video-thumbnail,
.template-landing .site-main .entry-content .wp-block-embed div.featured-video-play-button {
  border: 0;
  border-radius: 0;
}

html[data-theme=dark] .two-column .site-main .entry-content .wp-block-image img,
html[data-theme=dark] .two-column .site-main .entry-content .wp-block-video video,
html[data-theme=dark] .two-column .site-main .entry-content .wp-block-embed div,
html[data-theme=dark] .three-column .site-main .entry-content .wp-block-image img,
html[data-theme=dark] .three-column .site-main .entry-content .wp-block-video video,
html[data-theme=dark] .three-column .site-main .entry-content .wp-block-embed div,
html[data-theme=dark] .template-landing .site-main .entry-content .wp-block-image img,
html[data-theme=dark] .template-landing .site-main .entry-content .wp-block-video video,
html[data-theme=dark] .template-landing .site-main .entry-content .wp-block-embed div {
  border-color: var(--border-image-dark, rgba(255, 255, 255, 0.08));
}
html[data-theme=dark] .two-column .site-main .entry-content .wp-block-image img.lazy-youtube-embed, html[data-theme=dark] .two-column .site-main .entry-content .wp-block-image img.featured-video-wrapper, html[data-theme=dark] .two-column .site-main .entry-content .wp-block-image img.featured-video-disclosure, html[data-theme=dark] .two-column .site-main .entry-content .wp-block-image img.featured-video-thumbnail, html[data-theme=dark] .two-column .site-main .entry-content .wp-block-image img.featured-video-play-button,
html[data-theme=dark] .two-column .site-main .entry-content .wp-block-video video.lazy-youtube-embed,
html[data-theme=dark] .two-column .site-main .entry-content .wp-block-video video.featured-video-wrapper,
html[data-theme=dark] .two-column .site-main .entry-content .wp-block-video video.featured-video-disclosure,
html[data-theme=dark] .two-column .site-main .entry-content .wp-block-video video.featured-video-thumbnail,
html[data-theme=dark] .two-column .site-main .entry-content .wp-block-video video.featured-video-play-button,
html[data-theme=dark] .two-column .site-main .entry-content .wp-block-embed div.lazy-youtube-embed,
html[data-theme=dark] .two-column .site-main .entry-content .wp-block-embed div.featured-video-wrapper,
html[data-theme=dark] .two-column .site-main .entry-content .wp-block-embed div.featured-video-disclosure,
html[data-theme=dark] .two-column .site-main .entry-content .wp-block-embed div.featured-video-thumbnail,
html[data-theme=dark] .two-column .site-main .entry-content .wp-block-embed div.featured-video-play-button,
html[data-theme=dark] .three-column .site-main .entry-content .wp-block-image img.lazy-youtube-embed,
html[data-theme=dark] .three-column .site-main .entry-content .wp-block-image img.featured-video-wrapper,
html[data-theme=dark] .three-column .site-main .entry-content .wp-block-image img.featured-video-disclosure,
html[data-theme=dark] .three-column .site-main .entry-content .wp-block-image img.featured-video-thumbnail,
html[data-theme=dark] .three-column .site-main .entry-content .wp-block-image img.featured-video-play-button,
html[data-theme=dark] .three-column .site-main .entry-content .wp-block-video video.lazy-youtube-embed,
html[data-theme=dark] .three-column .site-main .entry-content .wp-block-video video.featured-video-wrapper,
html[data-theme=dark] .three-column .site-main .entry-content .wp-block-video video.featured-video-disclosure,
html[data-theme=dark] .three-column .site-main .entry-content .wp-block-video video.featured-video-thumbnail,
html[data-theme=dark] .three-column .site-main .entry-content .wp-block-video video.featured-video-play-button,
html[data-theme=dark] .three-column .site-main .entry-content .wp-block-embed div.lazy-youtube-embed,
html[data-theme=dark] .three-column .site-main .entry-content .wp-block-embed div.featured-video-wrapper,
html[data-theme=dark] .three-column .site-main .entry-content .wp-block-embed div.featured-video-disclosure,
html[data-theme=dark] .three-column .site-main .entry-content .wp-block-embed div.featured-video-thumbnail,
html[data-theme=dark] .three-column .site-main .entry-content .wp-block-embed div.featured-video-play-button,
html[data-theme=dark] .template-landing .site-main .entry-content .wp-block-image img.lazy-youtube-embed,
html[data-theme=dark] .template-landing .site-main .entry-content .wp-block-image img.featured-video-wrapper,
html[data-theme=dark] .template-landing .site-main .entry-content .wp-block-image img.featured-video-disclosure,
html[data-theme=dark] .template-landing .site-main .entry-content .wp-block-image img.featured-video-thumbnail,
html[data-theme=dark] .template-landing .site-main .entry-content .wp-block-image img.featured-video-play-button,
html[data-theme=dark] .template-landing .site-main .entry-content .wp-block-video video.lazy-youtube-embed,
html[data-theme=dark] .template-landing .site-main .entry-content .wp-block-video video.featured-video-wrapper,
html[data-theme=dark] .template-landing .site-main .entry-content .wp-block-video video.featured-video-disclosure,
html[data-theme=dark] .template-landing .site-main .entry-content .wp-block-video video.featured-video-thumbnail,
html[data-theme=dark] .template-landing .site-main .entry-content .wp-block-video video.featured-video-play-button,
html[data-theme=dark] .template-landing .site-main .entry-content .wp-block-embed div.lazy-youtube-embed,
html[data-theme=dark] .template-landing .site-main .entry-content .wp-block-embed div.featured-video-wrapper,
html[data-theme=dark] .template-landing .site-main .entry-content .wp-block-embed div.featured-video-disclosure,
html[data-theme=dark] .template-landing .site-main .entry-content .wp-block-embed div.featured-video-thumbnail,
html[data-theme=dark] .template-landing .site-main .entry-content .wp-block-embed div.featured-video-play-button {
  border: 0;
  border-radius: 0;
}

.featured-video-wrapper {
  box-sizing: border-box;
}

/* Modern inline code styling for blog posts only */
.two-column .site-main .entry-content p code,
.two-column .site-main .entry-content li code,
.two-column .site-main .entry-content td code,
.three-column .site-main .entry-content p code,
.three-column .site-main .entry-content li code,
.three-column .site-main .entry-content td code,
figcaption code {
  padding: 0.15em 0.3em;
  background-color: #f3f4f6;
  border: 1px solid #e5e7eb;
  font-size: 0.875rem;
}

.two-column .site-main .entry-content p code,
.two-column .site-main .entry-content li code,
.two-column .site-main .entry-content p kbd,
.two-column .site-main .entry-content li kbd,
.three-column .site-main .entry-content p code,
.three-column .site-main .entry-content li code,
.three-column .site-main .entry-content p kbd,
.three-column .site-main .entry-content li kbd,
figcaption code {
  white-space: nowrap;
  position: relative;
  cursor: pointer;
}
.two-column .site-main .entry-content p code::after,
.two-column .site-main .entry-content li code::after,
.two-column .site-main .entry-content p kbd::after,
.two-column .site-main .entry-content li kbd::after,
.three-column .site-main .entry-content p code::after,
.three-column .site-main .entry-content li code::after,
.three-column .site-main .entry-content p kbd::after,
.three-column .site-main .entry-content li kbd::after,
figcaption code::after {
  content: "Click to copy";
  position: absolute;
  bottom: calc(100% + 8px);
  /*left: 50%;*/
  /*transform: translateX(-50%);*/
  background: #111827;
  color: #ffffff;
  padding: 6px 10px;
  border-radius: 0.25rem;
  font-family: "Figtree", sans-serif;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 400;
  white-space: nowrap;
  pointer-events: none;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.two-column .site-main .entry-content p code::before,
.two-column .site-main .entry-content li code::before,
.two-column .site-main .entry-content p kbd::before,
.two-column .site-main .entry-content li kbd::before,
.three-column .site-main .entry-content p code::before,
.three-column .site-main .entry-content li code::before,
.three-column .site-main .entry-content p kbd::before,
.three-column .site-main .entry-content li kbd::before,
figcaption code::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #111827;
  pointer-events: none;
  z-index: 10001;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.two-column .site-main .entry-content p code:hover::after, .two-column .site-main .entry-content p code:hover::before,
.two-column .site-main .entry-content li code:hover::after,
.two-column .site-main .entry-content li code:hover::before,
.two-column .site-main .entry-content p kbd:hover::after,
.two-column .site-main .entry-content p kbd:hover::before,
.two-column .site-main .entry-content li kbd:hover::after,
.two-column .site-main .entry-content li kbd:hover::before,
.three-column .site-main .entry-content p code:hover::after,
.three-column .site-main .entry-content p code:hover::before,
.three-column .site-main .entry-content li code:hover::after,
.three-column .site-main .entry-content li code:hover::before,
.three-column .site-main .entry-content p kbd:hover::after,
.three-column .site-main .entry-content p kbd:hover::before,
.three-column .site-main .entry-content li kbd:hover::after,
.three-column .site-main .entry-content li kbd:hover::before,
figcaption code:hover::after,
figcaption code:hover::before {
  opacity: 1;
}
.two-column .site-main .entry-content p code.copied:hover::after,
.two-column .site-main .entry-content li code.copied:hover::after,
.two-column .site-main .entry-content p kbd.copied:hover::after,
.two-column .site-main .entry-content li kbd.copied:hover::after,
.three-column .site-main .entry-content p code.copied:hover::after,
.three-column .site-main .entry-content li code.copied:hover::after,
.three-column .site-main .entry-content p kbd.copied:hover::after,
.three-column .site-main .entry-content li kbd.copied:hover::after,
figcaption code.copied:hover::after {
  content: "Copied!";
  background: #22c55e;
}
.two-column .site-main .entry-content p code.copied:hover::before,
.two-column .site-main .entry-content li code.copied:hover::before,
.two-column .site-main .entry-content p kbd.copied:hover::before,
.two-column .site-main .entry-content li kbd.copied:hover::before,
.three-column .site-main .entry-content p code.copied:hover::before,
.three-column .site-main .entry-content li code.copied:hover::before,
.three-column .site-main .entry-content p kbd.copied:hover::before,
.three-column .site-main .entry-content li kbd.copied:hover::before,
figcaption code.copied:hover::before {
  border-top-color: #22c55e;
}
html[data-theme=dark] .two-column .site-main .entry-content p code::after,
html[data-theme=dark] .two-column .site-main .entry-content li code::after,
html[data-theme=dark] .two-column .site-main .entry-content p kbd::after,
html[data-theme=dark] .two-column .site-main .entry-content li kbd::after,
html[data-theme=dark] .three-column .site-main .entry-content p code::after,
html[data-theme=dark] .three-column .site-main .entry-content li code::after,
html[data-theme=dark] .three-column .site-main .entry-content p kbd::after,
html[data-theme=dark] .three-column .site-main .entry-content li kbd::after,
html[data-theme=dark] figcaption code::after {
  background: #374151;
}
html[data-theme=dark] .two-column .site-main .entry-content p code::before,
html[data-theme=dark] .two-column .site-main .entry-content li code::before,
html[data-theme=dark] .two-column .site-main .entry-content p kbd::before,
html[data-theme=dark] .two-column .site-main .entry-content li kbd::before,
html[data-theme=dark] .three-column .site-main .entry-content p code::before,
html[data-theme=dark] .three-column .site-main .entry-content li code::before,
html[data-theme=dark] .three-column .site-main .entry-content p kbd::before,
html[data-theme=dark] .three-column .site-main .entry-content li kbd::before,
html[data-theme=dark] figcaption code::before {
  border-top-color: #374151;
}
html[data-theme=dark] .two-column .site-main .entry-content p code:hover::after,
html[data-theme=dark] .two-column .site-main .entry-content li code:hover::after,
html[data-theme=dark] .two-column .site-main .entry-content p kbd:hover::after,
html[data-theme=dark] .two-column .site-main .entry-content li kbd:hover::after,
html[data-theme=dark] .three-column .site-main .entry-content p code:hover::after,
html[data-theme=dark] .three-column .site-main .entry-content li code:hover::after,
html[data-theme=dark] .three-column .site-main .entry-content p kbd:hover::after,
html[data-theme=dark] .three-column .site-main .entry-content li kbd:hover::after,
html[data-theme=dark] figcaption code:hover::after {
  background: #374151;
}
html[data-theme=dark] .two-column .site-main .entry-content p code:hover::before,
html[data-theme=dark] .two-column .site-main .entry-content li code:hover::before,
html[data-theme=dark] .two-column .site-main .entry-content p kbd:hover::before,
html[data-theme=dark] .two-column .site-main .entry-content li kbd:hover::before,
html[data-theme=dark] .three-column .site-main .entry-content p code:hover::before,
html[data-theme=dark] .three-column .site-main .entry-content li code:hover::before,
html[data-theme=dark] .three-column .site-main .entry-content p kbd:hover::before,
html[data-theme=dark] .three-column .site-main .entry-content li kbd:hover::before,
html[data-theme=dark] figcaption code:hover::before {
  border-top-color: #374151;
}
html[data-theme=dark] .two-column .site-main .entry-content p code.copied:hover::after,
html[data-theme=dark] .two-column .site-main .entry-content li code.copied:hover::after,
html[data-theme=dark] .two-column .site-main .entry-content p kbd.copied:hover::after,
html[data-theme=dark] .two-column .site-main .entry-content li kbd.copied:hover::after,
html[data-theme=dark] .three-column .site-main .entry-content p code.copied:hover::after,
html[data-theme=dark] .three-column .site-main .entry-content li code.copied:hover::after,
html[data-theme=dark] .three-column .site-main .entry-content p kbd.copied:hover::after,
html[data-theme=dark] .three-column .site-main .entry-content li kbd.copied:hover::after,
html[data-theme=dark] figcaption code.copied:hover::after {
  content: "Copied!";
  background: #16a34a;
}
html[data-theme=dark] .two-column .site-main .entry-content p code.copied:hover::before,
html[data-theme=dark] .two-column .site-main .entry-content li code.copied:hover::before,
html[data-theme=dark] .two-column .site-main .entry-content p kbd.copied:hover::before,
html[data-theme=dark] .two-column .site-main .entry-content li kbd.copied:hover::before,
html[data-theme=dark] .three-column .site-main .entry-content p code.copied:hover::before,
html[data-theme=dark] .three-column .site-main .entry-content li code.copied:hover::before,
html[data-theme=dark] .three-column .site-main .entry-content p kbd.copied:hover::before,
html[data-theme=dark] .three-column .site-main .entry-content li kbd.copied:hover::before,
html[data-theme=dark] figcaption code.copied:hover::before {
  border-top-color: #16a34a;
}
.two-column .site-main .entry-content p code::after,
.two-column .site-main .entry-content li code::after,
.two-column .site-main .entry-content p kbd::after,
.two-column .site-main .entry-content li kbd::after,
.three-column .site-main .entry-content p code::after,
.three-column .site-main .entry-content li code::after,
.three-column .site-main .entry-content p kbd::after,
.three-column .site-main .entry-content li kbd::after,
figcaption code::after {
  left: 50%;
  transform: translateX(-50%);
}
.two-column .site-main .entry-content p code::before,
.two-column .site-main .entry-content li code::before,
.two-column .site-main .entry-content p kbd::before,
.two-column .site-main .entry-content li kbd::before,
.three-column .site-main .entry-content p code::before,
.three-column .site-main .entry-content li code::before,
.three-column .site-main .entry-content p kbd::before,
.three-column .site-main .entry-content li kbd::before,
figcaption code::before {
  display: none;
}

/*.two-column .site-main .entry-content li>code,
.three-column .site-main .entry-content li>code {
  display: block;
  margin: 0.15em 0;
  white-space: normal;
  overflow-wrap: anywhere;
}*/
.entry-content .step-by-step {
  border: #f3f4f6 2px solid;
  border-radius: 5px;
  padding: 1em 1em 1em 2em;
}

.documentation-menu,
.table-of-contents {
  overscroll-behavior: contain;
}

/* Typography/Content Styles - Integrated from Elementor CSS */
/* Heading link hover styles */
h1 a.heading-link,
h2 a.heading-link,
h3 a.heading-link,
h4 a.heading-link,
h5 a.heading-link,
h6 a.heading-link {
  opacity: 0;
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-left: 0.35rem;
  margin-top: 0.2rem;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 0.25rem;
  color: #6b7280;
  font-size: 0.75rem;
  line-height: 1;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.08);
  text-decoration: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: all;
  z-index: 2;
  color: #4b5563;
}
h1 a.heading-link i,
h2 a.heading-link i,
h3 a.heading-link i,
h4 a.heading-link i,
h5 a.heading-link i,
h6 a.heading-link i {
  pointer-events: none;
  color: inherit;
  font-size: 0.75rem;
}

h1:hover a.heading-link,
h2:hover a.heading-link,
h3:hover a.heading-link,
h4:hover a.heading-link,
h5:hover a.heading-link,
h6:hover a.heading-link {
  opacity: 1;
}

a.heading-link:hover,
a.heading-link:focus {
  background: #e5e7eb;
  border-color: #e5e7eb;
  color: #374151;
}

a.heading-link:focus-visible {
  outline: 2px solid rgba(59, 130, 246, 0.55);
  outline-offset: 2px;
}

.site-main .entry-content h1:hover,
.site-main .entry-content h2:hover,
.site-main .entry-content h3:hover,
.site-main .entry-content h4:hover,
.site-main .entry-content h5:hover,
.site-main .entry-content h6:hover {
  color: inherit;
}

/* Zotpress citation styles */
.zp-ZotpressInText {
  vertical-align: super !important;
  font-size: 0.7em !important;
  font-weight: bold;
}

.zp-Zotpress-InTextBib,
.zp-Zotpress-InTextBib a {
  color: #6b7280;
  font-size: 0.9em;
}

.zp-Zotpress-InTextBib a {
  text-decoration: underline;
  font-size: 1em;
}

/* KBD keyboard key styling */
kbd {
  background-color: #f3f4f6;
  border-radius: 3px;
  border: 1px solid #d1d5db;
  box-shadow: 0 1px 1px rgba(17, 24, 39, 0.2), 0 2px 0 0 rgba(255, 255, 255, 0.7) inset;
  color: #374151;
  display: inline-block;
  font-family: -apple-system, "system-ui", "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
  font-size: 0.85em;
  font-weight: 500;
  line-height: 1;
  padding: 2px 4px;
  margin-left: 3px;
  margin-right: 3px;
  white-space: nowrap;
  position: relative;
  cursor: pointer;
}
kbd:hover {
  cursor: pointer;
}
kbd::after {
  content: "Click to copy";
  position: absolute;
  bottom: calc(100% + 8px);
  /*left: 50%;*/
  /*transform: translateX(-50%);*/
  background: #111827;
  color: #ffffff;
  padding: 6px 10px;
  border-radius: 0.25rem;
  font-family: "Figtree", sans-serif;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 400;
  white-space: nowrap;
  pointer-events: none;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.2s ease;
}
kbd::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #111827;
  pointer-events: none;
  z-index: 10001;
  opacity: 0;
  transition: opacity 0.2s ease;
}
kbd:hover::after, kbd:hover::before {
  opacity: 1;
}
kbd.copied:hover::after {
  content: "Copied!";
  background: #22c55e;
}
kbd.copied:hover::before {
  border-top-color: #22c55e;
}
html[data-theme=dark] kbd::after {
  background: #374151;
}
html[data-theme=dark] kbd::before {
  border-top-color: #374151;
}
html[data-theme=dark] kbd:hover::after {
  background: #374151;
}
html[data-theme=dark] kbd:hover::before {
  border-top-color: #374151;
}
html[data-theme=dark] kbd.copied:hover::after {
  content: "Copied!";
  background: #16a34a;
}
html[data-theme=dark] kbd.copied:hover::before {
  border-top-color: #16a34a;
}

/* Figcaption styling */
figcaption {
  font-size: 0.8em;
}

.wp-block-image figcaption {
  margin-left: 1rem;
  margin-right: 1rem;
  color: var(--text-secondary, #52525b);
}

/* Bookmark card styles */
@media screen and (max-width: 599px) {
  .bookmark-card__image {
    display: none;
  }
}
.wp-block-mamaduka-bookmark-card {
  margin-bottom: 30px;
}
.wp-block-mamaduka-bookmark-card .bookmark-card__image {
  overflow: hidden;
}
.wp-block-mamaduka-bookmark-card .bookmark-card__image > img {
  transition: transform 0.2s;
}
.wp-block-mamaduka-bookmark-card:hover .bookmark-card__image > img {
  transform: scale(1.1);
  transform-origin: 50% 50%;
}

html[data-theme=dark] .wp-block-mamaduka-bookmark-card {
  background: var(--surface-body, #ffffff);
  border-color: var(--border-subtle, #f4f4f5);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
}
html[data-theme=dark] .wp-block-mamaduka-bookmark-card:hover {
  background: var(--surface-body, #ffffff);
}
html[data-theme=dark] .bookmark-card:hover {
  background-color: var(--surface-body, #ffffff);
}
html[data-theme=dark] .bookmark-card__title {
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] .bookmark-card__description {
  color: var(--text-secondary, #52525b);
}
html[data-theme=dark] .bookmark_card__meta-publisher {
  color: var(--text-secondary, #52525b);
}

/* Lasso description */
.lasso-description {
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* WP Block Button */
.wp-block-button a {
  background-color: #dc2626;
  border-radius: 8px;
  color: #ffffff;
  padding-left: 40px;
  padding-right: 40px;
}
.wp-block-button a:hover {
  background-color: #ef4444;
  color: #ffffff;
}

.main-content .elementor-widget-container .wp-block-image {
  margin-bottom: 30px;
}

/* Quote block */
.wp-block-quote {
  font-family: "Figtree", sans-serif;
  font-size: calc(1.0625rem + 0.125rem);
  font-weight: 400;
  line-height: 1.65rem;
  font-style: italic;
}

/* Twitter embed */
.wp-block-embed-twitter > div > div {
  margin: 0 auto;
}

/* /Typography/Content Styles */
/* /body content */
/* Elementor Widget Styles - Integrated from Elementor CSS */
.elementor-widget-container > ul,
.elementor-widget-container > ol,
.wp-block-pb-accordion-item ul,
.wp-block-pb-accordion-item ol {
  margin-bottom: 40px;
}

.elementor-widget-theme-post-content li {
  margin: 8px 0 8px 0;
}

.eael-grid-post-holder {
  border: none !important;
}

.elementor-text-editor ul {
  margin-bottom: 20px;
}

.elementor-toc__list-item {
  font-feature-settings: "tnum";
  line-height: 1.5;
  font-size: 0.9em;
}

.elementor-toc__list-item-text-wrapper:before {
  display: none;
}

.elementor-toc__list-wrapper {
  height: auto !important;
}

.elementor-widget-theme-post-content code:not(.shcb-code-table),
.elementor-widget-theme-post-content pre:not(.wp-block-code) {
  background-color: #fef08a;
  border-radius: 3px;
  padding: 0px 5px;
}

@media screen and (min-width: 1025px) {
  .elementor-toc__body {
    height: 500px;
    height: fit-content;
    max-height: 80vh !important;
    max-height: calc(100vh - 170px - 33px - 40px) !important;
    overflow-y: auto !important;
  }
}
/* Video play button */
.elementor-custom-embed-play {
  background-color: #ef4444;
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(17, 24, 39, 0.15), 0 2px 4px rgba(17, 24, 39, 0.1);
  height: 64px;
  left: 50%;
  opacity: 0.9 !important;
  position: absolute;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.elementor-custom-embed-play:hover {
  transform: translate3d(-50%, -50%, 0) scale(1.08);
}
.elementor-custom-embed-play .eicon-play {
  background: none;
  border: none;
  box-shadow: none;
  height: auto;
  width: auto;
  position: relative;
  left: 4px;
  transform: none;
  opacity: 1 !important;
  color: #ffffff;
  font-size: 0;
  display: block;
  width: 0;
  height: 0;
}
.elementor-custom-embed-play .eicon-play::before {
  border-color: transparent transparent transparent #ffffff;
  border-style: solid;
  border-width: 14px 0 14px 22px;
  content: "";
  position: absolute;
  left: 52%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  /* Make sure the triangle is visible and not overlapped by text */
  display: block;
}

/* Featured media container styles */
.featured-image-container {
  margin-bottom: 0;
  border-radius: 8px;
  overflow: hidden;
  box-sizing: border-box;
  border: 1px solid var(--surface-body, #ffffff);
}
.featured-image-container .featured-image {
  width: 100%;
  height: auto;
  display: block;
}

html[data-theme=dark] .featured-image-container {
  border-color: var(--border-image-dark, rgba(255, 255, 255, 0.08));
}

.featured-video-container {
  margin-bottom: 0;
  border-radius: 8px;
  overflow: hidden;
  box-sizing: border-box;
  border: 1px solid var(--surface-body, #ffffff);
}

html[data-theme=dark] .featured-video-container {
  border-color: var(--border-image-dark, rgba(255, 255, 255, 0.08));
}

.featured-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  line-height: 0;
  font-size: 0;
}
.featured-video-wrapper:hover .featured-video-play-button {
  transform: translate3d(-50%, -50%, 0) scale(1.08);
}
.featured-video-wrapper:not(.is-video-loaded):hover .featured-video-disclosure, .featured-video-wrapper:not(.is-video-loaded):focus-within .featured-video-disclosure {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.featured-video-thumbnail,
.featured-video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  margin: 0;
  padding: 0;
  object-fit: cover;
  display: block;
  vertical-align: top;
}

.featured-video-thumbnail {
  cursor: pointer;
}

.featured-video-play-button {
  background-color: #ef4444;
  border: none;
  border-radius: 16px !important;
  box-shadow: 0 4px 16px rgba(17, 24, 39, 0.15), 0 2px 4px rgba(17, 24, 39, 0.1);
  height: 64px;
  left: 50%;
  opacity: 0.9 !important;
  position: absolute;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: none;
}
@media screen and (max-width: 600px) {
  .featured-video-play-button {
    height: 54.4px;
    width: 85px;
    border-radius: 12px !important;
  }
}
.featured-video-play-button:hover {
  transform: translate3d(-50%, -50%, 0) scale(1.08);
}
.featured-video-play-button .eicon-play {
  background: none;
  border: none;
  box-shadow: none;
  height: auto;
  width: auto;
  position: relative;
  left: 4px;
  transform: none;
  opacity: 1 !important;
  color: #ffffff;
  font-size: 0;
  display: block;
  width: 0;
  height: 0;
}
.featured-video-play-button .eicon-play::before {
  border-color: transparent transparent transparent #ffffff;
  border-style: solid;
  border-width: 14px 0 14px 22px;
  content: "";
  position: absolute;
  left: 52%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  display: block;
}

.featured-video-disclosure {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 2rem 1rem 1rem;
  background: linear-gradient(180deg, rgba(3, 7, 18, 0) 0%, rgba(3, 7, 18, 0.78) 100%);
  opacity: 0;
  transform: translateY(0.5rem);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.featured-video-disclosure p {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #ffffff;
  margin: 0;
  margin-block-end: 0 !important;
  font-size: 0.8125rem;
  line-height: 1.5;
}
.featured-video-disclosure a {
  color: #ffffff !important;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  text-decoration-color: #ffffff !important;
}

.featured-video-wrapper.is-video-loaded .featured-video-disclosure {
  opacity: 0;
  transform: translateY(0.5rem);
  pointer-events: none;
}

/* Elementor video embed aspect ratio fix (keep for backward compatibility) */
.elementor-widget-video .elementor-wrapper,
.elementor-custom-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.elementor-widget-video .elementor-wrapper iframe,
.elementor-custom-embed iframe,
.elementor-widget-video .elementor-wrapper img,
.elementor-custom-embed img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

/* Elementor lightbox icon bug fix */
.elementor-slideshow__header {
  flex-direction: row;
}

/* Homepage button arrow alignment */
@media screen and (max-width: 767px) {
  .elementor-element.elementor-element-d2bef01 .elementor-button-content-wrapper {
    margin-left: -19px !important;
  }
  .elementor-element.elementor-element-d2bef01 .elementor-button-content-wrapper .elementor-align-icon-right {
    margin-right: -19px !important;
  }
}
/* Quadmenu */
#quadmenu_0[aria-expanded=true] > ul {
  margin-top: 100px;
}

/* Extend :after border elements to viewport edges */
@media screen and (max-width: 1199px) {
  /* Ensure #mega-menu and #main-menu have no padding/margin that would offset the borders */
  #main-menu,
  #mega-menu {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  /* Ensure li elements have no left margin/padding */
  #mega-menu > li {
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
  /* Change border gradient to solid line and extend to viewport edges */
  #mega-menu > li::after,
  #mega-menu > li.open ul.mm-about::after {
    /* Replace gradient with solid color */
    background: #e5e7eb !important;
    /* Position at left edge of li, then extend to viewport edges */
    left: 0 !important;
    width: 100vw !important;
    /* Calculate negative offset: if li is positioned at X pixels from viewport left,
     we need to move :after left by X pixels to reach viewport edge */
    /* Since we can't know X, we use transform with calc to center it, then shift left */
    transform: translateX(calc(-50vw + 50%)) !important;
  }
  /* Hide the border for the last list item */
  #mega-menu > li:last-of-type::after {
    display: none !important;
  }
}
@media screen and (max-width: 1199px) {
  html[data-theme=dark] {
    /* Dark mode border color for menu item separators */
  }
  html[data-theme=dark] #mega-menu > li::after,
  html[data-theme=dark] #mega-menu > li.open ul.mm-about::after {
    background: var(--border-subtle, #f4f4f5) !important;
  }
}

/* /Elementor Widget Styles */
/* Table Styling - Integrated from Elementor CSS */
.wp-block-table {
  overflow: visible;
}
.wp-block-table table {
  border-collapse: separate;
  border-spacing: 0;
  min-width: 300px;
  margin-bottom: 0;
}
.wp-block-table {
  /* Copy table as markdown button - positioned below table, aligned right */
}
.wp-block-table .table-copy-markdown-btn {
  display: inline-flex;
  align-items: center;
  justify-content: left;
  gap: 0.4em;
  margin-top: 0;
  margin-left: auto;
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  line-height: 1;
  background: var(--surface-body, #ffffff);
  border: 1px solid var(--border-muted, #e4e4e7);
  border-top: none;
  border-radius: 0 0 0.5rem 0.5rem;
  color: var(--text-secondary, #52525b);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  float: right;
  clear: both;
  min-width: 184px;
}
.wp-block-table .table-copy-markdown-btn:hover {
  background: var(--surface-muted, #fafafa);
  border-color: var(--border-muted, #e4e4e7);
  color: var(--text-primary, #18181b);
}
.wp-block-table .table-copy-markdown-btn .fa-copy {
  color: inherit;
  font-size: 0.875rem;
  transition: color 0.2s ease;
  padding-right: 4px;
}
.wp-block-table .table-copy-markdown-btn span {
  font-size: 0.9375rem;
  color: inherit;
}
.wp-block-table .table-copy-markdown-btn.copied {
  background: #f0fdf4;
  border-color: #22c55e;
  color: #22c55e;
}
.wp-block-table .table-copy-markdown-btn.copied .fa-copy,
.wp-block-table .table-copy-markdown-btn.copied span {
  color: #22c55e;
}
.wp-block-table td,
.wp-block-table th {
  padding: 12px 16px;
  font-size: 1rem;
  border: 1px solid var(--border-muted, #e4e4e7);
  line-height: 1.5;
  word-break: keep-all;
  text-wrap: pretty;
}
.wp-block-table {
  /* Remove default borders to avoid doubling */
}
.wp-block-table th {
  border-top: 1px solid var(--border-muted, #e4e4e7);
  border-bottom: 1px solid var(--border-muted, #e4e4e7);
  border-right: 1px solid var(--border-muted, #e4e4e7);
  border-left: none;
}
.wp-block-table td {
  border-bottom: 1px solid var(--border-muted, #e4e4e7);
  border-right: 1px solid var(--border-muted, #e4e4e7);
  border-top: none;
  border-left: none;
  color: var(--text-primary, #18181b);
}
.wp-block-table {
  /* Apply left border on first cell in each row */
}
.wp-block-table th:first-child,
.wp-block-table td:first-child {
  border-left: 1px solid var(--border-muted, #e4e4e7);
}
.wp-block-table {
  /* Rounded corners on table cells */
}
.wp-block-table thead th:first-child {
  border-top-left-radius: 0.5rem;
}
.wp-block-table thead th:last-child {
  border-top-right-radius: 0.5rem;
}
.wp-block-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 0.5rem;
}
.wp-block-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 0;
}
.wp-block-table {
  /* Sticky header styling */
}
.wp-block-table thead {
  background-color: transparent;
}
.wp-block-table thead th {
  background-color: var(--surface-elevated, #f4f4f5);
  position: sticky;
  top: 60px;
  z-index: 10;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary, #18181b);
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-muted, #e4e4e7);
}
.wp-block-table {
  /* Remove top border-radius when header becomes stuck while scrolling */
}
.wp-block-table.header-stuck thead th:first-child {
  border-top-left-radius: 0;
}
.wp-block-table.header-stuck thead th:last-child {
  border-top-right-radius: 0;
}
.wp-block-table {
  /* Alternating row colors */
}
.wp-block-table tbody tr {
  transition: background-color 0.15s ease;
}
.wp-block-table tbody tr:nth-child(even) {
  background-color: var(--surface-muted, #fafafa);
}
.wp-block-table tbody tr:nth-child(odd) {
  background-color: var(--surface-body, #ffffff);
}
.wp-block-table tbody tr:hover {
  background-color: var(--surface-elevated, #f4f4f5);
}
.wp-block-table {
  /* Focus styles for keyboard navigation */
}
.wp-block-table table th:focus,
.wp-block-table table td:focus {
  outline: 2px solid #60a5fa;
  outline-offset: -2px;
}

/* Icon table specific styles */
.icon-table table {
  min-width: 500px;
}
.icon-table th:first-child,
.icon-table td:first-child {
  width: 25%;
}

/* Mobile horizontal scroll */
@media (max-width: 767px) {
  .wp-block-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .wp-block-table table {
    min-width: 300px;
  }
  .wp-block-table table thead th {
    position: static;
  }
  .icon-table table {
    min-width: 500px;
  }
  .icon-table th:first-child,
  .icon-table td:first-child {
    width: 25%;
  }
}
/* Tablet (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .wp-block-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .wp-block-table table {
    min-width: 600px;
  }
  .wp-block-table table thead th {
    position: static;
  }
  .icon-table th:first-child,
  .icon-table td:first-child {
    width: 25%;
  }
}
/* Desktop with sidebar (1025px and up) */
@media (min-width: 1025px) {
  .icon-table th:first-child,
  .icon-table td:first-child {
    width: 35%;
  }
  .icon-table .wp-block-table table thead th {
    top: 60px !important;
  }
}
/* /Table Styling */
/* attribution */
.attribution {
  display: flex;
  flex-direction: row;
  margin-bottom: 30px;
  justify-content: flex-start;
}

.attribution.reviewed {
  justify-content: space-around;
}

.attribution > section {
  font-size: 0.9em;
  display: flex;
  flex-direction: column;
  width: 44%;
}

.attribution > section > span:nth-of-type(2) {
  font-size: 0.8em;
}

.attribution a {
  text-decoration: none;
  color: inherit !important;
  text-decoration: underline;
  text-underline-offset: 0.3em;
}

.attribution i {
  margin-right: 0.5em;
}

@media screen and (max-width: 768px) {
  .attribution {
    flex-direction: column;
  }
  .attribution > section {
    width: 100%;
  }
  .attribution > section:first-of-type {
    margin-bottom: 1em;
  }
}
/* /attribution */
/* main content box */
.one-column .main-content-box {
  display: flex;
  justify-content: center;
  min-height: 500px;
  padding: 1em 5% 50px 5%;
  padding: 1em 0 50px 0;
  box-sizing: border-box;
  width: 100%;
}
.one-column .site-main {
  max-width: 850px;
  padding: 0 0.75rem;
}
.one-column .site-main p:first-child {
  margin-top: 0;
}

@media screen and (max-width: 1024px) {
  .two-column .main-content-box {
    display: flex;
    justify-content: center;
    min-height: 500px;
    padding: 1em 5% 50px 5%;
    padding: 1em 0 50px 0;
    box-sizing: border-box;
    width: 100%;
  }
  .two-column .site-main {
    max-width: calc(750px + 4em);
    flex-shrink: 0;
    padding: 0 20px;
    box-sizing: border-box;
    width: 100%;
  }
  .two-column .site-main p:first-child {
    margin-top: 0;
  }
  .two-column .table-of-contents {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .two-column .main-content-box {
    display: flex;
    min-height: 500px;
    margin: 0 auto;
    max-width: 1600px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    /* gap: clamp(36px, 2vw, 96px);*/
    gap: 2rem;
    padding: 0 5% 0 5%;
    padding: 0 0 0 0;
    box-sizing: border-box;
    width: 100%;
  }
  .two-column .table-of-contents {
    order: 2;
    position: sticky;
    top: 60px;
    max-height: calc(100vh - 60px);
    min-height: calc(100vh - 60px);
    width: 275px;
    min-width: 275px;
    max-width: 275px;
    height: fit-content;
    flex-shrink: 0;
    box-sizing: border-box;
    border-left: #e5e7eb 1px solid;
    /*  padding: 1em clamp(24px, 2vw, 40px) 0 clamp(1.5em, 2vw, 2.5em);*/
    padding: 0 1.5rem 0 1.5rem;
    display: flex;
    flex-direction: column;
    font-size: 0.875rem;
    pointer-events: none;
  }
  .two-column .table-of-contents nav.toc {
    min-width: 240px;
    color: #4b5563;
    font-size: 0.875rem;
    pointer-events: auto;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-top: 1rem;
  }
  .two-column .table-of-contents nav.toc::-webkit-scrollbar {
    display: none;
  }
  .two-column .table-of-contents nav.toc .toc-header {
    padding-top: 1rem;
  }
  .two-column .table-of-contents::before {
    content: "";
    position: absolute;
    top: -60px;
    left: 0;
    width: 1px;
    height: 60px;
    background: #e5e7eb;
  }
  .two-column .site-main {
    order: 1;
    max-width: 920px;
    width: 920px;
    padding: 0 1.5rem 1.5rem 3.5rem;
    padding-bottom: 1.5rem;
    flex: 1 1 auto;
    min-width: 0;
    box-sizing: border-box;
  }
  .two-column .site-main p:first-child {
    margin-top: 0;
  }
  .two-column.no-toc .site-main {
    width: 100%;
    max-width: 800px;
    padding: 0;
    box-sizing: border-box;
    flex-shrink: 0;
    border: 0;
  }
}
.two-column.no-toc .table-of-contents,
.two-column.no-toc .table-of-contents.open {
  display: none;
}

@media screen and (min-width: 1025px) {
  .two-column .table-of-contents .toc > span,
  .two-column .table-of-contents .toc-header > span,
  .three-column .documentation-menu .toc > span,
  .three-column .documentation-menu .toc-header > span {
    color: #111827;
    font-size: 0.875rem;
  }
  .two-column .table-of-contents html body .toc a,
  .three-column .documentation-menu html body .toc a {
    color: #4b5563;
    font-size: 0.875rem;
  }
  .two-column .table-of-contents html body .toc a:hover,
  .three-column .documentation-menu html body .toc a:hover {
    color: #111827;
  }
  .two-column .table-of-contents html body .toc a.is-active,
  .three-column .documentation-menu html body .toc a.is-active {
    color: #1d4ed8;
  }
  .two-column .table-of-contents .toc li.scrollspy-active > a,
  .three-column .documentation-menu .toc li.scrollspy-active > a {
    color: #111827;
  }
}
@media screen and (max-width: 1024px) {
  .three-column .main-content-box {
    display: flex;
    justify-content: center;
    min-height: 500px;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
  }
  .three-column .site-main {
    max-width: calc(750px + 4em);
    padding: 0 20px 50px 20px;
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
  }
  .three-column .site-main p:first-child {
    margin-top: 0;
  }
  .three-column .table-of-contents {
    display: none;
  }
  .three-column .documentation-menu {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1199px) {
  .three-column .main-content-box {
    display: flex;
    min-height: 500px;
    width: 96%;
    margin: 0 auto;
    max-width: 1600px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 0 5% 0 5%;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
  }
  .three-column .documentation-menu {
    position: sticky;
    top: 60px;
    max-height: calc(100vh - 60px);
    min-height: calc(100vh - 60px);
    width: 26%;
    height: fit-content;
    box-sizing: border-box;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    padding: 1.5em 1.75em;
  }
  .three-column .documentation-menu .toc {
    margin-bottom: 1em;
    margin-top: 1rem;
    font-size: 0.875rem !important;
    color: #4b5563 !important;
  }
  .three-column .table-of-contents {
    display: none;
  }
  .three-column .site-main {
    max-width: calc(850px + 4em);
    box-sizing: border-box;
    flex-shrink: 0;
    padding: 0 3em 50px 3em;
    width: 74%;
    border-left: #e5e7eb 1px solid;
  }
  .three-column .site-main p:first-child {
    margin-top: 0;
  }
}
@media screen and (min-width: 1200px) {
  .three-column .main-content-box {
    display: flex;
    min-height: 500px;
    width: 96%;
    margin: 0 auto;
    max-width: 1600px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 0 5% 0 5%;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
  }
  .three-column .documentation-menu {
    position: sticky;
    top: 60px;
    max-height: calc(100vh - 60px);
    min-height: calc(100vh - 60px);
    width: 20%;
    height: fit-content;
    box-sizing: border-box;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    padding: 1.5em 1.75em;
  }
  .three-column .documentation-menu .toc {
    display: none;
  }
  .three-column .table-of-contents {
    position: sticky;
    top: 60px;
    padding-top: 0;
    max-height: calc(100vh - 60px);
    min-height: calc(100vh - 60px);
    width: 20%;
    min-width: 240px;
    height: fit-content;
    box-sizing: border-box;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    pointer-events: none;
  }
  .three-column .table-of-contents nav.toc {
    padding-top: 1rem;
    pointer-events: auto;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-top: 1rem;
  }
  .three-column .table-of-contents nav.toc::-webkit-scrollbar {
    display: none;
  }
  .three-column .table-of-contents nav.toc .toc-header {
    padding-top: 1rem;
  }
  .three-column .site-main {
    max-width: calc(850px + 4em);
    padding: 0 3em 50px 3em;
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
    border-left: #e5e7eb 1px solid;
    border-right: #e5e7eb 1px solid;
  }
  .three-column .site-main p:first-child {
    margin-top: 0;
  }
  .three-column {
    /* &.no-toc {
      .main-content-box {
        max-width: 1600px;
      }

      .site-main {
        width: 74%;
        border-right: 0;
      }

      .documentation-menu {
        width: 26%;
      }
    } */
  }
}
.three-column {
  /*&.no-toc {
    .table-of-contents, .table-of-contents.open {
      display: none;
    }
  }*/
}

/* /main content box */
/* table of contents */
h2 {
  scroll-margin-top: 3.5em;
}

h3 {
  scroll-margin-top: 4em;
}

@media screen and (max-width: 768px) {
  .two-column:not(.no-toc) h2,
  .three-column h2 {
    scroll-margin-top: calc(3.5em + 60px);
  }
  .two-column:not(.no-toc) h3,
  .three-column h3 {
    scroll-margin-top: calc(4em + 60px);
  }
  .two-column:not(.no-toc),
  .three-column {
    /*.section-link-header {
      padding-right: 2em;
    } */
  }
}
@media screen and (min-width: 769px) {
  h2 {
    scroll-margin-top: 3.5em;
  }
  h3 {
    scroll-margin-top: 4em;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .two-column:not(.no-toc) h2,
  .three-column h2 {
    scroll-margin-top: calc(3.5em + 60px);
  }
  .two-column:not(.no-toc) h3,
  .three-column h3 {
    scroll-margin-top: calc(4em + 60px);
  }
}
@media screen and (min-width: 1025px) {
  h2 {
    scroll-margin-top: 3.5em;
  }
  h3 {
    scroll-margin-top: 4em;
  }
}
.toc li.scrollspy-active > a {
  font-weight: bold;
  color: #111827;
}

html body .toc a {
  font-family: "Figtree", sans-serif;
  text-decoration: none;
  transition: transform 0.1s, color 0.1s;
  padding: 0.3em;
  transform-origin: left;
  display: inline-block;
  color: #4b5563;
}
html body .toc a:hover {
  color: #111827;
}
html body .toc a.is-active {
  color: #1d4ed8;
}

.toc {
  font-family: "Figtree", sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

.toc {
  color: #4b5563;
}

.table-of-contents {
  background: #ffffff;
  padding: 1em 1.5em;
  font-size: 0.875rem;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-content: flex-start;
  gap: 0.5em;
}
.toc ul {
  padding-left: 0;
  list-style-type: none;
}

.toc ul ul {
  padding-left: 1em;
}

.toc-close {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 44px;
  padding: 0;
  box-sizing: border-box;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  color: var(--text-primary, #18181b);
  transition: background 0.2s ease, color 0.2s ease;
  border-radius: 0.5rem;
  cursor: pointer;
  flex-shrink: 0;
}
.toc-close:hover, .toc-close:focus {
  background: var(--surface-elevated, #f4f4f5);
  color: var(--text-primary, #18181b);
  outline: none;
}
.toc-close svg {
  width: 24px;
  height: 24px;
  display: block;
}

@media screen and (min-width: 1025px) {
  .toc-close {
    display: none;
  }
}
.toc > span,
.toc-header > span {
  font-weight: bold;
  color: #111827;
}

.toc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.toc .return-link span {
  transform: rotate(270deg);
  display: inline-block;
  font-size: 1.5em;
  margin: 0 0.2em 0 -0.2em;
  font-weight: normal;
}

.toc .return-link {
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  padding-bottom: 1em;
}
@media screen and (min-width: 1025px) {
  .table-of-contents .toc .return-link {
    padding-bottom: calc(1em + var(--banner-height));
  }
}

@media screen and (max-width: 1024px) {
  .main-content-box aside.table-of-contents::-webkit-scrollbar-track {
    background: transparent;
  }
  .main-content-box aside.table-of-contents::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background: transparent;
  }
  .main-content-box aside.table-of-contents::-webkit-scrollbar-thumb {
    background: #e5e7eb;
    border-radius: 0.5rem;
  }
  .main-content-box aside.table-of-contents {
    pointer-events: auto;
    overflow-y: auto;
    overflow-x: hidden;
    position: fixed;
    bottom: -20px;
    left: 50%;
    width: 84%;
    border: 1px solid #e5e7eb;
    max-height: calc(100vh - 150px - 16px);
    box-sizing: border-box;
    z-index: 200;
    font-size: 1.0625rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-content: flex-start;
    gap: 0.5em;
    border-radius: 0.5rem 0.5rem 0 0;
    transform: translateX(-50%) translateY(calc(100% + 16px));
    transition: transform 0.1s ease-out;
    overflow-x: hidden;
    padding-top: 0;
    padding-left: 1.5em;
    padding-right: 1.5em;
    padding-bottom: 1em;
  }
  .main-content-box aside.table-of-contents nav.toc {
    padding-top: 0;
    padding-right: 0;
    overflow: visible;
  }
  .main-content-box aside.table-of-contents nav.toc .toc-header {
    margin-bottom: 0.5em;
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 10;
    padding-top: 1em;
    padding-bottom: 0.5em;
    margin-left: -1.5em;
    margin-right: -1.5em;
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
  .main-content-box aside.table-of-contents nav.toc .toc-header > span {
    font-size: 1.0625rem;
  }
  .main-content-box aside.table-of-contents .toc > span {
    font-size: 1.0625rem;
  }
  .main-content-box aside.table-of-contents html body .toc a {
    padding: 0.65em 0.85em;
    min-height: 2.75em;
    font-size: 1.0625rem;
  }
  .main-content-box aside.table-of-contents .toc > ul > li {
    margin-bottom: 0.5em;
  }
  .main-content-box aside.table-of-contents .toc > ul > li > ul > li {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
  }
  .main-content-box aside.table-of-contents nav.toc > ul {
    padding-right: 3em;
  }
  .main-content-box aside.table-of-contents .toc-close {
    position: static;
    margin: 0;
  }
  .main-content-box aside.table-of-contents nav.toc::after {
    content: " ";
    height: 1px;
    display: block;
  }
  .two-column aside.table-of-contents.open,
  .three-column aside.table-of-contents.open {
    transform: translateX(-50%) translateY(0);
  }
}
/* /table of contents */
/* section links */
/* Blog post section links - anchor icon hidden for now */
.one-column .site-main .entry-content .section-link-h2,
.one-column .site-main .entry-content .section-link-h3,
.two-column .site-main .entry-content .section-link-h2,
.two-column .site-main .entry-content .section-link-h3,
.three-column .site-main .entry-content .section-link-h2,
.three-column .site-main .entry-content .section-link-h3 {
  display: none !important;
}

/* Copy button for section headings - positioned inside heading, to the right */
/* Now uses .btn .btn-ghost .btn-icon .btn-sm classes for base styling */
/* Component-specific styles only (positioning, visibility, copied state) */
.one-column .site-main .entry-content .section-link-header .section-copy-h2,
.one-column .site-main .entry-content .section-link-header .section-copy-h3,
.two-column .site-main .entry-content .section-link-header .section-copy-h2,
.two-column .site-main .entry-content .section-link-header .section-copy-h3,
.three-column .site-main .entry-content .section-link-header .section-copy-h2,
.three-column .site-main .entry-content .section-link-header .section-copy-h3 {
  margin-left: 0.75em;
  opacity: 0;
  pointer-events: none;
  vertical-align: middle;
  flex-shrink: 0;
}
.one-column .site-main .entry-content .section-link-header .section-copy-h2:hover,
.one-column .site-main .entry-content .section-link-header .section-copy-h3:hover,
.two-column .site-main .entry-content .section-link-header .section-copy-h2:hover,
.two-column .site-main .entry-content .section-link-header .section-copy-h3:hover,
.three-column .site-main .entry-content .section-link-header .section-copy-h2:hover,
.three-column .site-main .entry-content .section-link-header .section-copy-h3:hover {
  pointer-events: auto;
}
.one-column .site-main .entry-content .section-link-header .section-copy-h2.copied,
.one-column .site-main .entry-content .section-link-header .section-copy-h3.copied,
.two-column .site-main .entry-content .section-link-header .section-copy-h2.copied,
.two-column .site-main .entry-content .section-link-header .section-copy-h3.copied,
.three-column .site-main .entry-content .section-link-header .section-copy-h2.copied,
.three-column .site-main .entry-content .section-link-header .section-copy-h3.copied {
  background: #f0fdf4;
  border-color: #22c55e;
  color: #16a34a;
}
.one-column .site-main .entry-content .section-link-header .section-copy-h2.copied:hover,
.one-column .site-main .entry-content .section-link-header .section-copy-h3.copied:hover,
.two-column .site-main .entry-content .section-link-header .section-copy-h2.copied:hover,
.two-column .site-main .entry-content .section-link-header .section-copy-h3.copied:hover,
.three-column .site-main .entry-content .section-link-header .section-copy-h2.copied:hover,
.three-column .site-main .entry-content .section-link-header .section-copy-h3.copied:hover {
  background: #dcfce7;
  border-color: #16a34a;
}
.one-column .site-main .entry-content .section-link-header .section-copy-h2 .fa-anchor,
.one-column .site-main .entry-content .section-link-header .section-copy-h3 .fa-anchor,
.two-column .site-main .entry-content .section-link-header .section-copy-h2 .fa-anchor,
.two-column .site-main .entry-content .section-link-header .section-copy-h3 .fa-anchor,
.three-column .site-main .entry-content .section-link-header .section-copy-h2 .fa-anchor,
.three-column .site-main .entry-content .section-link-header .section-copy-h3 .fa-anchor {
  color: inherit;
  font-size: inherit;
}
.one-column .site-main .entry-content .section-link-header .section-copy-h2::after,
.one-column .site-main .entry-content .section-link-header .section-copy-h3::after,
.two-column .site-main .entry-content .section-link-header .section-copy-h2::after,
.two-column .site-main .entry-content .section-link-header .section-copy-h3::after,
.three-column .site-main .entry-content .section-link-header .section-copy-h2::after,
.three-column .site-main .entry-content .section-link-header .section-copy-h3::after {
  content: "Click to copy";
  position: absolute;
  bottom: calc(100% + 8px);
  /*left: 50%;*/
  /*transform: translateX(-50%);*/
  background: #111827;
  color: #ffffff;
  padding: 6px 10px;
  border-radius: 0.25rem;
  font-family: "Figtree", sans-serif;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 400;
  white-space: nowrap;
  pointer-events: none;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.one-column .site-main .entry-content .section-link-header .section-copy-h2::before,
.one-column .site-main .entry-content .section-link-header .section-copy-h3::before,
.two-column .site-main .entry-content .section-link-header .section-copy-h2::before,
.two-column .site-main .entry-content .section-link-header .section-copy-h3::before,
.three-column .site-main .entry-content .section-link-header .section-copy-h2::before,
.three-column .site-main .entry-content .section-link-header .section-copy-h3::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #111827;
  pointer-events: none;
  z-index: 10001;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.one-column .site-main .entry-content .section-link-header .section-copy-h2:hover::after, .one-column .site-main .entry-content .section-link-header .section-copy-h2:hover::before,
.one-column .site-main .entry-content .section-link-header .section-copy-h3:hover::after,
.one-column .site-main .entry-content .section-link-header .section-copy-h3:hover::before,
.two-column .site-main .entry-content .section-link-header .section-copy-h2:hover::after,
.two-column .site-main .entry-content .section-link-header .section-copy-h2:hover::before,
.two-column .site-main .entry-content .section-link-header .section-copy-h3:hover::after,
.two-column .site-main .entry-content .section-link-header .section-copy-h3:hover::before,
.three-column .site-main .entry-content .section-link-header .section-copy-h2:hover::after,
.three-column .site-main .entry-content .section-link-header .section-copy-h2:hover::before,
.three-column .site-main .entry-content .section-link-header .section-copy-h3:hover::after,
.three-column .site-main .entry-content .section-link-header .section-copy-h3:hover::before {
  opacity: 1;
}
.one-column .site-main .entry-content .section-link-header .section-copy-h2.copied:hover::after,
.one-column .site-main .entry-content .section-link-header .section-copy-h3.copied:hover::after,
.two-column .site-main .entry-content .section-link-header .section-copy-h2.copied:hover::after,
.two-column .site-main .entry-content .section-link-header .section-copy-h3.copied:hover::after,
.three-column .site-main .entry-content .section-link-header .section-copy-h2.copied:hover::after,
.three-column .site-main .entry-content .section-link-header .section-copy-h3.copied:hover::after {
  content: "Copied!";
  background: #22c55e;
}
.one-column .site-main .entry-content .section-link-header .section-copy-h2.copied:hover::before,
.one-column .site-main .entry-content .section-link-header .section-copy-h3.copied:hover::before,
.two-column .site-main .entry-content .section-link-header .section-copy-h2.copied:hover::before,
.two-column .site-main .entry-content .section-link-header .section-copy-h3.copied:hover::before,
.three-column .site-main .entry-content .section-link-header .section-copy-h2.copied:hover::before,
.three-column .site-main .entry-content .section-link-header .section-copy-h3.copied:hover::before {
  border-top-color: #22c55e;
}
html[data-theme=dark] .one-column .site-main .entry-content .section-link-header .section-copy-h2::after,
html[data-theme=dark] .one-column .site-main .entry-content .section-link-header .section-copy-h3::after,
html[data-theme=dark] .two-column .site-main .entry-content .section-link-header .section-copy-h2::after,
html[data-theme=dark] .two-column .site-main .entry-content .section-link-header .section-copy-h3::after,
html[data-theme=dark] .three-column .site-main .entry-content .section-link-header .section-copy-h2::after,
html[data-theme=dark] .three-column .site-main .entry-content .section-link-header .section-copy-h3::after {
  background: #374151;
}
html[data-theme=dark] .one-column .site-main .entry-content .section-link-header .section-copy-h2::before,
html[data-theme=dark] .one-column .site-main .entry-content .section-link-header .section-copy-h3::before,
html[data-theme=dark] .two-column .site-main .entry-content .section-link-header .section-copy-h2::before,
html[data-theme=dark] .two-column .site-main .entry-content .section-link-header .section-copy-h3::before,
html[data-theme=dark] .three-column .site-main .entry-content .section-link-header .section-copy-h2::before,
html[data-theme=dark] .three-column .site-main .entry-content .section-link-header .section-copy-h3::before {
  border-top-color: #374151;
}
html[data-theme=dark] .one-column .site-main .entry-content .section-link-header .section-copy-h2:hover::after,
html[data-theme=dark] .one-column .site-main .entry-content .section-link-header .section-copy-h3:hover::after,
html[data-theme=dark] .two-column .site-main .entry-content .section-link-header .section-copy-h2:hover::after,
html[data-theme=dark] .two-column .site-main .entry-content .section-link-header .section-copy-h3:hover::after,
html[data-theme=dark] .three-column .site-main .entry-content .section-link-header .section-copy-h2:hover::after,
html[data-theme=dark] .three-column .site-main .entry-content .section-link-header .section-copy-h3:hover::after {
  background: #374151;
}
html[data-theme=dark] .one-column .site-main .entry-content .section-link-header .section-copy-h2:hover::before,
html[data-theme=dark] .one-column .site-main .entry-content .section-link-header .section-copy-h3:hover::before,
html[data-theme=dark] .two-column .site-main .entry-content .section-link-header .section-copy-h2:hover::before,
html[data-theme=dark] .two-column .site-main .entry-content .section-link-header .section-copy-h3:hover::before,
html[data-theme=dark] .three-column .site-main .entry-content .section-link-header .section-copy-h2:hover::before,
html[data-theme=dark] .three-column .site-main .entry-content .section-link-header .section-copy-h3:hover::before {
  border-top-color: #374151;
}
html[data-theme=dark] .one-column .site-main .entry-content .section-link-header .section-copy-h2.copied:hover::after,
html[data-theme=dark] .one-column .site-main .entry-content .section-link-header .section-copy-h3.copied:hover::after,
html[data-theme=dark] .two-column .site-main .entry-content .section-link-header .section-copy-h2.copied:hover::after,
html[data-theme=dark] .two-column .site-main .entry-content .section-link-header .section-copy-h3.copied:hover::after,
html[data-theme=dark] .three-column .site-main .entry-content .section-link-header .section-copy-h2.copied:hover::after,
html[data-theme=dark] .three-column .site-main .entry-content .section-link-header .section-copy-h3.copied:hover::after {
  content: "Copied!";
  background: #16a34a;
}
html[data-theme=dark] .one-column .site-main .entry-content .section-link-header .section-copy-h2.copied:hover::before,
html[data-theme=dark] .one-column .site-main .entry-content .section-link-header .section-copy-h3.copied:hover::before,
html[data-theme=dark] .two-column .site-main .entry-content .section-link-header .section-copy-h2.copied:hover::before,
html[data-theme=dark] .two-column .site-main .entry-content .section-link-header .section-copy-h3.copied:hover::before,
html[data-theme=dark] .three-column .site-main .entry-content .section-link-header .section-copy-h2.copied:hover::before,
html[data-theme=dark] .three-column .site-main .entry-content .section-link-header .section-copy-h3.copied:hover::before {
  border-top-color: #16a34a;
}
.one-column .site-main .entry-content .section-link-header .section-copy-h2::after,
.one-column .site-main .entry-content .section-link-header .section-copy-h3::after,
.two-column .site-main .entry-content .section-link-header .section-copy-h2::after,
.two-column .site-main .entry-content .section-link-header .section-copy-h3::after,
.three-column .site-main .entry-content .section-link-header .section-copy-h2::after,
.three-column .site-main .entry-content .section-link-header .section-copy-h3::after {
  bottom: calc(100% - 2px);
  /* left: 50%; // Center horizontally */
  /* transform: translateX(-50%); // Center horizontally */
}
.one-column .site-main .entry-content .section-link-header .section-copy-h2::before,
.one-column .site-main .entry-content .section-link-header .section-copy-h3::before,
.two-column .site-main .entry-content .section-link-header .section-copy-h2::before,
.two-column .site-main .entry-content .section-link-header .section-copy-h3::before,
.three-column .site-main .entry-content .section-link-header .section-copy-h2::before,
.three-column .site-main .entry-content .section-link-header .section-copy-h3::before {
  opacity: 0 !important;
}

/* Position headings relatively so they contain the floated link */
.one-column .site-main .entry-content .section-link-header,
.two-column .site-main .entry-content .section-link-header,
.three-column .site-main .entry-content .section-link-header {
  position: relative;
  display: block;
  cursor: pointer;
  transition: color 0.2s ease;
}
.one-column .site-main .entry-content .section-link-header:hover,
.two-column .site-main .entry-content .section-link-header:hover,
.three-column .site-main .entry-content .section-link-header:hover {
  color: #111827;
}

html[data-theme=dark] .one-column .site-main .entry-content .section-link-header:hover,
html[data-theme=dark] .two-column .site-main .entry-content .section-link-header:hover,
html[data-theme=dark] .three-column .site-main .entry-content .section-link-header:hover {
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] {
  /* Mobile Nav Bar Dark Mode */
}
html[data-theme=dark] .mobile-nav-bar {
  background: var(--surface-body, #ffffff);
  border-bottom-color: var(--border-faint, rgba(24, 24, 27, 0.05));
  /*-webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);*/
}
html[data-theme=dark] .mobile-nav-bar.stuck {
  background: var(--surface-body, #ffffff);
}
html[data-theme=dark] .mobile-nav-bar .doc-open-content > span:first-child {
  color: var(--text-secondary, #52525b);
}
html[data-theme=dark] .mobile-nav-bar .doc-open-content > span:last-child {
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] .doc-open-icon {
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] .doc-open:hover .doc-open-icon,
html[data-theme=dark] .doc-open:focus .doc-open-icon {
  background: var(--surface-elevated, #f4f4f5);
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] .two-column .mobile-nav-bar span {
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] .mobile-nav-bar .toc-open {
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] .mobile-nav-bar .toc-open:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}
html[data-theme=dark] {
  /* Table of Contents Dark Mode */
}
html[data-theme=dark] .table-of-contents {
  /* background: color-surface(body);
  border-color: color-border(subtle); */
  background: none;
}
html[data-theme=dark] .table-of-contents::before {
  /* background: color-border(subtle); */
  background: none;
}
html[data-theme=dark] .two-column .table-of-contents {
  border-left-color: var(--border-subtle, #f4f4f5);
}
@media screen and (min-width: 1025px) {
  html[data-theme=dark] .two-column .table-of-contents {
    border-left: none;
  }
}
html[data-theme=dark] .three-column .table-of-contents {
  border-left-color: var(--border-subtle, #f4f4f5);
}
@media screen and (min-width: 1025px) {
  html[data-theme=dark] .three-column .table-of-contents {
    border-left: none;
  }
}
html[data-theme=dark] .two-column .site-main {
  border-left-color: var(--border-subtle, #f4f4f5);
  border-right-color: var(--border-subtle, #f4f4f5);
}
html[data-theme=dark] .toc {
  color: var(--text-secondary, #52525b);
}
html[data-theme=dark] .toc > span {
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] .toc-header > span {
  color: var(--text-primary, #18181b);
  background: transparent;
}
@media screen and (min-width: 1025px) {
  html[data-theme=dark] .two-column .table-of-contents .toc li.scrollspy-active > a,
  html[data-theme=dark] .three-column .table-of-contents .toc li.scrollspy-active > a {
    color: var(--text-primary, #18181b) !important;
  }
}
@media screen and (min-width: 1200px) {
  html[data-theme=dark] .two-column .table-of-contents .toc-header > span,
  html[data-theme=dark] .three-column .table-of-contents .toc-header > span {
    color: var(--text-primary, #18181b) !important;
    background: transparent !important;
  }
}
html[data-theme=dark] html body .toc a {
  color: var(--text-secondary, #52525b);
}
html[data-theme=dark] html body .toc a:hover {
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] html body .toc a.is-active {
  color: #60a5fa;
}
html[data-theme=dark] .toc li.scrollspy-active > a {
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] .toc-close {
  color: var(--text-primary, #18181b);
}
html[data-theme=dark] .toc-close:hover, html[data-theme=dark] .toc-close:focus {
  background: var(--surface-elevated, #f4f4f5);
  color: var(--text-primary, #18181b);
}
@media screen and (max-width: 1024px) {
  html[data-theme=dark] .main-content-box aside.documentation-menu {
    background: var(--surface-body, #ffffff) !important;
    border-color: var(--border-subtle, #f4f4f5) !important;
  }
  html[data-theme=dark] .main-content-box aside.documentation-menu::-webkit-scrollbar-thumb {
    background: var(--border-subtle, #f4f4f5) !important;
  }
  html[data-theme=dark] .main-content-box aside.documentation-menu .doc-header {
    background: var(--surface-body, #ffffff);
  }
  html[data-theme=dark] .main-content-box aside.table-of-contents {
    background: var(--surface-body, #ffffff) !important;
    border-color: var(--border-subtle, #f4f4f5) !important;
  }
  html[data-theme=dark] .main-content-box aside.table-of-contents::-webkit-scrollbar-thumb {
    background: var(--border-subtle, #f4f4f5) !important;
  }
  html[data-theme=dark] .main-content-box aside.table-of-contents nav.toc .toc-header {
    background: var(--surface-body, #ffffff);
  }
}

/* Smooth scroll behavior for anchor links */
html {
  scroll-behavior: auto;
}
html[data-reduce-motion=true], html.prefers-reduced-motion, html[data-disable-smooth-scroll=true] {
  scroll-behavior: auto !important;
}

html[data-disable-smooth-scroll=true] {
  scroll-behavior: auto !important;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }
}
/* Icon visibility controlled by JavaScript - see tjf-2023-scripts.js */
.two-column .site-main .entry-content .section-link-h3,
.three-column .site-main .entry-content .section-link-h3 {
  margin-top: 0.65em;
}

.two-column .site-main .entry-content .section-link-h2,
.three-column .site-main .entry-content .section-link-h2 {
  margin-top: 0.95em;
}

@media screen and (max-width: 1024px) {
  .two-column .site-main .entry-content .section-link-h2,
  .two-column .site-main .entry-content .section-link-h3,
  .three-column .site-main .entry-content .section-link-h2,
  .three-column .site-main .entry-content .section-link-h3 {
    left: auto;
    right: -1.4em;
  }
  .two-column .site-main .entry-content .section-link-h3,
  .three-column .site-main .entry-content .section-link-h3 {
    top: 0.7em;
  }
  .two-column .site-main .entry-content .section-link-h2,
  .three-column .site-main .entry-content .section-link-h2 {
    top: 1em;
  }
  /* Tooltip styles - commented out for future use */
  /*
  .two-column .site-main .entry-content .section-link-h2::after,
  .two-column .site-main .entry-content .section-link-h3::after,
  .three-column .site-main .entry-content .section-link-h2::after,
  .three-column .site-main .entry-content .section-link-h3::after {
    right: -2px;
  }
  */
}
@media screen and (min-width: 1025px) {
  /* Tooltip styles - commented out for future use */
  /*
  .two-column .site-main .entry-content .section-link-h2::after,
  .two-column .site-main .entry-content .section-link-h3::after,
  .three-column .site-main .entry-content .section-link-h2::after,
  .three-column .site-main .entry-content .section-link-h3::after {
    left: -2px;
  }
  */
}
/* Tooltip styles - commented out for future use */
/*
.two-column .site-main .entry-content .section-link-h2::after,
.two-column .site-main .entry-content .section-link-h3::after,
.three-column .site-main .entry-content .section-link-h2::after,
.three-column .site-main .entry-content .section-link-h3::after {
  background-color: $color-gray-900;
  border-radius: 5px;
  color: $color-white-900;
  content: "Section Permalink";
  transition: opacity .1s;
  padding: .6em 1em .5em 1em;
  position: absolute;
  text-align: center;
  white-space: nowrap;
  z-index: 50;
  pointer-events: none;
  opacity: 0;
}

.two-column .site-main .entry-content .section-link-h2:not(.top)::after,
.two-column .site-main .entry-content .section-link-h3:not(.top)::after,
.three-column .site-main .entry-content .section-link-h2:not(.top)::after,
.three-column .site-main .entry-content .section-link-h3:not(.top)::after {
  top: -40px;
}

.two-column .site-main .entry-content .section-link-h2.top::after,
.two-column .site-main .entry-content .section-link-h3.top::after,
.three-column .site-main .entry-content .section-link-h2.top::after,
.three-column .site-main .entry-content .section-link-h3.top::after {
  bottom: -40px;
}

.two-column .site-main .entry-content .section-link-h2:not(.copied):hover::after,
.two-column .site-main .entry-content .section-link-h3:not(.copied):hover::after,
.three-column .site-main .entry-content .section-link-h2:not(.copied):hover::after,
.three-column .site-main .entry-content .section-link-h3:not(.copied):hover::after {
  opacity: 1;
}
*/
/* /section links */
/* neighbor nav */
#neighbor-nav {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1.2em;
  font-family: "Figtree", sans-serif;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding-top: 1.5em;
}

#neighbor-nav .nn-prev {
  grid-row: 1;
  color: #111827;
  transition: all 0.1s;
}

#neighbor-nav .nn-next {
  grid-row: 2;
  color: #111827;
  transition: all 0.1s;
}

#neighbor-nav .nn-prev:hover,
#neighbor-nav .nn-next:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}

#neighbor-nav a {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  border: 1px solid #e5e7eb;
  border-radius: 5px;
  padding: 1.2em;
  text-decoration: none;
}

#neighbor-nav .nn-prev .nn-arrow {
  grid-row: 1/span 2;
  grid-column: 1;
  display: flex;
  justify-content: left;
  align-items: center;
}

#neighbor-nav .nn-next .nn-arrow {
  grid-row: 1/span 2;
  grid-column: 5;
  display: flex;
  justify-content: right;
  align-items: center;
}

#neighbor-nav .nn-prev .nn-label {
  grid-row: 1;
  grid-column: 2/span 4;
  display: flex;
  justify-content: right;
}

#neighbor-nav .nn-next .nn-label {
  grid-row: 1;
  grid-column: 1/span 4;
  display: flex;
  justify-content: left;
}

.nn-label {
  font-size: 0.875rem;
}

.nn-title {
  font-weight: bold;
  font-size: 1.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nn-title.nn-long-title {
  font-size: 0.9375rem;
}

#neighbor-nav .nn-prev .nn-title {
  grid-row: 2;
  grid-column: 2/span 4;
  display: block;
  justify-content: right;
  text-align: right;
}

#neighbor-nav .nn-next .nn-title {
  grid-row: 2;
  grid-column: 1/span 4;
  display: block;
  justify-content: left;
}

@media screen and (max-width: 1024px) {
  #neighbor-nav {
    max-width: 100%;
  }
  #neighbor-nav .nn-prev .nn-label {
    grid-column: 1/span 5;
  }
  #neighbor-nav .nn-next .nn-label {
    grid-column: 1/span 5;
  }
}
@media screen and (min-width: 1025px) {
  #neighbor-nav {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr;
    max-width: none;
  }
  #neighbor-nav .nn-prev {
    grid-column: 1;
    grid-row: 1;
  }
  #neighbor-nav .nn-next {
    grid-column: 2;
    grid-row: 1;
  }
}
/* /neighbor nav */
/* doc author box */
#doc-author-box {
  padding-top: 1.5em;
}

#doc-author-box span {
  color: var(--text-primary, #18181b);
  font-weight: bold;
  font-size: 1.25rem;
  display: block;
  margin-bottom: 0.6em;
  font-family: "Figtree", sans-serif;
}

#doc-author-box p {
  font-size: 1.0625rem;
  font-family: "Figtree", sans-serif;
  color: var(--text-primary, #18181b);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
[data-theme=dark] #doc-author-box p {
  color: var(--text-secondary, #52525b);
}

/* / mobile nav bar */
/* typesense search results */
.aa-List li {
  padding: 0.3em !important;
}

.aa-Item .aa-ItemContent {
  display: flex !important;
  width: 100%;
}

.aa-Item .aa-ItemContent img {
  height: 80px !important;
  width: 80px !important;
  max-height: none !important;
  max-width: none !important;
  display: block !important;
  object-position: left !important;
}

.aa-Item .aa-ItemContent .aa-ItemContentTitle {
  white-space: normal !important;
  padding: 1em !important;
  text-transform: none !important;
  font-size: 0.9em !important;
  color: #4b5563 !important;
  text-align: left !important;
}

.aa-Item .aa-ItemIcon {
  justify-content: flex-start !important;
  display: flex !important;
}

.aa-List .aa-ItemContent .aa-ItemIcon {
  width: 80px !important;
}

.aa-ItemWrapper {
  display: flex !important;
}

.aa-Item .aa-ItemContent .aa-ItemContentBody .aa-ItemContentDescription {
  display: none !important;
}

.aa-SourceHeader {
  display: none !important;
}

.aa-List {
  padding: 0 !important;
}

.aa-SourceNoResults {
  display: none !important;
}

@media screen and (min-width: 769px) {
  .aa-Item .aa-ItemContent img {
    height: 100px !important;
    width: 100px !important;
    max-height: none !important;
    max-width: none !important;
    display: block !important;
    object-position: left !important;
  }
  .aa-List .aa-ItemContent .aa-ItemIcon {
    width: 100px !important;
  }
  .aa-Item .aa-ItemContent .aa-ItemContentTitle {
    padding-left: 0 !important;
    padding-top: 0 !important;
  }
  .aa-Item .aa-ItemContent .aa-ItemContentBody .aa-ItemContentDescription {
    display: block !important;
    color: #6b7280 !important;
  }
  .aa-Item .aa-ItemContent .aa-ItemContentBody .aa-ItemContentDescription::after {
    display: inline !important;
    color: #6b7280 !important;
    content: "…";
  }
}
/* Body scroll is locked via JS event listeners when modal is open (no overflow change = no scrollbar shift) */
.search-modal {
  background: var(--surface-overlay, rgba(24, 24, 27, 0.6));
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  align-items: flex-start;
  justify-content: center;
  display: none;
  padding-top: 10vh;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.search-modal.open {
  display: flex;
}
.search-modal .search-box {
  background: var(--surface-body, #ffffff);
  width: 90%;
  max-width: 700px;
  padding: 0;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(24, 24, 27, 0.3);
  border: 1px solid var(--border-subtle, #f4f4f5);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: auto;
  max-height: 80vh;
  overflow: hidden;
}
@media screen and (max-width: 1199px) {
  .search-modal .search-box {
    width: 95%;
    border-radius: 8px;
  }
}
.search-modal .hit-content a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  height: 100%;
  width: 100%;
  padding: 14px 24px !important;
  text-decoration: none;
  color: var(--text-secondary, #52525b);
  border-radius: 0;
  transition: background-color 0.15s ease;
}
.search-modal .hit-content a.keyboard-selected {
  background: var(--surface-elevated, #f4f4f5) !important;
  color: var(--text-primary, #18181b) !important;
}
@media screen and (max-width: 1199px) {
  .search-modal .hit-content a {
    padding: 12px 20px !important;
  }
}
.search-modal .hit-content a:hover,
.search-modal .hit-content a:focus {
  background: var(--surface-elevated, #f4f4f5) !important;
  color: var(--text-primary, #18181b) !important;
}
.search-modal .hit-content {
  margin: 0;
  padding: 0 !important;
  border-radius: 5px;
  width: 100%;
}
.search-modal .hit-content a h5 {
  margin: 0 0 4px 0 !important;
  padding: 0 !important;
  font-size: 1.0625rem !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  color: var(--text-secondary, #52525b) !important;
  flex: 1;
}
.search-modal .hit-content a.keyboard-selected h5,
.search-modal .hit-content a:hover h5,
.search-modal .hit-content a:focus h5 {
  color: var(--text-primary, #18181b) !important;
}
.search-modal .ais-Hits-item {
  background: none;
  box-shadow: none;
}
.search-modal .search-box a {
  transition: none;
  color: var(--text-secondary, #52525b);
  width: 100%;
}
.search-modal .ais-Highlight-highlighted,
.search-modal .ais-Snippet-highlighted {
  background: none;
  color: var(--text-primary, #18181b);
  padding: 0;
  font-weight: 600;
  font-size: inherit;
}
.search-modal .hit-content a:hover .ais-Highlight-highlighted,
.search-modal .hit-content a:hover .ais-Snippet-highlighted,
.search-modal .hit-content a:focus .ais-Highlight-highlighted,
.search-modal .hit-content a:focus .ais-Snippet-highlighted,
.search-modal .hit-content a.keyboard-selected .ais-Highlight-highlighted,
.search-modal .hit-content a.keyboard-selected .ais-Snippet-highlighted {
  color: var(--text-primary, #18181b) !important;
  font-weight: 600;
}
.search-modal .ais-Pagination-item {
  margin: 0 2px;
}
.search-modal .ais-Pagination-item .ais-Pagination-link {
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: transparent;
  border-radius: 6px;
  padding: 4px 8px;
  min-width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  font-size: 0.875rem;
  font-weight: 500;
}
.search-modal .ais-Pagination-item:not(.ais-Pagination-item--disabled) .ais-Pagination-link {
  border-color: rgba(17, 24, 39, 0.15);
  color: var(--text-secondary, #52525b);
}
.search-modal .ais-Pagination-item:not(.ais-Pagination-item--disabled) .ais-Pagination-link:hover {
  background: transparent;
  border-color: rgba(17, 24, 39, 0.2);
  color: var(--text-primary, #18181b);
}
.search-modal .ais-Pagination-item.ais-Pagination-item--disabled .ais-Pagination-link {
  opacity: 0.4;
  cursor: not-allowed;
}
.search-modal .ais-Pagination-item.ais-Pagination-item--selected .ais-Pagination-link {
  background: transparent !important;
  color: var(--text-primary, #18181b) !important;
  border-color: rgba(17, 24, 39, 0.2) !important;
  font-weight: 600;
}
.search-modal .ais-Pagination-link.keyboard-selected {
  background: transparent !important;
  border-color: rgba(17, 24, 39, 0.2) !important;
  color: var(--text-primary, #18181b) !important;
  outline: 2px solid rgba(17, 24, 39, 0.15);
  outline-offset: 2px;
}
.search-modal ul.cmswt-IndexSwitcher {
  margin: 0;
  padding: 16px 24px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #e5e7eb;
  border-top: 1px solid #e5e7eb;
  background: transparent;
}
.search-modal .ais-SearchBox-input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(17, 24, 39, 0.08) !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  font-size: 1rem !important;
  transition: border-color 0.15s ease !important;
}
.search-modal .ais-SearchBox-input:hover {
  border-color: var(--border-muted, #e4e4e7) !important;
}
.search-modal .ais-SearchBox-input:focus {
  border-color: rgba(17, 24, 39, 0.2) !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.05);
}
.search-modal .cmswt-Pagination {
  margin: 0;
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 8px 24px;
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  z-index: 10;
  height: auto;
  min-height: auto;
  line-height: 1;
}
.search-modal .ais-Hits-list {
  margin: 0 !important;
  padding: 0;
  list-style: none;
  max-height: none;
}
.search-modal .cmswt-SearchBox {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 20px 16px 20px 20px;
  /* border-bottom: 1px solid $color-gray-200; */
}
.search-modal .cmswt-SearchBox .ais-SearchBox {
  order: 1;
  flex: 1;
}
.search-modal .cmswt-SearchBox .search-close {
  order: 2;
  font-weight: 400;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #6b7280;
  transition: all 0.15s ease;
  flex-shrink: 0;
}
.search-modal .cmswt-SearchBox .search-close:hover {
  background: var(--surface-elevated, #f4f4f5);
  color: #111827;
}

.hit-description {
  padding-top: 0 !important;
  color: var(--text-muted, #a1a1aa) !important;
  font-size: 0.875rem !important;
  line-height: 1.4 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 1 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-height: 1.4em !important;
}

.hit-content .title {
  font-weight: 600;
  font-size: 1rem !important;
  color: var(--text-primary, #18181b) !important;
  margin-bottom: 4px;
}

.cmswt-InstantSearch .ais-Hits-list {
  gap: 0.3em;
}

#search-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: auto;
}

.cmswt-MainPanel {
  padding: 0 !important;
  flex-grow: 1;
  overflow: hidden;
  min-height: 0;
  display: block !important;
}

.cmswt-Results {
  flex-grow: 1;
  overflow: hidden;
  min-height: 0;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
}

.cmswt-Result {
  position: relative;
  min-height: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cmswt-Result-hits {
  flex-grow: 1;
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 0;
}

.cmswt-InstantSearch {
  margin-bottom: 0 !important;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 0;
}

.cmswt-Result:has(.cmswt-Result-hits:empty) {
  display: none;
}

.cmswt-Header {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cmswt-InstantSearch {
  flex-direction: column;
  height: 100%;
  display: flex;
  flex-grow: 1;
  min-height: 0;
}

.cmswt-IndexSwitcher-item {
  font-size: 0.875rem;
  margin: 0 4px;
  list-style: none;
}

.cmswt-IndexSwitcher-item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 6px;
  font-size: 0.95em;
  font-weight: 500;
  color: #4b5563;
  transition: all 0.15s ease;
  text-decoration: none;
  background: transparent;
  box-shadow: none;
  box-sizing: border-box;
}

.cmswt-IndexSwitcher-item.active a {
  background: transparent;
  color: #111827;
  border-color: rgba(17, 24, 39, 0.2);
  box-shadow: none;
  font-weight: 500;
}

.cmswt-IndexSwitcher-item:not(.active) a:hover {
  background: transparent;
  border-color: rgba(17, 24, 39, 0.2);
  color: #111827;
}

.cmswt-IndexSwitcher-item a:active {
  transform: translateY(1px);
  box-shadow: inset 0 1px 2px rgba(17, 24, 39, 0.1);
  border-color: rgba(17, 24, 39, 0.2);
}

.cmswt-IndexSwitcher-item {
  font-size: 0.875em;
  margin: 0;
  border-radius: 6px;
  transition: all 0.15s ease;
}

.cmswt-IndexSwitcher-link {
  padding: 4px 10px !important;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.8em;
  transition: all 0.15s ease;
}

.ais-Pagination-link {
  padding: 4px 8px !important;
  min-width: 28px !important;
  height: 28px !important;
  border-radius: 6px !important;
}

.cmswt-CollectionMenu {
  width: 100% !important;
}

.cmswt-CollectionMenu-current {
  display: none !important;
  border-radius: 0 !important;
}

.ais-Pagination-list span,
.ais-Pagination-list a {
  font-size: 0.8em !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ais-Pagination-list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ais-Pagination-item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  flex-shrink: 0;
}
.ais-Pagination-item .ais-Pagination-link {
  min-width: 28px;
  height: 28px;
  border-radius: 6px;
}

#search-modal {
  padding: 5%;
  box-sizing: border-box;
  overflow-y: auto;
  align-items: flex-start;
}

.default-MainPanel {
  display: none;
}

.cmswt-InstantSearch:has(.ais-SearchBox-input:placeholder-shown) + .default-MainPanel {
  display: block;
}

.cmswt-InstantSearch:has(.ais-SearchBox-input:placeholder-shown) {
  flex-grow: 1;
}

.cmswt-Header:has(.ais-SearchBox-input:placeholder-shown) + .cmswt-MainPanel {
  display: flex;
}

.default-MainPanel {
  font-size: 1rem;
}

.default-Hits-list {
  list-style-type: none;
  padding-left: 0;
}

.search-result-link {
  color: var(--text-secondary, #52525b);
  font-size: 0.875rem;
  margin-bottom: 2px;
  display: block;
  line-height: 1.35;
}

.hit-content a.keyboard-selected .search-result-link,
.hit-content a:hover .search-result-link,
.hit-content a:focus .search-result-link {
  color: var(--text-primary, #18181b) !important;
}

.hit-description {
  padding-top: 0 !important;
  line-height: 1.4 !important;
}

.hit-meta {
  line-height: 0.8;
}

.search-result-link {
  width: 90%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  height: 1.5em;
}

.cmswt-Result .ais-Hits-list {
  gap: 0;
  margin: 0;
  padding: 0;
}

.hit-content {
  box-sizing: border-box;
  width: 100%;
}
.hit-content a {
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 20px !important;
  margin: 0 !important;
  box-sizing: border-box;
  gap: 6px;
}
.hit-content .hit-meta {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.hit-content h5 {
  font-size: 1.0625rem !important;
  font-weight: 600;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
  line-height: 1.35;
  margin: 0 0 4px 0;
}

.hit-content .hit-description {
  font-size: 0.875rem !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1.5 !important;
  color: var(--text-muted, #a1a1aa) !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 1 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-height: 1.5em !important;
}

.default-Hits-list {
  margin: 0 !important;
  padding: 0;
  list-style: none;
}

/* Keyboard navigation hints */
.search-keyboard-hints {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 24px;
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
  font-size: 0.8em;
  color: #6b7280;
  flex-shrink: 0;
  position: sticky;
  bottom: 0;
  z-index: 9;
}
.search-keyboard-hints .hint-item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.search-keyboard-hints .hint-item .kbd-key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 8px;
  background: transparent;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  font-size: 0.9em;
  font-weight: 500;
  box-shadow: none;
}

.cmswt-InstantSearch .ais-Hits-list {
  display: flex !important;
}

.cmswt-IndexSwitcher {
  overflow: hidden;
  border-radius: 0 !important;
}

ul.cmswt-IndexSwitcher {
  justify-content: left !important;
}

.cmswt-IndexSwitcher-link {
  padding: 0.5em 1em !important;
}

.cmswt-IndexSwitcher-item.active {
  background: none !important;
}
.cmswt-IndexSwitcher-item.active a, .cmswt-IndexSwitcher-item.active button {
  color: #111827 !important;
  border-color: rgba(17, 24, 39, 0.2) !important;
}

.cmswt-IndexSwitcher-item:not(.active) {
  background: none !important;
}
.cmswt-IndexSwitcher-item:not(.active) a, .cmswt-IndexSwitcher-item:not(.active) button {
  color: #6b7280 !important;
}

.cmswt-IndexSwitcher-item:not(.active):hover {
  background: none !important;
}
.cmswt-IndexSwitcher-item:not(.active):hover a, .cmswt-IndexSwitcher-item:not(.active):hover button {
  color: #111827 !important;
  border-color: rgba(17, 24, 39, 0.2) !important;
}

.cmswt-IndexSwitcher-link:focus-visible {
  text-decoration: underline !important;
  text-underline-offset: 0.3em;
}

.search-box:has(li.active > a[data-collection=all]) li.default-Hits-item:not(.all-item) {
  display: none;
}

.cmswt-MainPanel .hit-description::before,
.cmswt-MainPanel .hit-description::after {
  content: "";
}

.cmswt-MainPanel .hit-description {
  max-height: 1.4em !important;
  text-overflow: ellipsis !important;
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 1 !important;
  -webkit-box-orient: vertical !important;
}

/* / typesense search results */
.search-modal .tjf-search-tabs {
  gap: 0.5rem;
}
.search-modal .tjf-search-tab {
  margin: 0;
}
.search-modal .tjf-search__empty {
  padding: 1.5rem 1.5rem 1.25rem;
  color: var(--text-secondary, #52525b);
}
.search-modal .tjf-search__empty-message {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--text-secondary, #52525b);
}
.search-modal .tjf-search-tab-button {
  -moz-appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  border-radius: 0.25rem;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-muted, #e4e4e7);
  background: transparent;
  color: var(--text-secondary, #52525b);
  font-size: 0.875rem;
  line-height: 1.25rem;
  transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
}
.search-modal .tjf-search-tab-button:hover {
  background: var(--surface-muted, #fafafa);
  border-color: var(--border-strong, #d4d4d8);
  color: var(--text-primary, #18181b);
}
.search-modal .tjf-search-tab-button:focus-visible {
  outline: 2px solid #4f46e5;
  outline-offset: 2px;
}
.search-modal .tjf-search-tab.active .tjf-search-tab-button {
  background: var(--surface-elevated, #f4f4f5);
  color: var(--text-primary, #18181b);
  border-color: var(--border-strong, #d4d4d8);
  box-shadow: inset 0 0 0 1px var(--border-strong, #d4d4d8);
}
.search-modal .tjf-search-pagination[hidden] {
  display: none !important;
}
.search-modal .tjf-search-results-list.ais-Hits-list {
  display: block !important;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.search-modal .tjf-search-result.ais-Hits-item {
  display: block;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent;
}
.search-modal .tjf-search-result .hit-content {
  width: 100%;
  margin: 0;
  padding: 0 !important;
  border-radius: 0;
}
.search-modal .tjf-search-result .hit-content a {
  display: flex;
  width: 100%;
  padding: 0.75rem 1.5rem !important;
  box-sizing: border-box;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  border-radius: 0;
}
.search-modal .tjf-search-result .title,
.search-modal .tjf-search-result .hit-content a h5 {
  margin: 0 !important;
  font-size: 1rem;
  line-height: 1.5rem;
  line-height: 1.3 !important;
  color: var(--text-primary, #18181b) !important;
}
.search-modal .tjf-search-result .search-result-link {
  display: block;
  width: 100%;
  margin: 0 !important;
  font-size: 0.875rem;
  line-height: 1.25rem;
  line-height: 1.4;
  color: var(--text-secondary, #52525b) !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-modal .tjf-search-result .hit-description,
.search-modal .tjf-search-result .hit-type {
  display: none !important;
}

select.search-category-dropdown {
  display: none !important;
}

.search-category-dropdown-container {
  display: none;
}

@media (max-width: 767px) {
  .cmswt-SearchBox {
    padding: 16px 12px 16px 16px;
  }
  .cmswt-Pagination {
    padding: 8px 16px;
    position: sticky;
    min-height: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    line-height: 1;
  }
  .search-keyboard-hints {
    display: none !important;
  }
  ul.cmswt-IndexSwitcher {
    display: none !important;
  }
  .cmswt-CollectionMenu-current {
    display: none !important;
  }
  .search-category-dropdown-container {
    display: block;
    margin: 0 1rem 0.25rem 1.25rem;
    width: calc(100% - 36px);
    position: relative;
  }
  .search-category-dropdown-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5;
    border-radius: 0.5rem;
    border: 1px solid var(--border-muted, #e4e4e7);
    background: var(--surface-body, #ffffff);
    color: var(--text-secondary, #52525b);
    cursor: pointer;
    transition: all 0.15s ease;
    box-shadow: none;
    gap: 0.75rem;
  }
  .search-category-dropdown-button:hover {
    background: var(--surface-muted, #fafafa);
    border-color: var(--border-strong, #d4d4d8);
  }
  .search-category-dropdown-button:focus {
    outline: none;
  }
  .search-category-dropdown-button:focus-visible {
    outline: 2px solid rgba(37, 99, 235, 0.5);
    outline-offset: 2px;
  }
  .search-category-dropdown-button .search-category-dropdown-label {
    flex: 1;
    text-align: left;
  }
  .search-category-dropdown-button .search-category-dropdown-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted, #a1a1aa);
    transition: transform 0.2s ease;
    flex-shrink: 0;
    opacity: 0.6;
    margin-left: 0.5rem;
  }
  .search-category-dropdown-button .search-category-dropdown-arrow svg {
    width: 14px;
    height: 14px;
    stroke-width: 1.5;
  }
  .search-category-dropdown-container.open .search-category-dropdown-button {
    background: var(--surface-muted, #fafafa);
    border-color: var(--border-strong, #d4d4d8);
  }
  .search-category-dropdown-container.open .search-category-dropdown-button .search-category-dropdown-arrow {
    transform: rotate(180deg);
    opacity: 0.8;
  }
  .search-category-dropdown-container.open .search-category-dropdown-menu {
    display: block;
  }
  .search-category-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.25rem);
    left: 0;
    right: 0;
    background: var(--surface-body, #ffffff);
    border: 1px solid var(--border-muted, #e4e4e7);
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(24, 24, 27, 0.1), 0 2px 4px rgba(24, 24, 27, 0.05);
    list-style: none;
    padding: 0.25rem 0;
    margin: 0;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
  }
  .search-category-dropdown-menu li {
    margin: 0;
    padding: 0;
  }
  .search-category-dropdown-menu .search-category-dropdown-item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.5rem 1rem;
    text-align: left;
    background: none;
    border: none;
    color: var(--text-primary, #18181b);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
    position: relative;
  }
  .search-category-dropdown-menu .search-category-dropdown-item:hover {
    background: var(--surface-muted, #fafafa);
  }
  .search-category-dropdown-menu .search-category-dropdown-item:focus {
    outline: none;
  }
  .search-category-dropdown-menu .search-category-dropdown-item:focus-visible {
    background: var(--surface-muted, #fafafa);
    outline: 2px solid rgba(37, 99, 235, 0.5);
    outline-offset: -2px;
  }
  .search-category-dropdown-menu li.active .search-category-dropdown-item {
    background: var(--surface-elevated, #f4f4f5);
    color: var(--text-primary, #18181b);
    font-weight: 500;
  }
  .cmswt-Pagination .ais-Pagination-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
  }
}
@media (min-width: 768px) {
  .search-category-dropdown-container {
    display: none !important;
  }
}
/* Notion Styles - Integrated from Elementor CSS */
/* Notion background colors */
.notion-lm-bg-light_gray {
  background-color: rgba(227, 226, 224, 0.5019607843);
  background-color: rgba(227, 226, 224, 0.5);
}

.notion-lm-bg-gray {
  background-color: #e3e2e0;
  background-color: #e3e2e0;
}

.notion-lm-bg-brown {
  background-color: #eee0da;
  background-color: #eee0da;
}

.notion-lm-bg-orange {
  background-color: #fadec9;
  background-color: #fadec9;
}

.notion-lm-bg-yellow {
  background-color: #f9e4bc;
  background-color: #f9e4bc;
}

.notion-lm-bg-green {
  background-color: #dbeddb;
  background-color: #dbeddb;
}

.notion-lm-bg-blue {
  background-color: #d3e5ef;
  background-color: #d3e5ef;
}

.notion-lm-bg-purple {
  background-color: #e8deee;
  background-color: #e8deee;
}

.notion-lm-bg-pink {
  background-color: #f5e0e9;
  background-color: #f5e0e9;
}

.notion-lm-bg-red {
  background-color: #ffe2dd;
  background-color: #ffe2dd;
}

/* Notion text colors */
.notion-lm-text-gray {
  color: #787774;
  color: #787774;
}

.notion-lm-text-brown {
  color: #9f6b53;
  color: #9f6b53;
}

.notion-lm-text-orange {
  color: #d9730d;
  color: #d9730d;
}

.notion-lm-text-yellow {
  color: #cb912f;
  color: #cb912f;
}

.notion-lm-text-green {
  color: #448361;
  color: #448361;
}

.notion-lm-text-blue {
  color: #337ea9;
  color: #337ea9;
}

.notion-lm-text-purple {
  color: #9065b0;
  color: #9065b0;
}

.notion-lm-text-pink {
  color: #c14c8a;
  color: #c14c8a;
}

.notion-lm-text-red {
  color: #d44c47;
  color: #d44c47;
}

/* Notion utility classes */
.status-group-name {
  font-weight: 600;
}

.notion-option {
  white-space: nowrap;
}

/* Template Documentation Styles */
mark {
  padding: 0.15em 0.45em;
  border-radius: 5px;
}

/* /Notion Styles */
/* Component-Specific Styles - Integrated from Elementor CSS */
/* Video embed styles */
.wp-embed-aspect-16-9 {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: block;
  clear: both;
  position: relative;
  /* padding-bottom: 20px; */
}
.wp-embed-aspect-16-9 > div {
  position: relative;
  width: 100%;
  height: 0;
  display: block;
  clear: both;
  padding: 0;
  padding-bottom: 56.25%;
  /* overflow: hidden !important; */
}
.wp-embed-aspect-16-9 > div > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  cursor: pointer;
}

/* Tall video for notion aesthetics post */
.tall-video-notion-aesthetics video {
  max-height: 600px;
  width: 100%;
  background: #111827;
}

/* In-content author box */
.in-content-author-box {
  display: flex;
  flex-direction: column;
  gap: 1em;
  border: 1px solid #d1d5db;
  padding: 1em;
  border-radius: 8px;
}
.in-content-author-box section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1em;
}
.in-content-author-box section img {
  width: 50px;
  border-radius: 100%;
}

/* /Component-Specific Styles */
/* callout component */
/* 
 * NOTE: Modernized callout styles - intentionally excludes old Elementor CSS 
 * The old callout styles (with $color-blue-100 blue background) have been replaced 
 * with this modern implementation inspired by Mintlify/Shadcn design systems.
 * Old styles are NOT integrated to maintain the updated design.
 */
.callout,
.entry-content .callout,
.elementor-widget-container .callout {
  --callout-accent: #2563eb;
  --callout-surface: rgba(239, 246, 255, 0.5);
  --callout-border: rgba(191, 219, 254, 0.7);
  --callout-text: color-mix(in srgb, var(--text-primary, #18181b) 60%, #2563eb);
  --callout-link: color-mix(in srgb, var(--text-muted, #a1a1aa) 80%, #2563eb);
  --callout-link-hover: color-mix(in srgb, var(--text-primary, #18181b) 60%, #2563eb);
  --callout-icon: var(--tabler-icon-info-circle);
  position: relative;
  color: var(--callout-text) !important;
  background-color: var(--callout-surface) !important;
  border: 1px solid var(--callout-border) !important;
  border-radius: 0.5rem;
  padding: 1rem 1.25rem 1rem 3rem !important;
  margin: 1.5em 0;
  transition: all 0.2s ease;
  overflow: visible;
}
[data-theme=dark] .callout,
[data-theme=dark] .entry-content .callout,
[data-theme=dark] .elementor-widget-container .callout {
  --callout-accent: #60a5fa;
  --callout-surface: rgba(96, 165, 250, 0.1);
  --callout-border: rgba(96, 165, 250, 0.5);
  --callout-text: color-mix(in srgb, var(--text-primary, #18181b) 70%, #3b82f6);
  --callout-link: color-mix(in srgb, var(--text-primary, #18181b) 70%, #3b82f6);
  --callout-link-hover: color-mix(in srgb, var(--text-primary, #18181b) 50%, #60a5fa);
}
.callout em, .callout strong, .callout b, .callout i, .callout code,
.entry-content .callout em,
.entry-content .callout strong,
.entry-content .callout b,
.entry-content .callout i,
.entry-content .callout code,
.elementor-widget-container .callout em,
.elementor-widget-container .callout strong,
.elementor-widget-container .callout b,
.elementor-widget-container .callout i,
.elementor-widget-container .callout code {
  color: inherit !important;
}
.callout a,
.entry-content .callout a,
.elementor-widget-container .callout a {
  color: inherit !important;
  text-decoration-color: var(--callout-link) !important;
}
.callout a::after,
.entry-content .callout a::after,
.elementor-widget-container .callout a::after {
  background-color: var(--callout-link) !important;
}
.callout a:hover,
.entry-content .callout a:hover,
.elementor-widget-container .callout a:hover {
  text-decoration-color: var(--callout-link-hover) !important;
}
.callout a:hover::after,
.entry-content .callout a:hover::after,
.elementor-widget-container .callout a:hover::after {
  background-color: var(--callout-link-hover) !important;
}
.callout::before,
.entry-content .callout::before,
.elementor-widget-container .callout::before {
  content: "" !important;
  width: 20px !important;
  height: 20px !important;
  position: absolute !important;
  left: 0.875rem !important;
  top: 1.05rem !important;
  z-index: 1;
  display: block;
  margin: 0 !important;
  background-color: currentColor;
  mask-image: var(--callout-icon);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: var(--callout-icon);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  color: var(--callout-accent);
}
@media screen and (max-width: 1024px) {
  .callout,
  .entry-content .callout,
  .elementor-widget-container .callout {
    padding: 1rem 1rem 1rem 1rem !important;
  }
  .callout::before,
  .entry-content .callout::before,
  .elementor-widget-container .callout::before {
    display: none !important;
  }
}
.callout p,
.callout li,
.callout ul,
.callout ol,
.entry-content .callout p,
.entry-content .callout li,
.entry-content .callout ul,
.entry-content .callout ol,
.elementor-widget-container .callout p,
.elementor-widget-container .callout li,
.elementor-widget-container .callout ul,
.elementor-widget-container .callout ol {
  margin: 0 !important;
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
  color: inherit !important;
  line-height: 1.65;
}
.callout p:not(:last-child),
.callout li:not(:last-child),
.callout ul:not(:last-child),
.callout ol:not(:last-child),
.entry-content .callout p:not(:last-child),
.entry-content .callout li:not(:last-child),
.entry-content .callout ul:not(:last-child),
.entry-content .callout ol:not(:last-child),
.elementor-widget-container .callout p:not(:last-child),
.elementor-widget-container .callout li:not(:last-child),
.elementor-widget-container .callout ul:not(:last-child),
.elementor-widget-container .callout ol:not(:last-child) {
  margin-bottom: 0.75em !important;
  margin-block-end: 0.75em !important;
}
.callout p strong,
.callout li strong,
.callout ul strong,
.callout ol strong,
.entry-content .callout p strong,
.entry-content .callout li strong,
.entry-content .callout ul strong,
.entry-content .callout ol strong,
.elementor-widget-container .callout p strong,
.elementor-widget-container .callout li strong,
.elementor-widget-container .callout ul strong,
.elementor-widget-container .callout ol strong {
  color: inherit !important;
  font-weight: 600;
}
.callout > :first-child,
.entry-content .callout > :first-child,
.elementor-widget-container .callout > :first-child {
  margin-top: 0 !important;
  margin-block-start: 0 !important;
}
.callout > :last-child,
.entry-content .callout > :last-child,
.elementor-widget-container .callout > :last-child {
  margin-bottom: 0 !important;
  margin-block-end: 0 !important;
}
.callout.callout-info,
.entry-content .callout.callout-info,
.elementor-widget-container .callout.callout-info {
  --callout-accent: #2563eb;
  --callout-surface: rgba(239, 246, 255, 0.5);
  --callout-border: rgba(191, 219, 254, 0.8);
  --callout-text: color-mix(in srgb, var(--text-primary, #18181b) 60%, #2563eb);
  --callout-link: color-mix(in srgb, var(--text-muted, #a1a1aa) 80%, #2563eb);
  --callout-link-hover: color-mix(in srgb, var(--text-primary, #18181b) 60%, #2563eb);
  --callout-icon: var(--tabler-icon-info-circle);
}
[data-theme=dark] .callout.callout-info,
[data-theme=dark] .entry-content .callout.callout-info,
[data-theme=dark] .elementor-widget-container .callout.callout-info {
  --callout-accent: #60a5fa;
  --callout-surface: rgba(96, 165, 250, 0.1);
  --callout-border: rgba(96, 165, 250, 0.5);
  --callout-text: color-mix(in srgb, var(--text-primary, #18181b) 70%, #3b82f6);
  --callout-link: color-mix(in srgb, var(--text-primary, #18181b) 70%, #3b82f6);
  --callout-link-hover: color-mix(in srgb, var(--text-primary, #18181b) 50%, #60a5fa);
}
.callout.callout-warning,
.entry-content .callout.callout-warning,
.elementor-widget-container .callout.callout-warning {
  --callout-accent: #b45309;
  --callout-surface: rgba(255, 251, 235, 0.7);
  --callout-border: rgba(253, 230, 138, 0.9);
  --callout-text: color-mix(in srgb, var(--text-primary, #18181b) 68%, #92400e);
  --callout-link: color-mix(in srgb, var(--text-muted, #a1a1aa) 78%, #b45309);
  --callout-link-hover: color-mix(in srgb, var(--text-primary, #18181b) 68%, #92400e);
  --callout-icon: var(--tabler-icon-warning-triangle);
}
[data-theme=dark] .callout.callout-warning,
[data-theme=dark] .entry-content .callout.callout-warning,
[data-theme=dark] .elementor-widget-container .callout.callout-warning {
  --callout-accent: #fbbf24;
  --callout-surface: rgba(251, 191, 36, 0.12);
  --callout-border: rgba(251, 191, 36, 0.45);
  --callout-text: color-mix(in srgb, var(--text-primary, #18181b) 78%, #fcd34d);
  --callout-link: color-mix(in srgb, var(--text-primary, #18181b) 72%, #fcd34d);
  --callout-link-hover: color-mix(in srgb, var(--text-primary, #18181b) 55%, #fde68a);
}
.callout.callout-error, .callout.callout-danger,
.entry-content .callout.callout-error,
.entry-content .callout.callout-danger,
.elementor-widget-container .callout.callout-error,
.elementor-widget-container .callout.callout-danger {
  --callout-accent: #b91c1c;
  --callout-surface: rgba(254, 242, 242, 0.75);
  --callout-border: rgba(254, 202, 202, 0.9);
  --callout-text: color-mix(in srgb, var(--text-primary, #18181b) 68%, #991b1b);
  --callout-link: color-mix(in srgb, var(--text-muted, #a1a1aa) 78%, #b91c1c);
  --callout-link-hover: color-mix(in srgb, var(--text-primary, #18181b) 70%, #991b1b);
  --callout-icon: var(--tabler-icon-error-circle);
}
[data-theme=dark] .callout.callout-error, [data-theme=dark] .callout.callout-danger,
[data-theme=dark] .entry-content .callout.callout-error,
[data-theme=dark] .entry-content .callout.callout-danger,
[data-theme=dark] .elementor-widget-container .callout.callout-error,
[data-theme=dark] .elementor-widget-container .callout.callout-danger {
  --callout-accent: #f87171;
  --callout-surface: rgba(248, 113, 113, 0.12);
  --callout-border: rgba(248, 113, 113, 0.45);
  --callout-text: color-mix(in srgb, var(--text-primary, #18181b) 80%, #fca5a5);
  --callout-link: color-mix(in srgb, var(--text-primary, #18181b) 72%, #fca5a5);
  --callout-link-hover: color-mix(in srgb, var(--text-primary, #18181b) 58%, #fecaca);
}
.callout.callout-success,
.entry-content .callout.callout-success,
.elementor-widget-container .callout.callout-success {
  --callout-accent: #15803d;
  --callout-surface: rgba(240, 253, 244, 0.75);
  --callout-border: rgba(187, 247, 208, 0.9);
  --callout-text: color-mix(in srgb, var(--text-primary, #18181b) 68%, #166534);
  --callout-link: color-mix(in srgb, var(--text-muted, #a1a1aa) 78%, #15803d);
  --callout-link-hover: color-mix(in srgb, var(--text-primary, #18181b) 70%, #166534);
  --callout-icon: var(--tabler-icon-success-circle);
}
[data-theme=dark] .callout.callout-success,
[data-theme=dark] .entry-content .callout.callout-success,
[data-theme=dark] .elementor-widget-container .callout.callout-success {
  --callout-accent: #4ade80;
  --callout-surface: rgba(74, 222, 128, 0.12);
  --callout-border: rgba(74, 222, 128, 0.45);
  --callout-text: color-mix(in srgb, var(--text-primary, #18181b) 80%, #86efac);
  --callout-link: color-mix(in srgb, var(--text-primary, #18181b) 72%, #86efac);
  --callout-link-hover: color-mix(in srgb, var(--text-primary, #18181b) 58%, #bbf7d0);
}

/* Text Fragment Link Button */
.text-fragment-link-button {
  position: absolute;
  display: none;
  z-index: 9999;
  pointer-events: auto;
  opacity: 0;
  transform: translateY(-2px);
  transition: all 0.2s ease, opacity 0.15s ease, transform 0.15s ease;
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.08);
  font-size: 0.75rem;
  line-height: 1;
}
.text-fragment-link-button.visible {
  opacity: 1;
  transform: translateY(0);
  animation: textFragmentButtonFadeIn 0.2s ease-out;
}
.text-fragment-link-button:hover::after {
  content: attr(title);
}
.text-fragment-link-button:focus-visible {
  outline: 2px solid rgba(59, 130, 246, 0.55);
  outline-offset: 2px;
}
.text-fragment-link-button:active {
  transform: translateY(0);
}
.text-fragment-link-button.copied {
  background: #f0fdf4;
  border-color: #22c55e;
  color: #16a34a;
}
.text-fragment-link-button.copied:hover {
  background: #dcfce7;
  border-color: #16a34a;
}
.text-fragment-link-button.copied:hover::after {
  content: "Copied!";
  background: #22c55e;
}
.text-fragment-link-button.copied:hover::before {
  border-top-color: #22c55e;
}
.text-fragment-link-button::after {
  content: "Copy text fragment link";
  position: absolute;
  bottom: calc(100% + 8px);
  /*left: 50%;*/
  /*transform: translateX(-50%);*/
  background: #111827;
  color: #ffffff;
  padding: 6px 10px;
  border-radius: 0.25rem;
  font-family: "Figtree", sans-serif;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 400;
  white-space: nowrap;
  pointer-events: none;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.text-fragment-link-button::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #111827;
  pointer-events: none;
  z-index: 10001;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.text-fragment-link-button:hover::after, .text-fragment-link-button:hover::before {
  opacity: 1;
}
.text-fragment-link-button.copied:hover::after {
  content: "Copied!";
  background: #22c55e;
}
.text-fragment-link-button.copied:hover::before {
  border-top-color: #22c55e;
}
html[data-theme=dark] .text-fragment-link-button::after {
  background: #374151;
}
html[data-theme=dark] .text-fragment-link-button::before {
  border-top-color: #374151;
}
html[data-theme=dark] .text-fragment-link-button:hover::after {
  background: #374151;
}
html[data-theme=dark] .text-fragment-link-button:hover::before {
  border-top-color: #374151;
}
html[data-theme=dark] .text-fragment-link-button.copied:hover::after {
  content: "Copied!";
  background: #16a34a;
}
html[data-theme=dark] .text-fragment-link-button.copied:hover::before {
  border-top-color: #16a34a;
}
.text-fragment-link-button::after {
  left: 0;
  transform: translateX(0);
}
.text-fragment-link-button::before {
  left: 12px;
  transform: translateX(0);
}
.text-fragment-link-button i {
  color: inherit;
  font-size: 0.75rem;
  line-height: 1;
  pointer-events: none;
  display: block;
  transition: color 0.2s ease;
}
@media screen and (max-width: 1024px) {
  .text-fragment-link-button {
    display: none !important;
  }
}

@keyframes textFragmentButtonFadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/**
 * Free Template Landing Page Styles
 * 
 * Custom page template for free Notion template landing pages.
 * Provides a clean, conversion-focused layout with WordPress block editor support.
 * 
 * Template file: template-free-template-landing.php
 * Documentation: Dev/FreeTemplateLandingPages.md
 */
.template-landing.main-content-box {
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem 0 1.5rem;
  box-sizing: border-box;
  width: 100%;
}
.template-landing .site-main {
  width: 100%;
  max-width: 1040px;
  padding: 0 1rem;
}
@media screen and (max-width: 768px) {
  .template-landing .site-main {
    padding: 0 1.25rem;
  }
}
.template-landing .template-landing-content .entry-content > h1:first-of-type {
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  font-size: 3.75rem;
  line-height: 4.5rem;
  text-align: center;
  color: var(--text-primary, #18181b);
  margin: 0 auto 1.5rem;
  max-width: 850px;
}
@media screen and (max-width: 1024px) {
  .template-landing .template-landing-content .entry-content > h1:first-of-type {
    max-width: 700px;
    font-size: 3rem;
    line-height: 3.5rem;
  }
}
@media screen and (max-width: 768px) {
  .template-landing .template-landing-content .entry-content > h1:first-of-type {
    max-width: min(85%, 550px);
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .template-landing .template-landing-content .entry-content > h1:first-of-type {
    max-width: 100%;
  }
}
.template-landing .template-landing-content .entry-content > p.subheader:first-of-type,
.template-landing .template-landing-content .entry-content > h1:first-of-type + p.subheader {
  font-size: 1.0625rem;
  line-height: 1.65rem;
  color: var(--text-secondary, #52525b);
  max-width: 600px;
  margin: 0 auto 1.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .template-landing .template-landing-content .entry-content > p.subheader:first-of-type,
  .template-landing .template-landing-content .entry-content > h1:first-of-type + p.subheader {
    max-width: min(85%, 550px);
  }
}
@media screen and (max-width: 500px) {
  .template-landing .template-landing-content .entry-content > p.subheader:first-of-type,
  .template-landing .template-landing-content .entry-content > h1:first-of-type + p.subheader {
    max-width: 100%;
  }
}
.template-landing .template-landing-content .entry-content p.subheader {
  font-size: 1.0625rem;
  line-height: 1.65rem;
  color: var(--text-secondary, #52525b);
}
.template-landing .template-landing-content .entry-content > .wp-block-buttons:first-of-type {
  display: flex;
  justify-content: center;
  margin: 1.5rem auto;
}
.template-landing .template-landing-content .entry-content > .wp-block-buttons:first-of-type .wp-block-button__link {
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  background: #4f46e5;
  color: var(--text-primary, #18181b);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.template-landing .template-landing-content .entry-content > .wp-block-buttons:first-of-type .wp-block-button__link:hover {
  background: #4338ca;
  color: var(--text-primary, #18181b);
  box-shadow: 0 12px 28px rgba(79, 70, 229, 0.3);
}
.template-landing .template-landing-content .featured-image-container,
.template-landing .template-landing-content .featured-video-container {
  margin: 3rem auto;
  max-width: min(100%, 1040px);
  border-radius: 1rem;
  box-shadow: 0 28px 60px rgba(17, 24, 39, 0.08);
}
@media screen and (max-width: 1200px) {
  .template-landing .template-landing-content .featured-image-container,
  .template-landing .template-landing-content .featured-video-container {
    max-width: min(100%, 850px);
  }
}
@media screen and (max-width: 768px) {
  .template-landing .template-landing-content .featured-image-container,
  .template-landing .template-landing-content .featured-video-container {
    margin: 2rem auto;
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.1);
  }
}
.template-landing .template-landing-content .featured-image-container .featured-image {
  border-radius: 1rem;
}
.template-landing .template-landing-content .featured-video-wrapper {
  border-radius: 1rem;
}
.template-landing .section-link-header .section-link-h2,
.template-landing .section-link-header .section-link-h3,
.template-landing .section-link-header .section-copy-h2,
.template-landing .section-link-header .section-copy-h3,
.template-landing .section-link-header a.heading-link {
  display: none !important;
}
.template-landing i.fas.fa-anchor {
  display: none !important;
}
.template-landing .template-landing-content .entry-content {
  font-size: 1.0625rem;
  line-height: 1.65rem;
  color: var(--text-primary, #18181b);
}
.template-landing .template-landing-content .entry-content p, .template-landing .template-landing-content .entry-content h2, .template-landing .template-landing-content .entry-content h3, .template-landing .template-landing-content .entry-content h4, .template-landing .template-landing-content .entry-content h5, .template-landing .template-landing-content .entry-content h6, .template-landing .template-landing-content .entry-content ul, .template-landing .template-landing-content .entry-content ol, .template-landing .template-landing-content .entry-content blockquote, .template-landing .template-landing-content .entry-content table, .template-landing .template-landing-content .entry-content pre, .template-landing .template-landing-content .entry-content code, .template-landing .template-landing-content .entry-content details, .template-landing .template-landing-content .entry-content summary, .template-landing .template-landing-content .entry-content audio, .template-landing .template-landing-content .entry-content video {
  max-width: 650px;
  margin-inline: auto;
}
.template-landing .template-landing-content .entry-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin: 3rem auto 1.5rem;
  line-height: 1.3;
  color: var(--text-primary, #18181b);
}
.template-landing .template-landing-content .entry-content h2:first-child {
  margin-top: 0;
}
.template-landing .template-landing-content .entry-content h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  margin: 3rem auto 1rem;
  line-height: 1.4;
  color: var(--text-primary, #18181b);
}
.template-landing .template-landing-content .entry-content p {
  margin: 0 auto 1.5rem;
}
.template-landing .template-landing-content .entry-content p:last-child {
  margin-bottom: 0;
}
.template-landing .template-landing-content .entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
}
.template-landing .template-landing-content .entry-content .wp-block-image, .template-landing .template-landing-content .entry-content .wp-block-embed {
  max-width: 900px;
  margin-inline: auto;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 1200px) {
  .template-landing .template-landing-content .entry-content .wp-block-image, .template-landing .template-landing-content .entry-content .wp-block-embed {
    max-width: 750px;
  }
}
@media screen and (max-width: 1024px) {
  .template-landing .template-landing-content .entry-content .wp-block-image, .template-landing .template-landing-content .entry-content .wp-block-embed {
    max-width: 650px;
  }
}
.template-landing .template-landing-content .entry-content .wp-block-image img, .template-landing .template-landing-content .entry-content .wp-block-embed img {
  border-radius: 0.75rem;
  border: 1px solid var(--border-subtle, #f4f4f5);
}
.template-landing .template-landing-content .entry-content .wp-block-image figcaption, .template-landing .template-landing-content .entry-content .wp-block-embed figcaption {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted, #a1a1aa);
  margin-top: 0.5rem;
}
.template-landing .template-landing-content .entry-content a img {
  transition: opacity 0.2s ease;
}
.template-landing .template-landing-content .entry-content a img:hover {
  opacity: 0.9;
}
.template-landing .template-landing-content .entry-content blockquote {
  border-left: 4px solid #6366f1;
  padding-left: 1rem;
  margin: 2rem auto;
  font-style: italic;
  color: var(--text-secondary, #52525b);
}
.template-landing .template-landing-content .entry-content ul, .template-landing .template-landing-content .entry-content ol {
  margin: 1.5rem auto;
  padding-left: 2rem;
}
.template-landing .template-landing-content .entry-content ul li, .template-landing .template-landing-content .entry-content ol li {
  margin-bottom: 0.75rem;
}
.template-landing .template-landing-content .entry-content .elementor-widget-form {
  background: var(--surface-elevated, #f4f4f5);
  border-radius: 1rem;
  padding: 3rem;
  margin: 3rem 0;
  border: 1px solid var(--border-subtle, #f4f4f5);
}
@media screen and (max-width: 768px) {
  .template-landing .template-landing-content .entry-content .elementor-widget-form {
    padding: 1.5rem;
  }
}
.template-landing .template-landing-content .entry-content .wp-block-button {
  margin: 2rem 0;
}
.template-landing .template-landing-content .entry-content .wp-block-button .wp-block-button__link {
  background: #4f46e5;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background 0.2s ease;
}
.template-landing .template-landing-content .entry-content .wp-block-button .wp-block-button__link:hover {
  background: #4338ca;
}
[data-theme=dark] .template-landing .template-landing-content .entry-content .wp-block-image img {
  border-color: var(--border-muted, #e4e4e7);
}
[data-theme=dark] .template-landing .template-landing-content .entry-content blockquote {
  border-left-color: #818cf8;
}
[data-theme=dark] .template-landing .template-landing-content .entry-content .wp-block-button__link {
  background: #6366f1;
}
[data-theme=dark] .template-landing .template-landing-content .entry-content .wp-block-button__link:hover {
  background: #818cf8;
}
.template-landing .template-cta-button-wrapper {
  text-align: center;
  margin: 2rem auto 3.5rem;
  padding: 0 1rem;
}
@media screen and (max-width: 768px) {
  .template-landing .template-cta-button-wrapper {
    padding: 0 0;
    max-width: 450px;
  }
}
@media screen and (max-width: 600px) {
  .template-landing .template-cta-button-wrapper {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .template-landing .template-cta-button {
    width: 100%;
    justify-content: center;
  }
}

.template-landing .lasso-container {
  max-width: 850px;
}

/* Archive Page Styles */
.archive-page {
  border-top: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

.one-column .archive-page,
.archive-page {
  padding-top: 0;
}

.one-column .archive-main,
.archive-page .archive-main,
.archive-main {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1.5rem 0.5rem 1.5rem;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .one-column .archive-main,
  .archive-page .archive-main,
  .archive-main {
    max-width: 1100px !important;
    padding: 1rem 1.5rem 0.5rem 1.5rem;
  }
}
@media screen and (min-width: desktop) {
  .one-column .archive-main,
  .archive-page .archive-main,
  .archive-main {
    max-width: 1100px !important;
    padding: 1rem 1.5rem 0.5rem 1.5rem;
  }
}

/* Category Filter Rail - styled like search component */
.archive-category-filter {
  width: 100%;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #e5e7eb;
  background: transparent;
  padding: 16px 0;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .archive-category-filter {
    margin-bottom: 0.5rem;
  }
}
@media screen and (min-width: desktop) {
  .archive-category-filter {
    margin-bottom: 0.5rem;
  }
}
.archive-category-filter .archive-category-filter-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0.5rem;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .archive-category-filter .archive-category-filter-list {
    max-width: 1600px;
    padding: 0 1.5rem;
  }
}
@media screen and (min-width: desktop) {
  .archive-category-filter .archive-category-filter-list {
    max-width: 1600px;
    padding: 0 1.5rem;
  }
}

.archive-category-filter-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

.archive-category-filter-item {
  margin: 0;
  font-size: 0.875em;
}

.archive-category-filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  min-width: 36px;
  height: 36px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 6px;
  font-size: 0.875em;
  font-weight: 500;
  color: #4b5563 !important;
  background: transparent;
  text-decoration: none;
  transition: all 0.15s ease;
  box-sizing: border-box;
  box-shadow: none;
}
.archive-category-filter-button:hover {
  background: transparent;
  border-color: rgba(17, 24, 39, 0.2);
  color: #111827 !important;
}
.archive-category-filter-button.is-active {
  background: transparent;
  color: #111827 !important;
  border-color: rgba(17, 24, 39, 0.2);
  font-weight: 500;
}
.archive-category-filter-button:active {
  transform: translateY(1px);
  box-shadow: inset 0 1px 2px rgba(17, 24, 39, 0.1);
  border-color: rgba(17, 24, 39, 0.2);
}
.archive-category-filter-button:focus-visible {
  outline: 2px solid rgba(17, 24, 39, 0.15);
  outline-offset: 2px;
}

/* Newsletter Slot */
.archive-newsletter-slot {
  margin-bottom: 2rem;
}
@media screen and (min-width: 769px) {
  .archive-newsletter-slot {
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: desktop) {
  .archive-newsletter-slot {
    margin-bottom: 3rem;
  }
}

/* Featured Posts Section */
.archive-featured-posts {
  margin-bottom: 3rem;
}
@media screen and (min-width: 769px) {
  .archive-featured-posts {
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: desktop) {
  .archive-featured-posts {
    margin-bottom: 3rem;
  }
}

.archive-featured-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media screen and (min-width: 769px) {
  .archive-featured-posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: stretch;
  }
}
@media screen and (min-width: desktop) {
  .archive-featured-posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: stretch;
  }
}

/* Post Card Styles */
.archive-post-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.archive-post-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: color 0.15s ease;
}

.archive-post-card-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  background: var(--surface-muted, #fafafa);
  flex-shrink: 0;
}
.archive-post-card-image .archive-post-card-thumbnail {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border: 1px solid var(--surface-body, #ffffff);
  border-radius: 0.75rem;
  box-sizing: border-box;
}

.archive-post-card-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-muted, #fafafa);
  color: var(--text-muted, #a1a1aa);
  border: 1px solid var(--surface-body, #ffffff);
  border-radius: 0.75rem;
  box-sizing: border-box;
}
.archive-post-card-placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.5;
}

.archive-post-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.archive-post-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--text-secondary, #52525b);
  flex-shrink: 0;
}

.archive-post-card-category {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: #111827;
  color: #ffffff;
  border-radius: 0.25rem;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1rem;
  line-height: 1.2;
}

html body.one-column .archive-post-card-title,
html body.two-column .archive-post-card-title,
html body.three-column .archive-post-card-title,
.archive-page .archive-post-card-title {
  font-family: "Figtree", sans-serif;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
  color: #374151;
  margin: 0.5rem 0 0.75rem 0;
  line-height: 1.35;
  letter-spacing: -0.01em;
  transition: color 0.15s ease, text-decoration 0.15s ease;
  text-decoration: none;
  flex-shrink: 0;
}

html body.one-column .archive-post-card-link:hover .archive-post-card-title,
html body.two-column .archive-post-card-link:hover .archive-post-card-title,
html body.three-column .archive-post-card-link:hover .archive-post-card-title,
.archive-page .archive-post-card-link:hover .archive-post-card-title,
html body.one-column .archive-post-card--featured .archive-post-card-link:hover .archive-post-card-title,
html body.two-column .archive-post-card--featured .archive-post-card-link:hover .archive-post-card-title,
html body.three-column .archive-post-card--featured .archive-post-card-link:hover .archive-post-card-title,
.archive-page .archive-post-card--featured .archive-post-card-link:hover .archive-post-card-title {
  color: #111827;
  opacity: 1;
  text-decoration: underline !important;
}

@media screen and (min-width: 769px) {
  html body.one-column .archive-post-card-title,
  html body.two-column .archive-post-card-title,
  html body.three-column .archive-post-card-title,
  .archive-page .archive-post-card-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
  }
}
@media screen and (min-width: desktop) {
  html body.one-column .archive-post-card-title,
  html body.two-column .archive-post-card-title,
  html body.three-column .archive-post-card-title,
  .archive-page .archive-post-card-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
  }
}

@media screen and (min-width: 769px) {
  .archive-post-card--featured .archive-post-card-title {
    font-size: 2.25rem;
    line-height: 2.5rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
  }
}
@media screen and (min-width: desktop) {
  .archive-post-card--featured .archive-post-card-title {
    font-size: 2.25rem;
    line-height: 2.5rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
  }
}

.archive-post-card-excerpt {
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--text-secondary, #52525b);
  line-height: 1.6;
  flex-shrink: 0;
}

/* Post List Section */
.archive-post-list {
  margin-bottom: 1rem;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .archive-post-list {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: desktop) {
  .archive-post-list {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
  }
}

.archive-post-list-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.archive-post-list-item {
  margin: 0;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}
.archive-post-list-item:last-child {
  border-bottom: none;
}

.archive-post-card--list .archive-post-card-link {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .archive-post-card--list .archive-post-card-link {
    gap: 1.5rem;
  }
}
@media screen and (min-width: desktop) {
  .archive-post-card--list .archive-post-card-link {
    gap: 1.5rem;
  }
}
.archive-post-card--list .archive-post-card-image {
  width: 160px;
  flex-shrink: 0;
  margin-bottom: 0;
  aspect-ratio: 16/9;
}
@media screen and (min-width: 769px) {
  .archive-post-card--list .archive-post-card-image {
    width: 200px;
  }
}
@media screen and (min-width: desktop) {
  .archive-post-card--list .archive-post-card-image {
    width: 200px;
  }
}
.archive-post-card--list .archive-post-card-image .archive-post-card-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.archive-post-card--list .archive-post-card-image .archive-post-card-placeholder {
  aspect-ratio: 16/9;
}
.archive-post-card--list .archive-post-card-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
html body.one-column .archive-post-card--list .archive-post-card-title, html body.two-column .archive-post-card--list .archive-post-card-title, html body.three-column .archive-post-card--list .archive-post-card-title,
.archive-post-card--list .archive-post-card-title {
  font-size: 1.0625rem;
  line-height: 1.65rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s ease, text-decoration 0.15s ease;
}
@media screen and (min-width: 769px) {
  html body.one-column .archive-post-card--list .archive-post-card-title, html body.two-column .archive-post-card--list .archive-post-card-title, html body.three-column .archive-post-card--list .archive-post-card-title,
  .archive-post-card--list .archive-post-card-title {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
@media screen and (min-width: desktop) {
  html body.one-column .archive-post-card--list .archive-post-card-title, html body.two-column .archive-post-card--list .archive-post-card-title, html body.three-column .archive-post-card--list .archive-post-card-title,
  .archive-post-card--list .archive-post-card-title {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
html body.one-column .archive-post-card--list .archive-post-card-link:hover .archive-post-card-title, html body.two-column .archive-post-card--list .archive-post-card-link:hover .archive-post-card-title, html body.three-column .archive-post-card--list .archive-post-card-link:hover .archive-post-card-title,
.archive-post-card--list .archive-post-card-link:hover .archive-post-card-title {
  color: #111827;
  opacity: 1;
  text-decoration: underline !important;
}

/* Pagination - styled like search component */
.archive-pagination {
  margin-top: 3rem;
}
.archive-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.archive-pagination .page-numbers li {
  margin: 0;
}
.archive-pagination a.page-numbers,
.archive-pagination span.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 6px 12px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 6px;
  font-size: 0.875em;
  font-weight: 500;
  color: #4b5563;
  background: transparent;
  text-decoration: none;
  transition: all 0.15s ease;
  box-sizing: border-box;
  box-shadow: none;
  line-height: 1;
}
.archive-pagination a.page-numbers:hover {
  background: transparent;
  border-color: rgba(17, 24, 39, 0.2);
  color: #111827;
}
.archive-pagination a.page-numbers:active {
  transform: translateY(1px);
  box-shadow: inset 0 1px 2px rgba(17, 24, 39, 0.1);
  border-color: rgba(17, 24, 39, 0.2);
}
.archive-pagination a.page-numbers:focus-visible {
  outline: 2px solid rgba(17, 24, 39, 0.15);
  outline-offset: 2px;
}
.archive-pagination span.page-numbers.current {
  background: transparent;
  color: #111827;
  border-color: rgba(17, 24, 39, 0.2);
  font-weight: 600;
}
.archive-pagination .page-numbers .prev,
.archive-pagination .page-numbers .next {
  padding: 6px 12px;
}

.archive-no-posts {
  text-align: center;
  padding: 3rem 1rem;
  font-size: 1.0625rem;
  line-height: 1.65rem;
  color: var(--text-secondary, #52525b);
}

/* Dark Mode Support */
[data-theme=dark] .archive-page {
  border-top: none;
}
[data-theme=dark] .archive-category-filter {
  border-bottom-color: var(--border-faint, rgba(24, 24, 27, 0.05));
  background: var(--surface-body-transparent, color-mix(in srgb, #ffffff 50%, transparent));
}
[data-theme=dark] .archive-category-filter-button {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text-secondary, #52525b) !important;
}
[data-theme=dark] .archive-category-filter-button:hover {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--text-primary, #18181b) !important;
}
[data-theme=dark] .archive-category-filter-button.is-active {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--text-primary, #18181b) !important;
}
[data-theme=dark] .archive-post-card-placeholder {
  background: var(--surface-muted, #fafafa);
  color: var(--text-muted, #a1a1aa);
  border: 1px solid var(--border-faint, rgba(24, 24, 27, 0.05));
  border-radius: 0.75rem;
  box-sizing: border-box;
}
[data-theme=dark] .archive-post-card-thumbnail {
  border-color: var(--border-faint, rgba(24, 24, 27, 0.05));
  border-radius: 0.75rem;
  box-sizing: border-box;
}
[data-theme=dark] .archive-post-card-category {
  background: #f9fafb;
  color: #111827;
}
[data-theme=dark] html body.one-column .archive-post-card-title,
[data-theme=dark] html body.two-column .archive-post-card-title,
[data-theme=dark] html body.three-column .archive-post-card-title,
[data-theme=dark] .archive-page .archive-post-card-title {
  color: var(--text-primary, #18181b);
}
[data-theme=dark] html body.one-column .archive-post-card-link:hover .archive-post-card-title,
[data-theme=dark] html body.two-column .archive-post-card-link:hover .archive-post-card-title,
[data-theme=dark] html body.three-column .archive-post-card-link:hover .archive-post-card-title,
[data-theme=dark] .archive-page .archive-post-card-link:hover .archive-post-card-title,
[data-theme=dark] html body.one-column .archive-post-card--featured .archive-post-card-link:hover .archive-post-card-title,
[data-theme=dark] html body.two-column .archive-post-card--featured .archive-post-card-link:hover .archive-post-card-title,
[data-theme=dark] html body.three-column .archive-post-card--featured .archive-post-card-link:hover .archive-post-card-title,
[data-theme=dark] .archive-page .archive-post-card--featured .archive-post-card-link:hover .archive-post-card-title {
  color: #ffffff !important;
  opacity: 1;
  text-decoration: underline !important;
}
[data-theme=dark] .archive-post-card-excerpt {
  color: var(--text-secondary, #52525b);
}
[data-theme=dark] .archive-post-list-item {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
[data-theme=dark] html body.one-column .archive-post-card--list .archive-post-card-link:hover .archive-post-card-title,
[data-theme=dark] html body.two-column .archive-post-card--list .archive-post-card-link:hover .archive-post-card-title,
[data-theme=dark] html body.three-column .archive-post-card--list .archive-post-card-link:hover .archive-post-card-title,
[data-theme=dark] .archive-page .archive-post-card--list .archive-post-card-link:hover .archive-post-card-title {
  color: #ffffff !important;
  opacity: 1;
  text-decoration: underline !important;
}
[data-theme=dark] .archive-pagination a.page-numbers,
[data-theme=dark] .archive-pagination span.page-numbers {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text-secondary, #52525b);
}
[data-theme=dark] .archive-pagination a.page-numbers:hover {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--text-primary, #18181b);
}
[data-theme=dark] .archive-pagination span.page-numbers.current {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--text-primary, #18181b);
}
[data-theme=dark] .archive-no-posts {
  color: var(--text-secondary, #52525b);
}

.content-tools {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--border-muted, #e4e4e7);
  border-radius: 0.5rem;
  background: var(--surface-body, #ffffff);
  position: relative;
  margin-left: auto;
  flex: 0 0 auto;
}
@media screen and (max-width: 640px) {
  .content-tools {
    flex-shrink: 0;
  }
}
html[data-theme=dark] .content-tools {
  box-shadow: 0 18px 36px rgba(24, 24, 27, 0.55);
  border-color: var(--border-subtle, #f4f4f5);
}

.content-tools__primary,
.content-tools__toggle {
  background: transparent;
  border: 0;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--text-icon-primary, #52525b);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
html[data-theme=dark] .content-tools__primary,
html[data-theme=dark] .content-tools__toggle {
  color: var(--text-icon-primary, #52525b);
}

.content-tools__primary {
  border-right: 1px solid var(--border-muted, #e4e4e7);
  font-weight: 500;
  min-width: 80px;
  border-radius: 0.5rem 0 0 0.5rem;
}
.content-tools__primary i {
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  padding-right: 0.25em;
}
.content-tools__primary span {
  font-size: 0.875rem;
}

.content-tools__toggle {
  width: 28px;
  border-left: 0;
  border-radius: 0 0.5rem 0.5rem 0;
}
html[data-theme=dark] .content-tools__toggle {
  border-left: none;
}

.content-tools__toggle i {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.content-tools.is-open .content-tools__toggle i {
  transform: rotate(180deg);
}

.content-tools__primary:hover,
.content-tools__toggle:hover,
.content-tools__primary:focus,
.content-tools__toggle:focus {
  background: var(--surface-elevated, #f4f4f5);
  color: var(--text-primary, #18181b);
  outline: none;
}
html[data-theme=dark] .content-tools__primary:hover,
html[data-theme=dark] .content-tools__toggle:hover,
html[data-theme=dark] .content-tools__primary:focus,
html[data-theme=dark] .content-tools__toggle:focus {
  background: var(--surface-muted, #fafafa);
  color: var(--text-primary, #18181b);
}

.content-tools:not(.is-open) .content-tools__toggle:focus:not(:hover) {
  background: transparent;
  color: var(--text-icon-primary, #52525b);
}
html[data-theme=dark] .content-tools:not(.is-open) .content-tools__toggle:focus:not(:hover) {
  background: transparent;
  color: var(--text-icon-primary, #52525b);
}

.content-tools__primary:focus-visible,
.content-tools__toggle:focus-visible {
  outline: 2px solid var(--border-button-primary, #4f46e5);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--border-button-primary, #4f46e5) 30%, transparent);
}

html[data-theme=dark] .content-tools__primary:focus-visible,
html[data-theme=dark] .content-tools__toggle:focus-visible {
  outline-color: #818cf8;
  box-shadow: 0 0 0 4px color-mix(in srgb, #818cf8 30%, transparent);
}

.content-tools__primary.copied {
  background: #f0fdf4;
  color: #16a34a;
}

.content-tools__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: -2px;
  background: var(--surface-body, #ffffff);
  border: 1px solid var(--border-muted, #e4e4e7);
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(24, 24, 27, 0.12), 0 10px 10px -5px rgba(24, 24, 27, 0.08);
  padding: 0;
  min-width: 230px;
  display: none;
  z-index: 50;
  overflow: hidden;
}
html[data-theme=dark] .content-tools__menu {
  border-color: var(--border-subtle, #f4f4f5);
  box-shadow: 0 24px 48px rgba(24, 24, 27, 0.65);
}

.content-tools.is-open .content-tools__menu {
  display: block;
}

.content-tools__menu-item {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--text-secondary, #52525b) !important;
  text-align: left;
  text-decoration: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-radius 0.15s ease;
  font-weight: 400;
  line-height: 1.25rem;
  display: grid;
  grid-template-columns: 28px 1fr;
  column-gap: 0.85em;
  row-gap: 0.3em;
  align-items: start;
}
html[data-theme=dark] .content-tools__menu-item {
  color: var(--text-secondary, #52525b) !important;
}

.content-tools__menu-item:first-child {
  padding-top: 1.25rem;
}

.content-tools__menu-item:last-child {
  padding-bottom: 1.25rem;
}

.content-tools__menu-item:hover,
.content-tools__menu-item:focus {
  background: var(--surface-elevated, #f4f4f5);
  outline: none;
  color: var(--text-primary, #18181b) !important;
}
html[data-theme=dark] .content-tools__menu-item:hover,
html[data-theme=dark] .content-tools__menu-item:focus {
  background: var(--surface-muted, #fafafa);
  color: var(--text-primary, #18181b) !important;
}

.content-tools__menu-item:focus-visible {
  outline: 2px solid var(--border-button-primary, #4f46e5);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--border-button-primary, #4f46e5) 30%, transparent);
}

html[data-theme=dark] .content-tools__menu-item:focus-visible {
  outline-color: #818cf8;
  box-shadow: 0 0 0 4px color-mix(in srgb, #818cf8 30%, transparent);
}

.content-tools__menu-item:first-child:hover,
.content-tools__menu-item:first-child:focus {
  border-radius: 0.75rem 0.75rem 0 0;
}

.content-tools__menu-item:last-child:hover,
.content-tools__menu-item:last-child:focus {
  border-radius: 0 0 0.75rem 0.75rem;
}

.content-tools__menu-item:first-child:last-child:hover,
.content-tools__menu-item:first-child:last-child:focus {
  border-radius: 0.75rem;
}

.content-tools__menu-item i,
.content-tools__menu-item .content-tools__icon {
  font-size: 1rem;
  color: var(--text-icon-primary, #52525b);
  grid-row: 1/span 2;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
html[data-theme=dark] .content-tools__menu-item i,
html[data-theme=dark] .content-tools__menu-item .content-tools__icon {
  color: var(--text-icon-primary, #52525b);
}

.content-tools__icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.content-tools__icon i {
  font-size: 1rem;
  color: var(--text-icon-primary, #52525b);
}
.content-tools__icon svg {
  width: 16px;
  height: 16px;
  display: block;
}
.content-tools__icon svg path {
  fill: var(--text-icon-primary, #52525b);
}
html[data-theme=dark] .content-tools__icon i {
  color: var(--text-icon-primary, #52525b);
}
html[data-theme=dark] .content-tools__icon svg path {
  fill: var(--text-icon-primary, #52525b);
}

.content-tools__menu-label {
  font-weight: 400;
  grid-column: 2;
}

.content-tools__menu-hint {
  font-size: 0.75rem;
  color: var(--text-icon-primary, #52525b);
  grid-column: 2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
html[data-theme=dark] .content-tools__menu-hint {
  color: var(--text-muted, #a1a1aa);
}

.content-tools__menu-item:hover i,
.content-tools__menu-item:hover .content-tools__icon i,
.content-tools__menu-item:focus i,
.content-tools__menu-item:focus .content-tools__icon i {
  color: var(--text-icon-primary-hover, #3f3f46);
}
html[data-theme=dark] .content-tools__menu-item:hover i,
html[data-theme=dark] .content-tools__menu-item:hover .content-tools__icon i,
html[data-theme=dark] .content-tools__menu-item:focus i,
html[data-theme=dark] .content-tools__menu-item:focus .content-tools__icon i {
  color: var(--text-icon-primary-hover, #3f3f46);
}

.content-tools__menu-item:hover .content-tools__icon svg path,
.content-tools__menu-item:focus .content-tools__icon svg path {
  fill: var(--text-icon-primary-hover, #3f3f46);
}
html[data-theme=dark] .content-tools__menu-item:hover .content-tools__icon svg path,
html[data-theme=dark] .content-tools__menu-item:focus .content-tools__icon svg path {
  fill: var(--text-icon-primary-hover, #3f3f46);
}

.content-tools__menu-item:hover .content-tools__menu-hint,
.content-tools__menu-item:focus .content-tools__menu-hint {
  color: var(--text-icon-primary, #52525b);
}
html[data-theme=dark] .content-tools__menu-item:hover .content-tools__menu-hint,
html[data-theme=dark] .content-tools__menu-item:focus .content-tools__menu-hint {
  color: var(--text-muted, #a1a1aa);
}

.content-tools__menu-item + .content-tools__menu-item {
  border-top: 1px solid var(--border-subtle, #f4f4f5);
}
html[data-theme=dark] .content-tools__menu-item + .content-tools__menu-item {
  border-top: 1px solid var(--border-subtle, #f4f4f5);
}

/**
 * Three Column Template Styles
 * 
 * This SCSS file defines layout and visual styling for the custom WordPress page template 
 * featuring a three-column layout. All styles here apply specifically to the 
 * `.template-three-column` class and its unique block and child structures.
 *
 * - Design tokens: see scss/_tokens.scss
 * - Follows design system guidelines for spacing, colors, and responsive behavior.
 */
/* documentation menu */
html body .doc a {
  font-family: "Figtree", sans-serif;
  text-decoration: none;
  transition: color 0.1s;
  padding: 0.3em;
  transform-origin: left;
  display: block;
  color: #4b5563;
}
html body .doc a:hover {
  color: #111827;
}
html[data-theme=dark] html body .doc a {
  color: var(--text-secondary, #52525b);
}
html[data-theme=dark] html body .doc a:hover {
  color: var(--text-primary, #18181b);
}

.doc {
  font-family: "Figtree", sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.4;
}

.doc {
  font-size: 0.875rem;
  color: #111827;
}

.documentation-menu {
  background: #ffffff;
  padding: 1.5em 1.75em;
  overflow-y: auto;
  /* Chrome/Safari/Edge */
}
.documentation-menu::-webkit-scrollbar {
  width: 12px;
}
.documentation-menu::-webkit-scrollbar-track {
  background: transparent;
}
.documentation-menu::-webkit-scrollbar-thumb {
  background: var(--border-subtle, #f4f4f5);
  border-radius: 0.125rem;
}
.documentation-menu {
  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: var(--border-subtle, #f4f4f5) transparent;
}
.documentation-menu .toc {
  font-size: 1rem;
}
@media screen and (min-width: 1025px) {
  .documentation-menu {
    padding-bottom: calc(1em + var(--banner-height));
  }
}
html[data-theme=dark] .documentation-menu {
  background: transparent;
  /* border-right: 1px solid color-border(subtle); */
  border-right: none;
  color: var(--text-secondary, #52525b);
  box-shadow: none;
}

.doc > ul {
  padding-bottom: 1em;
}

.doc ul {
  padding-left: 0;
  list-style-type: none;
}

.doc ul ul ul {
  padding-left: 0.25rem;
}

.doc-close {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 44px;
  padding: 0;
  box-sizing: border-box;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  color: var(--text-primary, #18181b);
  transition: background 0.2s ease, color 0.2s ease;
  border-radius: 0.5rem;
  cursor: pointer;
  flex-shrink: 0;
}
.doc-close:hover, .doc-close:focus {
  background: var(--surface-elevated, #f4f4f5);
  color: var(--text-primary, #18181b);
  outline: none;
}
.doc-close svg {
  width: 24px;
  height: 24px;
  display: block;
}

@media screen and (max-width: 1024px) {
  .documentation-menu .doc > ul {
    width: calc(100% + 2.9em);
  }
  .documentation-menu .toc,
  .documentation-menu .toc-close {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .doc-close {
    display: none;
  }
}
.doc > span,
.doc-header > span {
  font-weight: 600;
  color: #111827;
  display: block;
  font-size: 0.95em;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding-left: 0.25em;
  margin-bottom: 0.35em;
}
html[data-theme=dark] .doc > span,
html[data-theme=dark] .doc-header > span {
  color: var(--text-primary, #18181b);
}

@media screen and (max-width: 1024px) {
  .doc-header > span {
    margin-bottom: 0;
  }
}
.doc li > span {
  padding-left: 0.25em;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 0.5em;
  display: block;
}
html[data-theme=dark] .doc li > span {
  color: var(--text-muted, #a1a1aa);
}

@media screen and (max-width: 1024px) {
  .main-content-box aside.documentation-menu::-webkit-scrollbar-track {
    background: transparent;
  }
  .main-content-box aside.documentation-menu::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background: transparent;
  }
  .main-content-box aside.documentation-menu::-webkit-scrollbar-thumb {
    background: #e5e7eb;
    border-radius: 0.5rem;
  }
  .main-content-box aside.documentation-menu {
    position: fixed;
    bottom: -20px;
    left: 50%;
    width: 98%;
    border: 1px solid #e5e7eb;
    max-height: calc(100vh - 150px - 16px);
    box-sizing: border-box;
    z-index: 200;
    font-size: 1.0625rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-content: flex-start;
    gap: 0.5em;
    border-radius: 0.5rem 0.5rem 0 0;
    transform: translateX(-50%) translateY(calc(100% + 16px));
    transition: transform 0.1s ease-out;
    background: #ffffff;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .main-content-box aside.documentation-menu.open {
    transform: translateX(-50%) translateY(0);
  }
  .main-content-box aside.documentation-menu {
    padding-top: 0;
    padding-left: 1.75em;
    padding-right: 1.75em;
    padding-bottom: 1.5em;
  }
  .main-content-box aside.documentation-menu nav.doc {
    padding-top: 0;
    padding-right: 0;
  }
  .main-content-box aside.documentation-menu .doc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 0.5em;
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 10;
    padding-top: 1.5em;
    padding-bottom: 0.5em;
    margin-left: -1.75em;
    margin-right: -1.75em;
    padding-left: 1.75em;
    padding-right: 1.75em;
  }
  .main-content-box aside.documentation-menu .doc-header > span {
    flex: 1;
    margin-bottom: 0;
  }
  .main-content-box aside.documentation-menu .doc-close {
    position: static;
    margin: 0;
    display: flex;
    flex-shrink: 0;
  }
  .main-content-box aside.documentation-menu .doc > ul {
    padding-right: 3em;
  }
  .main-content-box aside.documentation-menu nav.doc::after {
    content: " ";
    height: 1px;
    display: block;
  }
  .main-content-box aside.documentation-menu .doc > ul > li > ul > li.parent-component > a.documentation-menu-arrow {
    margin-right: 0.75em;
    padding: 0.75em 0.5em;
    min-height: 2.75em;
    min-width: 3em;
    width: auto;
  }
  .main-content-box aside.documentation-menu .doc > ul > li > ul > li:not(.parent-component) {
    margin-bottom: 0.1em;
  }
  .main-content-box aside.documentation-menu .doc > ul > li > ul > li.parent-component {
    margin-bottom: 0.25em;
  }
  .main-content-box aside.documentation-menu .doc > ul > li > ul li:not(.parent-component) > a {
    padding: 0.65em 0.85em;
    min-height: 2.75em;
    font-size: 1.0625rem;
  }
  .main-content-box aside.documentation-menu .doc > ul > li > ul > li.parent-component > a:first-child {
    padding: 0.65em 0.85em;
    min-height: 2.75em;
    font-size: 1.0625rem;
  }
  .main-content-box aside.documentation-menu .doc {
    --subcomponent-height: calc(1.75rem + (1em * .65 * 2) + 0.25em);
  }
  .main-content-box aside.documentation-menu .doc-header > span {
    font-size: 1.0625rem;
  }
  .main-content-box aside.documentation-menu .doc > ul > li > span {
    font-size: 1.25rem;
  }
}
.doc > ul > li > ul li:not(.parent-component) > a {
  width: 100%;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 0.45em 0.85em;
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 500;
  color: #4b5563;
  transition: color 0.1s ease;
}
html[data-theme=dark] .doc > ul > li > ul li:not(.parent-component) > a {
  color: var(--text-secondary, #52525b);
}
html[data-theme=dark] .doc > ul > li > ul li:not(.parent-component) > a:hover {
  color: var(--text-primary, #18181b);
}

.doc > ul > li > ul li:not(.parent-component) > a:hover {
  color: #111827;
}

.doc > ul > li > ul li.active-component > a,
.doc > ul > li > ul li.active-subcomponent > a {
  color: var(--text-link, #4f46e5) !important;
  font-weight: bold;
}
html[data-theme=dark] .doc > ul > li > ul li.active-component > a,
html[data-theme=dark] .doc > ul > li > ul li.active-subcomponent > a {
  color: var(--text-link, #4f46e5) !important;
  font-weight: bold;
}
.doc > ul > li > ul li.active-component > a:hover,
.doc > ul > li > ul li.active-subcomponent > a:hover {
  color: var(--text-link, #4f46e5) !important;
}

.doc > ul > li > ul > li.parent-component {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.doc > ul > li > ul > li.parent-component > a:first-child {
  flex: 1;
  min-width: 0;
  border-radius: 10px 0 0 10px;
  box-sizing: border-box;
  padding: 0.45em 0.85em;
  font-weight: 500;
  /* color: $color-gray-600; */
  transition: color 0.1s ease;
}
html[data-theme=dark] .doc > ul > li > ul > li.parent-component > a:first-child {
  /* color: color-text(secondary); */
}
html[data-theme=dark] .doc > ul > li > ul > li.parent-component > a:first-child:hover {
  color: var(--text-primary, #18181b);
}

.doc > ul > li > ul > li.parent-component > a:first-child:hover {
  color: #111827;
}

.doc > ul > li > ul > li.parent-component > a.documentation-menu-arrow {
  flex-shrink: 0;
  width: 2.75em;
  border-radius: 0 10px 10px 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
  transition: background 0.2s ease, color 0.1s ease;
}
html[data-theme=dark] .doc > ul > li > ul > li.parent-component > a.documentation-menu-arrow {
  color: var(--text-secondary, #52525b);
  transition: background 0.2s ease, color 0.1s ease;
}
html[data-theme=dark] .doc > ul > li > ul > li.parent-component > a.documentation-menu-arrow:hover {
  color: var(--text-primary, #18181b);
}

a.documentation-menu-arrow i {
  transform: rotate(90deg);
  transition: transform 0.1s;
}

li.parent-component.open a.documentation-menu-arrow i {
  transform: none;
}

li.parent-component > ul {
  flex-basis: 100%;
  width: 100%;
  box-sizing: border-box;
  border-left: 1px solid #e5e7eb;
  border-image: none;
  margin-left: 1em;
  padding-left: 1em;
  transition: border-left-color 0s;
}
html[data-theme=dark] li.parent-component > ul {
  border-left-color: var(--border-subtle, #f4f4f5);
}

.doc > ul > li > ul > li.parent-component a.documentation-menu-arrow:hover {
  color: #111827;
  border-radius: 10px;
}

.documentation-menu .doc > ul > li > ul > li.active-component > a.documentation-menu-arrow:hover {
  color: #111827;
  border-radius: 0 10px 10px 0;
}

.doc > ul > li > span {
  font-size: 1.05em;
  margin-top: 1em;
  display: inline-block;
}

.doc > ul > li:first-child > span {
  margin-top: 0;
}

.documentation-menu .doc > ul > li > ul > li.parent-component > ul {
  max-height: 0;
  height: auto;
  overflow: hidden;
  transition: max-height 0.3s, height 0.3s, overflow 0.3s;
}

@media screen and (min-width: 1025px) {
  li.parent-component > ul > li > a {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}
.doc {
  --subcomponent-height: calc(1em * 1.7 + (1em * .3 * 2));
}

.documentation-menu a[target=_blank]::after {
  -moz-osx-font-smoothing: grayscale;
  content: "\f35d";
  font-family: "Font Awesome 5 Free";
  font-size: 0.6em;
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  line-height: 1;
  padding-left: 0.5em;
  text-rendering: auto;
  vertical-align: text-top;
}

/* /documentation menu */
/* mobile nav bar */
.mobile-nav-bar {
  position: sticky;
  top: 60px;
  width: 100%;
  z-index: 99;
  height: 58px;
  border-bottom: 1px solid #e5e7eb;
  background: var(--surface-body, #ffffff);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.75rem;
  box-sizing: border-box;
  /*-webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);*/
}
@media screen and (min-width: 1025px) {
  .mobile-nav-bar {
    display: none;
  }
}

.mobile-nav-bar .doc-open {
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
  align-items: center;
  cursor: pointer;
  height: 100%;
  padding: 0 0.5rem 0 0;
  width: 80%;
  box-sizing: border-box;
}

.doc-open-icon {
  grid-column: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 44px;
  padding: 0;
  box-sizing: border-box;
  background: none;
  border: 0;
  color: #111827;
  transition: background 0.2s ease, color 0.2s ease;
  border-radius: 0.5rem;
  pointer-events: none;
  align-self: center;
}
.doc-open-icon svg {
  display: block;
}

.doc-open:hover .doc-open-icon,
.doc-open:focus .doc-open-icon {
  background: var(--surface-elevated, #f4f4f5);
  color: #111827;
}

.doc-open-content {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
  min-width: 0;
  flex: 1;
  justify-content: center;
}

.doc-open-content > span:first-child {
  color: var(--text-primary, #18181b);
  font-family: "Figtree", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out, font-size 0.3s ease-out;
}

.doc-open-content > span:last-child {
  font-family: "Figtree", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary, #18181b);
  min-width: 0;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out, transform 0.3s ease-out, margin-top 0.3s ease-out;
  margin-top: 0;
  overflow: hidden;
}

.doc-open.title-scrolled-out .doc-open-content > span:last-child {
  max-height: 2em;
  opacity: 1;
  transform: translateY(0);
  margin-top: 0;
}

.doc-open:not(.title-scrolled-out) .doc-open-content {
  gap: 0;
}

.doc-open.title-scrolled-out .doc-open-content {
  gap: 0.1em;
}

.doc-open.title-scrolled-out .doc-open-content > span:first-child {
  transform: translateY(0);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-primary, #18181b);
}

.doc-open:not(.title-scrolled-out) .doc-open-content {
  justify-content: center;
}

.mobile-nav-bar .toc-open {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 44px;
  padding: 0;
  box-sizing: border-box;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  color: #111827;
  transition: background 0.2s ease, color 0.2s ease;
  border-radius: 0.5rem;
}
.mobile-nav-bar .toc-open svg {
  transform: rotate(-90deg);
}
.mobile-nav-bar .toc-open {
  cursor: pointer;
}
.two-column .mobile-nav-bar .toc-open {
  transform: rotate(90deg);
}
.two-column .mobile-nav-bar .toc-open svg {
  transform: rotate(-90deg);
}
.three-column .mobile-nav-bar .toc-open {
  transform: rotate(90deg);
}
.three-column .mobile-nav-bar .toc-open svg {
  transform: rotate(-90deg);
}
.mobile-nav-bar .toc-open:hover, .mobile-nav-bar .toc-open:focus {
  background: var(--surface-elevated, #f4f4f5);
  color: #111827;
}

.two-column .mobile-nav-bar span {
  display: flex;
  justify-content: flex-start;
  color: #111827;
  gap: 0.4em;
  padding: 0 0.5em;
  height: 100%;
  align-items: center;
  font-family: "Figtree", sans-serif;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
}

.two-column .mobile-nav-bar {
  justify-content: flex-start;
  gap: 0;
}

@media screen and (min-width: 1025px) and (max-width: 1199px) {
  html[data-theme=dark] .three-column .documentation-menu .toc {
    font-size: 0.875rem !important;
    color: var(--text-secondary, #52525b) !important;
  }
  html[data-theme=dark] .three-column .documentation-menu .toc > span,
  html[data-theme=dark] .three-column .documentation-menu .toc .toc-header > span {
    color: var(--text-primary, #18181b) !important;
    font-size: 0.875rem !important;
  }
  html[data-theme=dark] .three-column .documentation-menu .toc a {
    color: var(--text-secondary, #52525b) !important;
    font-size: 0.875rem !important;
  }
  html[data-theme=dark] .three-column .documentation-menu .toc a:hover {
    color: var(--text-primary, #18181b) !important;
  }
  html[data-theme=dark] .three-column .documentation-menu .toc a.is-active {
    color: #60a5fa !important;
  }
  html[data-theme=dark] .three-column .documentation-menu .toc li.scrollspy-active > a {
    color: var(--text-primary, #18181b) !important;
  }
  html[data-theme=dark] html body .three-column .documentation-menu .toc a {
    color: var(--text-secondary, #52525b) !important;
    font-size: 0.875rem !important;
  }
  html[data-theme=dark] html body .three-column .documentation-menu .toc a:hover {
    color: var(--text-primary, #18181b) !important;
  }
  html[data-theme=dark] html body .three-column .documentation-menu .toc a.is-active {
    color: #60a5fa !important;
  }
  html[data-theme=dark] .three-column .documentation-menu .toc li.scrollspy-active > a {
    color: var(--text-primary, #18181b) !important;
  }
}

/**
 * Email Signup Form Component
 * 
 * Custom email signup forms that integrate with Kit (ConvertKit) API
 * Uses design system tokens for consistency and automatic dark mode support
 */
.email-signup-wrapper {
  max-width: 650px;
  margin: 3rem auto;
  padding: 3rem;
  background: var(--surface-elevated, #f4f4f5);
  border: 1px solid var(--border-strong, #d4d4d8);
  border-radius: 1rem;
}
[data-theme=dark] .email-signup-wrapper {
  border: 1px solid var(--border-subtle, #f4f4f5);
}
@media screen and (max-width: 768px) {
  .email-signup-wrapper {
    padding: 1.5rem;
  }
}
.email-signup-wrapper--wide {
  max-width: 900px;
}

.two-column .entry-content .email-signup-wrapper,
.three-column .entry-content .email-signup-wrapper {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
}

.email-signup-headline {
  margin: 0 0 0.5rem 0 !important;
  font-family: "Figtree", sans-serif !important;
  font-size: 1.875rem !important;
  color: var(--text-primary, #18181b) !important;
  text-align: center !important;
}

.email-signup-tagline {
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.65rem;
  color: var(--text-secondary, #52525b);
  text-align: center;
  max-width: 650px;
}
.email-signup-tagline--top {
  margin-bottom: 1rem;
}
.email-signup-tagline--bottom {
  margin-top: 1rem;
}

.email-signup-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.email-signup-fields {
  display: flex;
  gap: 0.75rem;
}
@media screen and (max-width: 768px) {
  .email-signup-fields {
    flex-direction: column;
  }
}

.email-input-wrapper {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}
.email-input-wrapper .email-icon {
  position: absolute;
  left: 1rem;
  color: var(--text-muted, #a1a1aa);
  pointer-events: none;
}

.email-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 3rem;
  font-size: 1rem;
  line-height: 1.5rem;
  background: var(--surface-body, #ffffff);
  border: 1px solid var(--border-muted, #e4e4e7);
  border-radius: 0.75rem;
  color: var(--text-primary, #18181b);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.email-input::placeholder {
  color: var(--text-muted, #a1a1aa);
}
.email-input:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}
.email-input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.email-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.email-signup-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .email-signup-button {
    width: 100%;
  }
}
.email-signup-button:disabled {
  cursor: wait;
}
.email-signup-button--subscribed {
  opacity: 0.6;
  cursor: default;
  pointer-events: none;
}

.button-spinner {
  display: inline-flex;
  align-items: center;
}
.button-spinner .spinner {
  width: 16px;
  height: 16px;
  animation: rotate 2s linear infinite;
}
.button-spinner .path {
  stroke: currentColor;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.email-signup-message {
  display: none;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  text-align: center;
}
.email-signup-message.success {
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.email-signup-message.error {
  background: rgba(239, 68, 68, 0.1);
  color: #b91c1c;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.email-signup-skip {
  display: block;
  margin-top: 1.5rem;
  text-align: center;
  color: var(--text-secondary, #52525b);
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.email-signup-skip:hover {
  color: var(--text-primary, #18181b);
}

[data-theme=dark] .email-signup-message.success {
  color: #4ade80;
}
[data-theme=dark] .email-signup-message.error {
  color: #f87171;
}

.one-column .main-content-box:has(.full-width-page) {
  padding: 0;
}

.one-column .site-main:has(.full-width-page) {
  max-width: none;
  padding: 0;
}

.section-heading {
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.25;
  color: var(--text-primary, #18181b);
  margin: 0 0 2rem;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
@media (min-width: 768px) {
  .section-heading {
    font-size: 3rem;
  }
}

.card-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
.card-grid--3, .card-grid--2 {
  max-width: 500px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .card-grid--3 {
    max-width: none;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .card-grid--2 {
    max-width: none;
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-muted, #e4e4e7);
  border-radius: 0.75rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover {
  box-shadow: 0 4px 6px -1px rgba(24, 24, 27, 0.08), 0 2px 4px -2px rgba(24, 24, 27, 0.06);
  border-color: var(--border-strong, #d4d4d8);
}
.card:hover .card__img {
  transform: scale(1.05);
}
.card:hover .card__title {
  color: var(--text-link, #4f46e5);
}
.card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.card__title {
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--text-primary, #18181b);
  margin: 0;
  transition: color 0.25s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
.card__desc {
  font-family: "Figtree", sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--text-body-text, #3f3f46);
  margin: 0;
}
[data-theme=dark] .card {
  border-color: var(--border-subtle, #f4f4f5);
}
[data-theme=dark] .card:hover {
  border-color: var(--border-muted, #e4e4e7);
}

.hp-page {
  width: 100%;
  overflow-x: hidden;
}

.hp-page .section-heading {
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.25;
  color: var(--text-primary, #18181b);
  margin: 0 0 2rem;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
@media (min-width: 768px) {
  .hp-page .section-heading {
    font-size: 3rem;
  }
}

.hp-page .hp-hero__heading {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
  line-height: 1.2;
  text-align: left;
}
@media (min-width: 768px) {
  .hp-page .hp-hero__heading {
    font-size: 3rem;
  }
}

.hp-page .card__title {
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0;
  line-height: 1.3;
  text-align: left;
}

.hp-hero {
  padding: 4rem 0 3rem;
}
.hp-hero__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.hp-hero__heading {
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.2;
  color: var(--text-primary, #18181b);
  margin: 0 0 1.5rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
.hp-hero__body {
  font-family: "Figtree", sans-serif;
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 300;
  color: var(--text-body-text, #3f3f46);
  margin: 0 0 0.75rem;
  max-width: 560px;
}
[data-theme=dark] .hp-hero__body {
  color: var(--text-secondary, #52525b);
}
[data-theme=dark] .hp-hero__body strong {
  color: var(--text-primary, #18181b);
}
.hp-hero__body:last-of-type {
  margin-bottom: 2rem;
}
.hp-hero__cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.hp-hero__cta .btn {
  border-radius: 0.5rem;
  padding: 0.5rem 1.25rem;
  font-size: 1.125rem;
  width: 100%;
  justify-content: center;
}
.hp-hero__image {
  display: flex;
  justify-content: center;
}
.hp-hero__headshot {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
}
@media (min-width: 768px) {
  .hp-hero {
    padding: 5rem 0 4rem;
  }
  .hp-hero__heading {
    font-size: 3rem;
  }
  .hp-hero__inner {
    grid-template-columns: 1fr 1fr;
  }
  .hp-hero__cta {
    flex-direction: row;
  }
  .hp-hero__cta .btn {
    width: auto;
  }
  .hp-hero__image {
    justify-content: flex-end;
  }
  .hp-hero__headshot {
    max-width: 500px;
  }
}
@media (min-width: 1100px) {
  .hp-hero__heading {
    font-size: 3rem;
  }
  .hp-hero__inner {
    grid-template-columns: 1fr 1fr;
  }
  .hp-hero__headshot {
    max-width: 600px;
  }
}

.hp-featured-on {
  padding: 1.5rem 0;
}
.hp-featured-on__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.hp-featured-on__label {
  font-family: "Figtree", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted, #a1a1aa);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.hp-featured-on__logos {
  width: 100%;
  display: flex;
  justify-content: center;
}
.hp-featured-on__picture {
  display: none;
}
.hp-featured-on__picture--mobile.hp-featured-on__picture--light {
  display: block;
}
.hp-featured-on__img {
  max-width: 100%;
  height: auto;
}
[data-theme=dark] .hp-featured-on .hp-featured-on__picture--light {
  display: none;
}
[data-theme=dark] .hp-featured-on .hp-featured-on__picture--mobile.hp-featured-on__picture--dark {
  display: block;
}
@media (min-width: 768px) {
  .hp-featured-on__picture--mobile.hp-featured-on__picture--light {
    display: none;
  }
  .hp-featured-on__picture--desktop.hp-featured-on__picture--light {
    display: block;
  }
  [data-theme=dark] .hp-featured-on .hp-featured-on__picture--mobile.hp-featured-on__picture--dark {
    display: none;
  }
  [data-theme=dark] .hp-featured-on .hp-featured-on__picture--desktop.hp-featured-on__picture--dark {
    display: block;
  }
}

.hp-learn,
.hp-templates {
  padding: 4rem 0;
}

.hp-learn__inner,
.hp-templates__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hp-newsletter {
  padding: 4rem 0;
}
.hp-newsletter__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  max-width: 720px;
}
.hp-newsletter__content {
  margin-bottom: 2rem;
}
.hp-newsletter__content p {
  font-family: "Figtree", sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--text-body-text, #3f3f46);
  margin: 0 0 1rem;
}
.hp-newsletter__content p:last-child {
  margin-bottom: 0;
}
.hp-newsletter__form .email-signup-wrapper {
  margin: 0 auto;
}

.hp-about {
  padding: 4rem 0;
}
.hp-about > .section-heading {
  max-width: 1400px;
  margin: 0 auto 2rem;
  padding: 0 1.5rem;
}
.hp-about__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.hp-about__bio p {
  font-family: "Figtree", sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--text-body-text, #3f3f46);
  margin: 0 0 1.25rem;
}
.hp-about__bio p:last-child {
  margin-bottom: 0;
}
.hp-about__bio p a {
  color: var(--text-link, #4f46e5);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hp-about__bio p a:hover {
  color: var(--text-accent, #4338ca);
}
.hp-about__image {
  display: flex;
  justify-content: center;
}
.hp-about__photo {
  width: 100%;
  max-width: 575px;
  height: auto;
  border-radius: 0.75rem;
  object-fit: cover;
}
@media (min-width: 768px) {
  .hp-about__inner {
    grid-template-columns: 1.3fr 0.7fr;
  }
}

.hp-interviews {
  padding: 2rem 0 0;
}
.hp-interviews__label {
  font-family: "Figtree", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary, #18181b);
  text-align: center;
  max-width: 1400px;
  margin: 0 auto 2rem;
  padding: 0 1.5rem;
}
.hp-interviews__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.hp-interviews__image {
  display: flex;
  justify-content: center;
}
.hp-interviews__collage {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 0.75rem;
}
.hp-interviews__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}
.hp-interviews__list li a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Figtree", sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--text-body-text, #3f3f46);
  text-decoration: none;
  transition: color 0.2s ease;
}
.hp-interviews__list li a svg {
  flex-shrink: 0;
  color: var(--text-muted, #a1a1aa);
}
.hp-interviews__list li a:hover {
  color: var(--text-link, #4f46e5);
}
@media (min-width: 768px) {
  .hp-interviews__inner {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}

.hp-connect {
  padding: 4rem 0;
}
.hp-connect__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.hp-connect__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .hp-connect__grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}
@media (min-width: 1100px) {
  .hp-connect__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.hp-social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  color: inherit;
  text-align: center;
  transition: background 0.25s ease;
}
.hp-social-card:hover {
  background: var(--surface-muted, #fafafa);
}
.hp-social-card__icon {
  color: var(--text-secondary, #52525b);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.25s ease;
}
.hp-social-card__icon--nebula {
  width: 32px;
  height: 32px;
}
.hp-social-card__icon--nebula img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hp-social-card__name {
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary, #18181b);
}
.hp-social-card__meta {
  font-family: "Figtree", sans-serif;
  font-size: 1rem;
  color: var(--text-muted, #a1a1aa);
}
.hp-social-card--youtube:hover .hp-social-card__icon {
  color: #FF0000;
}
.hp-social-card--twitter:hover .hp-social-card__icon {
  color: var(--text-primary, #18181b);
}
.hp-social-card--nebula:hover .hp-social-card__icon {
  filter: brightness(1.3);
}
.hp-social-card--spotify:hover .hp-social-card__icon {
  color: #1DB954;
}

.elementor-widget-container p a, .elementor-widget-container li a {
  color: var(--text-primary, #18181b) !important;
  text-decoration: underline !important;
  text-decoration-color: var(--text-muted, #a1a1aa) !important;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.elementor-widget-container p a:hover, .elementor-widget-container li a:hover {
  text-decoration-color: var(--text-primary, #18181b) !important;
}
.elementor-widget-container h3 a, .elementor-widget-container .elementor-icon-list-item a {
  color: var(--text-primary, #18181b) !important;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}
.elementor-widget-container h3 a:hover, .elementor-widget-container .elementor-icon-list-item a:hover {
  color: var(--text-primary, #18181b) !important;
  text-decoration: underline !important;
}

.elementor-heading-title {
  color: var(--text-primary, #18181b) !important;
  font-family: "Figtree", sans-serif;
  font-weight: 700 !important;
}

p.elementor-heading-title {
  font-weight: 300 !important;
  font-size: 1.5rem !important;
  line-height: 2rem !important;
}
p.elementor-heading-title b {
  font-weight: 700 !important;
}
@media screen and (max-width: 600px) {
  p.elementor-heading-title {
    font-size: 1.0625rem !important;
    line-height: 1.65rem !important;
  }
}

h2.elementor-heading-title {
  font-size: 3rem !important;
  line-height: 3.5rem !important;
}
@media screen and (max-width: 1024px) {
  h2.elementor-heading-title {
    font-size: 3rem !important;
    line-height: 3.5rem !important;
  }
}
@media screen and (max-width: 768px) {
  h2.elementor-heading-title {
    font-size: 2.25rem !important;
    line-height: 2.5rem !important;
  }
}
@media screen and (max-width: 600px) {
  h2.elementor-heading-title {
    font-size: 1.875rem !important;
    line-height: 2.25rem !important;
  }
}

h3.elementor-heading-title {
  font-weight: 300 !important;
}

h1.elementor-headline {
  font-size: 6rem !important;
  line-height: 6rem !important;
  font-weight: 700 !important;
  font-family: "Figtree", sans-serif;
  color: var(--text-primary, #18181b) !important;
  max-width: 1000px;
  margin-inline: auto;
}
h1.elementor-headline .elementor-headline-dynamic-text {
  font-weight: 900 !important;
  text-transform: uppercase !important;
}
@media screen and (max-width: 1024px) {
  h1.elementor-headline {
    font-size: 4.5rem !important;
    line-height: 5rem !important;
    max-width: 800px;
  }
}
@media screen and (max-width: 768px) {
  h1.elementor-headline {
    font-size: 3.75rem !important;
    line-height: 4.5rem !important;
  }
}
@media screen and (max-width: 600px) {
  h1.elementor-headline {
    font-size: 3rem !important;
    line-height: 3.5rem !important;
    max-width: 100% !important;
  }
}

.elementor-headline-dynamic-wrapper .elementor-headline-dynamic-text {
  color: var(--text-primary, #18181b);
}
.elementor-headline-dynamic-wrapper svg {
  filter: drop-shadow(0 0 0.75rem #eab308) drop-shadow(0 0 1.5rem #fef9c3) blur(4px);
}
.elementor-headline-dynamic-wrapper svg path {
  stroke: #fde047 !important;
}
[data-theme=dark] .elementor-headline-dynamic-wrapper svg {
  filter: drop-shadow(0 0 0.75rem #4f46e5) drop-shadow(0 0 1.5rem #818cf8) blur(4px);
}
[data-theme=dark] .elementor-headline-dynamic-wrapper svg path {
  stroke: #4f46e5 !important;
  opacity: 0.8 !important;
}

.elementor-3488 .elementor-widget-wrap {
  border-radius: 0.75rem !important;
  background-image: none !important;
  background-color: var(--surface-elevated, #f4f4f5) !important;
  border: 1px solid var(--border-subtle, #f4f4f5) !important;
}
[data-theme=light] .elementor-3488 .elementor-widget-wrap {
  background-color: var(--surface-elevated, #f4f4f5) !important;
  border-color: var(--border-strong, #d4d4d8) !important;
}
[data-theme=light] .elementor-3488 .elementor-widget-wrap .elementor-field-textual {
  border-color: var(--border-strong, #d4d4d8) !important;
  transition: border-color 0.2s ease;
  border-radius: 0.5rem !important;
}
[data-theme=light] .elementor-3488 .elementor-widget-wrap .elementor-field-textual:active, [data-theme=light] .elementor-3488 .elementor-widget-wrap .elementor-field-textual:focus {
  border-color: #a1a1aa !important;
}
.elementor-3488 h4 {
  color: var(--text-primary, #18181b) !important;
}
.elementor-3488 p {
  color: var(--text-secondary, #52525b) !important;
  font-weight: 400 !important;
  font-size: 1rem !important;
  line-height: 1.5rem !important;
}
.elementor-3488 button {
  background-color: var(--surface-button-primary, #4f46e5) !important;
  color: var(--text-button-primary, #ffffff) !important;
  font-weight: 600 !important;
  border-radius: 0.5rem !important;
  border: 1px solid var(--border-button-primary, #4f46e5) !important;
  transition: box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}
.elementor-3488 button:hover:not(:disabled) {
  background: var(--surface-button-primary-hover, #4338ca) !important;
}

.elementor-landing-btn div > div > a {
  background: var(--surface-button-primary, #4f46e5) !important;
  color: var(--text-button-primary, #ffffff) !important;
  border-radius: 0.75rem !important;
  border: 1px solid var(--border-button-primary, #4f46e5) !important;
  transition: box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}
.elementor-landing-btn div > div > a:hover:not(:disabled) {
  background: var(--surface-button-primary-hover, #4338ca) !important;
}
@media screen and (max-width: 768px) {
  .elementor-landing-btn div > div > a {
    max-height: 60px !important;
    padding: 1.25rem 1rem !important;
  }
}

.landing-dark h2,
.landing-dark h3,
.landing-dark p,
.landing-dark em,
.landing-dark li,
.landing-dark strong {
  color: #e4e4e7 !important;
}
.landing-dark p > a,
.landing-dark p > strong > a,
.landing-dark p > b > a,
.landing-dark p > i > a,
.landing-dark p > em > a {
  color: #e4e4e7 !important;
  text-decoration: underline !important;
  text-decoration-color: #71717a !important;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.landing-dark p > a:hover,
.landing-dark p > strong > a:hover,
.landing-dark p > b > a:hover,
.landing-dark p > i > a:hover,
.landing-dark p > em > a:hover {
  text-decoration-color: #e4e4e7 !important;
}

.landing-banner {
  background-color: var(--surface-elevated, #f4f4f5) !important;
  color: var(--text-primary, #18181b) !important;
  max-width: 500px !important;
  margin-inline: auto !important;
  padding: 0.25rem 1rem !important;
  border-radius: 0.75rem !important;
  border: 1px solid var(--border-subtle, #f4f4f5) !important;
}
.landing-banner p {
  margin: 0.5rem 1rem !important;
  font-weight: 600 !important;
}
.landing-banner p > a {
  color: var(--text-primary, #18181b) !important;
  text-decoration: underline !important;
  text-decoration-color: var(--text-muted, #a1a1aa) !important;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.landing-banner p > a:hover {
  text-decoration-color: var(--text-primary, #18181b) !important;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .landing-banner {
    max-width: 550px !important;
  }
}
@media screen and (max-width: 767px) {
  .landing-banner {
    padding: 0.75rem 0.5rem !important;
  }
  .landing-banner .elementor-widget-container {
    margin: 0 !important;
  }
}
@media screen and (max-width: 600px) {
  .landing-banner {
    max-width: 90% !important;
    padding: 0.75rem 0.25rem !important;
  }
}

.elementor-price-table {
  background-color: #18181b !important;
}
.elementor-price-table span a {
  color: #f4f4f5 !important;
  text-decoration: underline !important;
  text-decoration-color: #71717a !important;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.elementor-price-table span a:hover {
  text-decoration-color: #e4e4e7 !important;
}
.elementor-price-table li, .elementor-price-table p, .elementor-price-table span {
  color: #f4f4f5 !important;
}
.elementor-price-table .elementor-price-table__button {
  background-color: var(--surface-button-primary, #4f46e5) !important;
  color: var(--text-button-primary, #ffffff) !important;
  border-radius: 0.5rem !important;
  border: 1px solid var(--border-button-primary, #4f46e5) !important;
  transition: box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}
.elementor-price-table .elementor-price-table__button:hover:not(:disabled) {
  background: var(--surface-button-primary-hover, #4338ca) !important;
}

.elementor-ribbon-inner {
  background-color: var(--surface-button-primary, #4f46e5) !important;
}

.elementor-price-table__heading {
  color: #f4f4f5 !important;
}
.elementor-price-table__heading:hover {
  color: #f4f4f5 !important;
}

.cc-overflow img,
.cc-overflow-tasks img {
  width: 100% !important;
  max-width: 1000px !important;
}
@media screen and (max-width: 768px) {
  .cc-overflow,
  .cc-overflow-tasks {
    max-width: 100% !important;
  }
  .cc-overflow img,
  .cc-overflow-tasks img {
    max-width: 100% !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .cc-overflow,
  .cc-overflow-tasks {
    max-width: 650px !important;
    margin-inline: auto !important;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .cc-overflow,
  .cc-overflow-tasks {
    max-width: 900px !important;
    margin-inline: auto !important;
  }
}

.wall-of-love {
  max-width: 90% !important;
  margin-inline: auto !important;
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}
.wall-of-love div > iframe {
  border-radius: 0.75rem !important;
}
@media screen and (max-width: 768px) {
  .wall-of-love {
    max-width: 100% !important;
  }
}

[data-theme=dark] .logorail-light {
  display: none !important;
}

[data-theme=light] .logorail-dark {
  display: none !important;
}

.elementor-button-primary a, .elementor-button-ghost a {
  padding: 1rem 1.5rem !important;
}

.elementor-button-primary a, .elementor-button-primary button {
  background-color: var(--surface-button-primary, #4f46e5) !important;
  color: var(--text-button-primary, #ffffff) !important;
  border-radius: 0.5rem !important;
  border: 1px solid var(--border-button-primary, #4f46e5) !important;
  transition: box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}
.elementor-button-primary a:hover:not(:disabled), .elementor-button-primary button:hover:not(:disabled) {
  background: var(--surface-button-primary-hover, #4338ca) !important;
}
@media screen and (max-width: 768px) {
  .elementor-button-primary a, .elementor-button-primary button {
    max-height: 60px !important;
    padding: 1.25rem 1rem !important;
  }
}

.elementor-button-ghost a {
  background: var(--surface-elevated, #f4f4f5) !important;
  color: var(--text-primary, #18181b) !important;
  border-radius: 0.5rem !important;
  border: 1px solid var(--border-muted, #e4e4e7) !important;
  transition: background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
[data-theme=dark] .elementor-button-ghost a {
  border-color: var(--border-subtle, #f4f4f5) !important;
}
.elementor-button-ghost a:hover:not(:disabled) {
  border-color: var(--border-strong, #d4d4d8) !important;
}
.elementor-button-ghost a:disabled {
  color: var(--text-muted, #a1a1aa) !important;
  border-color: var(--border-subtle, #f4f4f5) !important;
  opacity: 0.5;
}
.elementor-button-ghost a:focus-visible {
  outline: 2px solid #4f46e5 !important;
  outline-offset: 2px;
}
[data-theme=dark] .elementor-button-ghost a:focus-visible {
  outline-color: #818cf8 !important;
}
@media screen and (max-width: 768px) {
  .elementor-button-ghost a {
    max-height: 60px !important;
    padding: 1.25rem 1rem !important;
  }
}

.lasso-display {
  background-color: var(--surface-body, #ffffff) !important;
  border-color: var(--border-muted, #e4e4e7) !important;
}
[data-theme=dark] .lasso-display {
  border-color: var(--border-subtle, #f4f4f5) !important;
}

a.lasso-title,
.lasso-description p {
  color: var(--text-primary, #18181b) !important;
}

a.lasso-button-1 {
  background: var(--surface-button-primary, #4f46e5) !important;
  color: var(--text-button-primary, #ffffff) !important;
  border-radius: 0.75rem;
  border: 1px solid var(--border-button-primary, #4f46e5) !important;
  transition: box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease !important;
  cursor: pointer !important;
}
a.lasso-button-1:hover:not(:disabled) {
  background: var(--surface-button-primary-hover, #4338ca) !important;
  border-color: var(--border-button-primary-hover, #4338ca) !important;
  box-shadow: 0 0 12px color-mix(in srgb, var(--border-button-primary, #4f46e5) 25%, transparent) !important;
  transform: none !important;
}
a.lasso-button-1:disabled {
  background: var(--surface-button-disabled, #e4e4e7) !important;
  color: var(--text-button-disabled, #a1a1aa) !important;
  border-color: var(--border-button-disabled, #e4e4e7) !important;
  box-shadow: none !important;
}
a.lasso-button-1:focus-visible {
  outline: none !important;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--border-button-primary, #4f46e5) 35%, transparent) !important;
}

.lasso-disclosure,
.lasso-date {
  color: var(--text-secondary, #52525b) !important;
}

a.lasso-brag {
  display: none !important;
}

.lasso-container a::after {
  display: none !important;
}

.lasso-image img {
  border-radius: 0.5rem !important;
}

.lasso-list-ol {
  list-style-type: none !important;
}

.lasso-title {
  font-size: 1.5rem !important;
}

.lasso-badge {
  border-radius: 0.5rem;
  left: 10px;
  background-color: #d97706;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  font-weight: 600;
}
.lasso-badge::after {
  display: none;
}

/* prevent “stuck” tooltips after click */
.code-block-buttons [data-tooltip]::after {
  bottom: -40px !important;
  transform: translateX(-50%) translateY(15%) !important;
}

.code-block-buttons > .code-block-wrap-btn[data-tooltip]::after {
  transform: translateX(2%) translateY(15%) !important;
}

.code-block-buttons [data-tooltip]:focus::before, .code-block-buttons [data-tooltip]:hover::before {
  transform: translateY(0px) !important;
}

/* Editor styles */
.wp-admin .editor-visual-editor .wp-block-image figcaption {
  font-size: 16px !important;
  text-align: center;
}

.editor-styles-wrapper .wp-block-flylighter-hint.callout {
  margin: 24px 0;
}
.editor-styles-wrapper .wp-block-flylighter-hint.callout .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:first-child {
  margin-top: 0;
}
.editor-styles-wrapper .wp-block-flylighter-hint.callout .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:last-child {
  margin-bottom: 0;
}
.editor-styles-wrapper .wp-block-flylighter-hint.callout .block-list-appender {
  position: relative;
  margin-top: 0.75rem;
}
.editor-styles-wrapper .wp-block-flylighter-hint.callout[data-hint-variant=info] {
  --callout-accent: #2563eb;
  --callout-icon: var(--tabler-icon-info-circle);
}
.editor-styles-wrapper .wp-block-flylighter-hint.callout[data-hint-variant=success] {
  --callout-accent: #15803d;
  --callout-icon: var(--tabler-icon-success-circle);
}
.editor-styles-wrapper .wp-block-flylighter-hint.callout[data-hint-variant=warning] {
  --callout-accent: #b45309;
  --callout-icon: var(--tabler-icon-warning-triangle);
}
.editor-styles-wrapper .wp-block-flylighter-hint.callout[data-hint-variant=danger] {
  --callout-accent: #b91c1c;
  --callout-icon: var(--tabler-icon-error-circle);
}

/* =========================================================================
   Testimonials Grid + Cards
   ========================================================================= */
.tjf-testimonials-wrapper {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* -------------------------------------------------------------------
   Masonry Grid (CSS columns)
   ------------------------------------------------------------------- */
.tjf-testimonials-grid {
  display: flex;
  gap: 1.25rem;
}
@media screen and (max-width: 639px) {
  .tjf-testimonials-grid {
    flex-direction: column;
  }
}

.tjf-testimonials-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 639px) {
  .tjf-testimonials-col {
    display: contents;
  }
}

/* -------------------------------------------------------------------
   Card
   ------------------------------------------------------------------- */
.tjf-testimonial-card {
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid var(--border-muted, #e4e4e7);
  border-radius: 0.75rem;
}

.tjf-testimonial-card--video {
  padding: 0;
  overflow: hidden;
  border: none;
  background: #000;
  border-radius: 0.75rem;
}

[data-theme=dark] .tjf-testimonial-card {
  border-color: transparent;
  --text-primary: #18181b;
  --text-secondary: #52525b;
  --text-muted: #a1a1aa;
  --text-link: #4f46e5;
}

[data-theme=dark] .tjf-testimonial-card--video {
  border-color: transparent;
}

/* -------------------------------------------------------------------
   Card Header (avatar + name/title)
   ------------------------------------------------------------------- */
.tjf-testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.tjf-testimonial-avatar {
  width: 48px !important;
  height: 48px !important;
  border-radius: 9999px !important;
  object-fit: cover;
  flex-shrink: 0;
}

.tjf-testimonial-avatar--initials {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e0e7ff;
  color: #4338ca;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}

[data-theme=dark] .tjf-testimonial-avatar--initials {
  background: #e0e7ff;
  color: #4338ca;
}

.tjf-testimonial-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.tjf-testimonial-name {
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.3;
  color: var(--text-primary, #18181b);
}

.tjf-testimonial-title {
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--text-secondary, #52525b);
  margin-top: 1px;
}

/* -------------------------------------------------------------------
   Card Body (testimonial text)
   ------------------------------------------------------------------- */
.tjf-testimonial-body {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary, #52525b);
}
.tjf-testimonial-body p {
  margin: 0 0 0.75rem 0;
}
.tjf-testimonial-body p:last-child {
  margin-bottom: 0;
}
.tjf-testimonial-body mark {
  background: #fde68a;
  color: inherit;
  padding: 1px 2px;
  border-radius: 2px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.tjf-testimonial-show-more {
  display: inline;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  color: var(--text-link, #4f46e5);
  font-weight: 500;
}
.tjf-testimonial-show-more:hover {
  text-decoration: underline;
}

[data-theme=dark] .tjf-testimonial-show-more {
  color: #4f46e5;
}

/* -------------------------------------------------------------------
   Attached Images
   ------------------------------------------------------------------- */
.tjf-testimonial-images {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tjf-testimonial-images img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  border: 1px solid var(--border-subtle, #f4f4f5);
}

/* -------------------------------------------------------------------
   Video Badge
   ------------------------------------------------------------------- */
.tjf-testimonial-video-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: #eef2ff;
  color: #4338ca;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.tjf-testimonial-video-badge:hover {
  background: #e0e7ff;
}
.tjf-testimonial-video-badge svg {
  flex-shrink: 0;
}

[data-theme=dark] .tjf-testimonial-video-badge {
  background: #eef2ff;
  color: #4338ca;
}
[data-theme=dark] .tjf-testimonial-video-badge:hover {
  background: #e0e7ff;
}

/* -------------------------------------------------------------------
   Video Thumbnail
   ------------------------------------------------------------------- */
.tjf-testimonial-video-thumb {
  display: block;
  position: relative;
  margin-top: 0.75rem;
  padding: 0;
  border: none;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  background: none;
  width: 100%;
}
.tjf-testimonial-video-thumb img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  transition: filter 0.2s ease;
}
.tjf-testimonial-video-thumb:hover img {
  filter: brightness(0.85);
}
.tjf-testimonial-card--video .tjf-testimonial-video-thumb {
  margin-top: 0;
  border-radius: 0;
}
.tjf-testimonial-card--video .tjf-testimonial-video-thumb img {
  border-radius: 0;
}

.tjf-testimonial-video-play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0.75rem;
  color: #ffffff;
  background: transparent;
  border-radius: 0.5rem;
  pointer-events: none;
}
.tjf-testimonial-card--video .tjf-testimonial-video-play {
  border-radius: 0;
}
.tjf-testimonial-video-play svg {
  transform-origin: center;
  transition: transform 0.2s ease;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.4));
}
.tjf-testimonial-video-thumb:hover .tjf-testimonial-video-play svg {
  transform: scale(1.12);
}

.tjf-testimonial-video-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 1.5rem 1rem 0.75rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: #ffffff;
  text-align: left;
  pointer-events: none;
}

.tjf-testimonial-video-name {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
}

.tjf-testimonial-video-title {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* -------------------------------------------------------------------
   Load More Button
   ------------------------------------------------------------------- */
.tjf-testimonials-load-more-wrapper {
  text-align: center;
  margin-top: 1.5rem;
}

.tjf-testimonials-load-more {
  min-width: 160px;
}

/* -------------------------------------------------------------------
   Video Lightbox
   ------------------------------------------------------------------- */
.tjf-testimonial-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.tjf-testimonial-lightbox.is-open {
  display: flex;
}

.tjf-testimonial-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
  z-index: 10001;
}
.tjf-testimonial-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.tjf-testimonial-lightbox-content {
  --tjf-lightbox-aspect-ratio: 16/9;
  position: relative;
  width: min(100%, (100vh - ) * var(--tjf-lightbox-aspect-ratio));
  max-width: 1200px;
  aspect-ratio: var(--tjf-lightbox-aspect-ratio);
}

.tjf-testimonial-lightbox-iframe,
.tjf-testimonial-lightbox-video {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0.5rem;
  object-fit: contain;
}

/* =========================================================================
   Products Pricing Grid + Cards

   Uses CSS subgrid so card sections (title, description, pricing, etc.)
   align across cards in the same row. Each card spans 5 row tracks.
   ========================================================================= */
.tjf-products-container {
  container-type: inline-size;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.tjf-products-grid {
  display: grid;
  column-gap: 1.25rem;
  row-gap: 1.25rem;
  grid-auto-rows: auto;
  grid-template-columns: 1fr;
}

@container (min-width: 640px) {
  .tjf-products-grid--cols-2,
  .tjf-products-grid--cols-3,
  .tjf-products-grid--cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@container (min-width: 900px) {
  .tjf-products-grid--cols-3,
  .tjf-products-grid--cols-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@container (min-width: 1100px) {
  .tjf-products-grid--cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* -------------------------------------------------------------------
   Product Card (subgrid: 5 row tracks)

   Row 1: Title
   Row 2: Description (collapses when empty)
   Row 3: Pricing
   Row 4: Features-wrap or CTA (depends on button_position)
   Row 5: CTA or Features-wrap
   ------------------------------------------------------------------- */
.tjf-product-card {
  position: relative;
  display: grid;
  grid-row: span 5;
  grid-template-rows: subgrid;
  row-gap: 0;
  padding: 1.75rem;
  background: #18181b;
  border: 1px solid #3f3f46;
  border-radius: 0.75rem;
  color: #f4f4f5;
  overflow: hidden;
}

[data-theme=light] .tjf-product-card {
  background: #18181b;
  border-color: #3f3f46;
  color: #f4f4f5;
}

/* -------------------------------------------------------------------
   Ribbon
   ------------------------------------------------------------------- */
.tjf-product-card__ribbon {
  position: absolute;
  top: 20px;
  right: -35px;
  width: 140px;
  text-align: center;
  padding: 0.25rem 0;
  background: #6366f1;
  color: #fff;
  font-family: "Figtree", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transform: rotate(45deg);
  z-index: 1;
}

/* -------------------------------------------------------------------
   Title (Row 1)
   ------------------------------------------------------------------- */
.tjf-product-card__title {
  font-family: "Figtree", sans-serif;
  font-size: 1.6rem !important;
  font-weight: 700;
  color: #fff;
  margin: 0 !important;
  line-height: 2rem !important;
  align-self: start;
}
.tjf-product-card--has-ribbon .tjf-product-card__title {
  padding-right: 35px;
}

/* -------------------------------------------------------------------
   Description (Row 2) — collapses to 0 height when empty
   ------------------------------------------------------------------- */
.tjf-product-card__description {
  font-size: 1rem;
  color: #d4d4d8;
  line-height: 1.5;
  align-self: start;
}
.tjf-product-card__description p {
  margin: 0.5rem 0 0;
  color: #d4d4d8 !important;
  margin-block-start: 1rem !important;
  margin-block-end: 1rem !important;
}
.tjf-product-card__description:empty {
  display: block;
  margin: 0;
  padding: 0;
}

/* -------------------------------------------------------------------
   Pricing (Row 3)
   ------------------------------------------------------------------- */
.tjf-product-card__pricing {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0.75rem 0 0;
  padding-bottom: 0.75rem;
}

.tjf-product-card__original-price {
  font-size: 1.5rem;
  font-weight: 500;
  color: #d4d4d8;
  text-decoration: line-through;
}

.tjf-product-card__price {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.tjf-product-card__period {
  font-size: 1rem;
  color: #d4d4d8;
  display: block;
  width: 100%;
  margin-top: 0.25rem;
}

/* -------------------------------------------------------------------
   Features Wrap (Row 4 or 5, depending on button_position)
   ------------------------------------------------------------------- */
.tjf-product-card__features-wrap {
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

.tjf-product-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.tjf-product-card .tjf-product-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #3f3f46;
  font-size: 1rem !important;
  color: #e4e4e7 !important;
  line-height: 1.5 !important;
}
.tjf-product-card .tjf-product-card__feature a {
  color: #e4e4e7 !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.tjf-product-card .tjf-product-card__feature a:hover {
  color: #fff !important;
}
.tjf-product-card .tjf-product-card__feature:last-child {
  border-bottom: none;
}

.tjf-product-card__check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #818cf8;
  margin-top: 1px;
}

/* -------------------------------------------------------------------
   Inline Formatting (bold, italic, strikethrough, highlight)
   ------------------------------------------------------------------- */
.tjf-product-card mark {
  background: #6366f1;
  color: #fff;
  padding: 0.05em 0.35em;
  border-radius: 0.25rem;
}

/* -------------------------------------------------------------------
   CTA Button (Row 4 or 5, depending on button_position)
   ------------------------------------------------------------------- */
.tjf-product-card__cta {
  width: 100%;
  justify-content: center;
  align-self: end;
}

.tjf-products-grid--button-top .tjf-product-card__cta {
  align-self: start;
  margin: 1rem 0 1rem 0;
}

.tjf-product-card__cta-placeholder {
  display: block;
}

/**
 * Landing Headline Component
 *
 * Font sizes match the Elementor animated-headline settings:
 *   >1024:  6rem / 6rem line-height
 *   ≤1024:  4.5rem / 5rem
 *   ≤767:   3.75rem / 4.5rem
 *   ≤600:   3rem / 3.5rem
 *
 * Variants only affect highlight color (e.g. formula = yellow in dark mode).
 * Font sizes are the same across all variants.
 */
h1.landing-headline, h2.landing-headline, h3.landing-headline, h4.landing-headline, h5.landing-headline, h6.landing-headline {
  font-family: "Figtree", sans-serif;
  font-weight: 700 !important;
  font-size: 6rem !important;
  line-height: 6rem !important;
  text-align: center;
  color: var(--text-primary, #18181b);
  margin: 2rem 0 4rem 0;
  letter-spacing: -0.02em;
}
h1.landing-headline.landing-headline--left, h2.landing-headline.landing-headline--left, h3.landing-headline.landing-headline--left, h4.landing-headline.landing-headline--left, h5.landing-headline.landing-headline--left, h6.landing-headline.landing-headline--left {
  text-align: left;
}
h1.landing-headline.landing-headline--right, h2.landing-headline.landing-headline--right, h3.landing-headline.landing-headline--right, h4.landing-headline.landing-headline--right, h5.landing-headline.landing-headline--right, h6.landing-headline.landing-headline--right {
  text-align: right;
}
h1.landing-headline mark, h2.landing-headline mark, h3.landing-headline mark, h4.landing-headline mark, h5.landing-headline mark, h6.landing-headline mark {
  background: transparent;
  color: inherit;
  text-transform: uppercase;
  font-weight: 900 !important;
  position: relative;
  padding: 0;
  margin: 0;
}
h1.landing-headline mark::before, h2.landing-headline mark::before, h3.landing-headline mark::before, h4.landing-headline mark::before, h5.landing-headline mark::before, h6.landing-headline mark::before {
  content: "";
  position: absolute;
  left: -0.08em;
  right: -0.08em;
  top: 50%;
  height: 0.5em;
  transform: translateY(-40%);
  border-radius: 4px;
  z-index: -1;
  pointer-events: none;
  background: #fde047;
  filter: blur(6px);
  opacity: 1;
}
[data-theme=dark] h1.landing-headline mark, [data-theme=dark] h2.landing-headline mark, [data-theme=dark] h3.landing-headline mark, [data-theme=dark] h4.landing-headline mark, [data-theme=dark] h5.landing-headline mark, [data-theme=dark] h6.landing-headline mark {
  color: #fff;
  text-shadow: 0 0 20px rgba(129, 140, 248, 0.6), 0 0 40px rgba(129, 140, 248, 0.3), 0 0 80px rgba(129, 140, 248, 0.15);
}
[data-theme=dark] h1.landing-headline mark::before, [data-theme=dark] h2.landing-headline mark::before, [data-theme=dark] h3.landing-headline mark::before, [data-theme=dark] h4.landing-headline mark::before, [data-theme=dark] h5.landing-headline mark::before, [data-theme=dark] h6.landing-headline mark::before {
  display: none;
}
[data-theme=dark] h1.landing-headline.landing-headline--formula mark, [data-theme=dark] h2.landing-headline.landing-headline--formula mark, [data-theme=dark] h3.landing-headline.landing-headline--formula mark, [data-theme=dark] h4.landing-headline.landing-headline--formula mark, [data-theme=dark] h5.landing-headline.landing-headline--formula mark, [data-theme=dark] h6.landing-headline.landing-headline--formula mark {
  text-shadow: 0 0 20px rgba(255, 253, 60, 0.5), 0 0 40px rgba(255, 253, 60, 0.25);
}
@media screen and (max-width: 1024px) {
  h1.landing-headline, h2.landing-headline, h3.landing-headline, h4.landing-headline, h5.landing-headline, h6.landing-headline {
    font-size: 4.5rem !important;
    line-height: 5rem !important;
    margin: 2rem 0 2rem 0;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  h1.landing-headline, h2.landing-headline, h3.landing-headline, h4.landing-headline, h5.landing-headline, h6.landing-headline {
    font-size: 3.75rem !important;
    line-height: 4.5rem !important;
    margin: 2rem 0 1.5rem 0;
  }
}
@media screen and (max-width: 600px) {
  h1.landing-headline, h2.landing-headline, h3.landing-headline, h4.landing-headline, h5.landing-headline, h6.landing-headline {
    font-size: 3rem !important;
    line-height: 3.5rem !important;
    margin: 0.5rem 0 1rem 0;
  }
}

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