/* [project]/app/globals.css [app-client] (css) */
@layer properties {
  @supports (((-webkit-hyphens: none)) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
    *, :before, :after, ::backdrop {
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-space-y-reverse: 0;
      --tw-border-style: solid;
      --tw-leading: initial;
      --tw-font-weight: initial;
      --tw-tracking: initial;
      --tw-shadow: 0 0 #0000;
      --tw-shadow-color: initial;
      --tw-shadow-alpha: 100%;
      --tw-inset-shadow: 0 0 #0000;
      --tw-inset-shadow-color: initial;
      --tw-inset-shadow-alpha: 100%;
      --tw-ring-color: initial;
      --tw-ring-shadow: 0 0 #0000;
      --tw-inset-ring-color: initial;
      --tw-inset-ring-shadow: 0 0 #0000;
      --tw-ring-inset: initial;
      --tw-ring-offset-width: 0px;
      --tw-ring-offset-color: #fff;
      --tw-ring-offset-shadow: 0 0 #0000;
      --tw-outline-style: solid;
      --tw-blur: initial;
      --tw-brightness: initial;
      --tw-contrast: initial;
      --tw-grayscale: initial;
      --tw-hue-rotate: initial;
      --tw-invert: initial;
      --tw-opacity: initial;
      --tw-saturate: initial;
      --tw-sepia: initial;
      --tw-drop-shadow: initial;
      --tw-drop-shadow-color: initial;
      --tw-drop-shadow-alpha: 100%;
      --tw-drop-shadow-size: initial;
      --tw-ease: initial;
    }
  }
}

@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
    "Noto Color Emoji";
    --font-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New",
    monospace;
    --color-amber-50: #fffbeb;
    --color-amber-300: #ffd236;
    --color-amber-400: #fcbb00;
    --color-amber-500: #f99c00;
    --color-amber-700: #b75000;
    --color-black: #000;
    --color-white: #fff;
    --spacing: .25rem;
    --container-md: 28rem;
    --container-3xl: 48rem;
    --text-xs: .75rem;
    --text-xs--line-height: calc(1 / .75);
    --text-sm: .875rem;
    --text-sm--line-height: calc(1.25 / .875);
    --text-xl: 1.25rem;
    --text-xl--line-height: calc(1.75 / 1.25);
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --tracking-wide: .025em;
    --shadow-sm: 0 1px 3px 0 #0000001a, 0 1px 2px -1px #0000001a;
    --shadow-lg: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
    --ease-in-out: cubic-bezier(.4, 0, .2, 1);
    --animate-spin: spin 1s linear infinite;
    --default-transition-duration: .15s;
    --default-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  }

  @supports (color: lab(0% 0 0)) {
    :root, :host {
      --color-amber-50: lab(98.6252% -.635922 8.42309);
      --color-amber-300: lab(86.4156% 6.13147 78.3961);
      --color-amber-400: lab(80.1641% 16.6016 99.2089);
      --color-amber-500: lab(72.7183% 31.8672 97.9407);
      --color-amber-700: lab(47.2709% 42.9082 69.2966);
    }
  }
}

@layer base {
  button:where([data-slot]) {
    appearance: none;
    color: inherit;
    cursor: pointer;
    font: inherit;
    background: none;
    border: 0;
  }
}

@layer components;

@layer utilities {
  .collapse {
    visibility: collapse;
  }

  .invisible {
    visibility: hidden;
  }

  .visible {
    visibility: visible;
  }

  .absolute {
    position: absolute;
  }

  .fixed {
    position: fixed;
  }

  .relative {
    position: relative;
  }

  .static {
    position: static;
  }

  .sticky {
    position: sticky;
  }

  .inset-0 {
    inset: 0;
  }

  .top-3 {
    top: calc(var(--spacing) * 3);
  }

  .right-3 {
    right: calc(var(--spacing) * 3);
  }

  .isolate {
    isolation: isolate;
  }

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

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

  .col-6 {
    grid-column: 6;
  }

  .col-12 {
    grid-column: 12;
  }

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

  .container {
    width: 100%;
  }

  @media (min-width: 40rem) {
    .container {
      max-width: 40rem;
    }
  }

  @media (min-width: 48rem) {
    .container {
      max-width: 48rem;
    }
  }

  @media (min-width: 64rem) {
    .container {
      max-width: 64rem;
    }
  }

  @media (min-width: 80rem) {
    .container {
      max-width: 80rem;
    }
  }

  @media (min-width: 96rem) {
    .container {
      max-width: 96rem;
    }
  }

  .m-1 {
    margin: var(--spacing);
  }

  .my-4 {
    margin-block: calc(var(--spacing) * 4);
  }

  .mt-1 {
    margin-top: var(--spacing);
  }

  .mt-2 {
    margin-top: calc(var(--spacing) * 2);
  }

  .mt-3 {
    margin-top: calc(var(--spacing) * 3);
  }

  .mt-4 {
    margin-top: calc(var(--spacing) * 4);
  }

  .mt-6 {
    margin-top: calc(var(--spacing) * 6);
  }

  .mt-8 {
    margin-top: calc(var(--spacing) * 8);
  }

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

  .block {
    display: block;
  }

  .contents {
    display: contents;
  }

  .flex {
    display: flex;
  }

  .grid {
    display: grid;
  }

  .hidden {
    display: none;
  }

  .inline {
    display: inline;
  }

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

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

  .table {
    display: table;
  }

  .table-cell {
    display: table-cell;
  }

  .table-row {
    display: table-row;
  }

  .h-1 {
    height: var(--spacing);
  }

  .h-4 {
    height: calc(var(--spacing) * 4);
  }

  .h-8 {
    height: calc(var(--spacing) * 8);
  }

  .h-9 {
    height: calc(var(--spacing) * 9);
  }

  .h-10 {
    height: calc(var(--spacing) * 10);
  }

  .h-12 {
    height: calc(var(--spacing) * 12);
  }

  .h-20 {
    height: calc(var(--spacing) * 20);
  }

  .h-\[26px\] {
    height: 26px;
  }

  .h-full {
    height: 100%;
  }

  .h-px {
    height: 1px;
  }

  .max-h-\[90vh\] {
    max-height: 90vh;
  }

  .min-h-24 {
    min-height: calc(var(--spacing) * 24);
  }

  .min-h-72 {
    min-height: calc(var(--spacing) * 72);
  }

  .w-4 {
    width: calc(var(--spacing) * 4);
  }

  .w-8 {
    width: calc(var(--spacing) * 8);
  }

  .w-9 {
    width: calc(var(--spacing) * 9);
  }

  .w-10 {
    width: calc(var(--spacing) * 10);
  }

  .w-20 {
    width: calc(var(--spacing) * 20);
  }

  .w-28 {
    width: calc(var(--spacing) * 28);
  }

  .w-32 {
    width: calc(var(--spacing) * 32);
  }

  .w-\[26px\] {
    width: 26px;
  }

  .w-fit {
    width: fit-content;
  }

  .w-full {
    width: 100%;
  }

  .w-px {
    width: 1px;
  }

  .max-w-3xl {
    max-width: var(--container-3xl);
  }

  .max-w-md {
    max-width: var(--container-md);
  }

  .min-w-0 {
    min-width: 0;
  }

  .min-w-36 {
    min-width: calc(var(--spacing) * 36);
  }

  .min-w-44 {
    min-width: calc(var(--spacing) * 44);
  }

  .flex-1 {
    flex: 1;
  }

  .shrink {
    flex-shrink: 1;
  }

  .shrink-0 {
    flex-shrink: 0;
  }

  .grow {
    flex-grow: 1;
  }

  .caption-bottom {
    caption-side: bottom;
  }

  .transform {
    transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
  }

  .animate-spin {
    animation: var(--animate-spin);
  }

  .cursor-grab {
    cursor: grab;
  }

  .resize {
    resize: both;
  }

  .auto-rows-min {
    grid-auto-rows: min-content;
  }

  .grid-cols-\[28px_minmax\(0\,1fr\)_auto\] {
    grid-template-columns: 28px minmax(0, 1fr) auto;
  }

  .grid-cols-\[minmax\(0\,1fr\)_auto\] {
    grid-template-columns: minmax(0, 1fr) auto;
  }

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

  .flex-wrap {
    flex-wrap: wrap;
  }

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

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

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

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

  .justify-center {
    justify-content: center;
  }

  .justify-end {
    justify-content: flex-end;
  }

  .gap-1 {
    gap: var(--spacing);
  }

  .gap-1\.5 {
    gap: calc(var(--spacing) * 1.5);
  }

  .gap-2 {
    gap: calc(var(--spacing) * 2);
  }

  .gap-3 {
    gap: calc(var(--spacing) * 3);
  }

  .gap-4 {
    gap: calc(var(--spacing) * 4);
  }

  .gap-5 {
    gap: calc(var(--spacing) * 5);
  }

  .gap-6 {
    gap: calc(var(--spacing) * 6);
  }

  :where(.space-y-2 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
  }

  :where(.space-y-3 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 3) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse)));
  }

  :where(.space-y-4 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
  }

  :where(.space-y-5 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 5) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 5) * calc(1 - var(--tw-space-y-reverse)));
  }

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

  .overflow-hidden {
    overflow: hidden;
  }

  .overflow-x-auto {
    overflow-x: auto;
  }

  .overflow-y-auto {
    overflow-y: auto;
  }

  .overflow-y-scroll {
    overflow-y: scroll;
  }

  .rounded {
    border-radius: .25rem;
  }

  .rounded-full {
    border-radius: 3.40282e38px;
  }

  .rounded-lg {
    border-radius: var(--radius);
  }

  .rounded-md {
    border-radius: calc(var(--radius) - 2px);
  }

  .rounded-none {
    border-radius: 0;
  }

  .rounded-sm {
    border-radius: calc(var(--radius) - 4px);
  }

  .border {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }

  .border-0 {
    border-style: var(--tw-border-style);
    border-width: 0;
  }

  .border-2 {
    border-style: var(--tw-border-style);
    border-width: 2px;
  }

  .border-b {
    border-bottom-style: var(--tw-border-style);
    border-bottom-width: 1px;
  }

  .border-dashed {
    --tw-border-style: dashed;
    border-style: dashed;
  }

  .border-\[\#16803c\] {
    border-color: #16803c;
  }

  .border-\[\#b42318\] {
    border-color: #b42318;
  }

  .border-\[var\(--ink\)\] {
    border-color: var(--ink);
  }

  .border-amber-300 {
    border-color: var(--color-amber-300);
  }

  .border-destructive\/30 {
    border-color: var(--destructive);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .border-destructive\/30 {
      border-color: color-mix(in oklab, var(--destructive) 30%, transparent);
    }
  }

  .border-input {
    border-color: var(--input);
  }

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

  .border-transparent {
    border-color: #0000;
  }

  .bg-\[var\(--ink\)\] {
    background-color: var(--ink);
  }

  .bg-\[var\(--paper\)\] {
    background-color: var(--paper);
  }

  .bg-amber-50 {
    background-color: var(--color-amber-50);
  }

  .bg-amber-50\/70 {
    background-color: #fffbebb3;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-amber-50\/70 {
      background-color: color-mix(in oklab, var(--color-amber-50) 70%, transparent);
    }
  }

  .bg-amber-500 {
    background-color: var(--color-amber-500);
  }

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

  .bg-black\/40 {
    background-color: #0006;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-black\/40 {
      background-color: color-mix(in oklab, var(--color-black) 40%, transparent);
    }
  }

  .bg-border {
    background-color: var(--border);
  }

  .bg-card {
    background-color: var(--card);
  }

  .bg-destructive {
    background-color: var(--destructive);
  }

  .bg-destructive\/10 {
    background-color: var(--destructive);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-destructive\/10 {
      background-color: color-mix(in oklab, var(--destructive) 10%, transparent);
    }
  }

  .bg-muted\/20 {
    background-color: var(--muted);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-muted\/20 {
      background-color: color-mix(in oklab, var(--muted) 20%, transparent);
    }
  }

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

  .bg-primary\/5 {
    background-color: var(--primary);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-primary\/5 {
      background-color: color-mix(in oklab, var(--primary) 5%, transparent);
    }
  }

  .bg-secondary {
    background-color: var(--secondary);
  }

  .bg-transparent {
    background-color: #0000;
  }

  .bg-white {
    background-color: var(--color-white);
  }

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

  .p-1 {
    padding: var(--spacing);
  }

  .p-1\.5 {
    padding: calc(var(--spacing) * 1.5);
  }

  .p-2 {
    padding: calc(var(--spacing) * 2);
  }

  .p-3 {
    padding: calc(var(--spacing) * 3);
  }

  .p-4 {
    padding: calc(var(--spacing) * 4);
  }

  .p-5 {
    padding: calc(var(--spacing) * 5);
  }

  .p-6 {
    padding: calc(var(--spacing) * 6);
  }

  .px-1 {
    padding-inline: var(--spacing);
  }

  .px-2 {
    padding-inline: calc(var(--spacing) * 2);
  }

  .px-3 {
    padding-inline: calc(var(--spacing) * 3);
  }

  .px-4 {
    padding-inline: calc(var(--spacing) * 4);
  }

  .px-6 {
    padding-inline: calc(var(--spacing) * 6);
  }

  .px-\[18px\] {
    padding-inline: 18px;
  }

  .py-0\.5 {
    padding-block: calc(var(--spacing) * .5);
  }

  .py-1 {
    padding-block: var(--spacing);
  }

  .py-2 {
    padding-block: calc(var(--spacing) * 2);
  }

  .py-3 {
    padding-block: calc(var(--spacing) * 3);
  }

  .py-14 {
    padding-block: calc(var(--spacing) * 14);
  }

  .pt-0 {
    padding-top: 0;
  }

  .pr-12 {
    padding-right: calc(var(--spacing) * 12);
  }

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

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

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

  .align-middle {
    vertical-align: middle;
  }

  .font-mono {
    font-family: var(--font-mono);
  }

  .text-sm {
    font-size: var(--text-sm);
    line-height: var(--tw-leading, var(--text-sm--line-height));
  }

  .text-xl {
    font-size: var(--text-xl);
    line-height: var(--tw-leading, var(--text-xl--line-height));
  }

  .text-xs {
    font-size: var(--text-xs);
    line-height: var(--tw-leading, var(--text-xs--line-height));
  }

  .text-\[11px\] {
    font-size: 11px;
  }

  .leading-6 {
    --tw-leading: calc(var(--spacing) * 6);
    line-height: calc(var(--spacing) * 6);
  }

  .leading-none {
    --tw-leading: 1;
    line-height: 1;
  }

  .font-\[var\(--f-ui\)\] {
    --tw-font-weight: var(--f-ui);
    font-weight: var(--f-ui);
  }

  .font-bold {
    --tw-font-weight: var(--font-weight-bold);
    font-weight: var(--font-weight-bold);
  }

  .font-medium {
    --tw-font-weight: var(--font-weight-medium);
    font-weight: var(--font-weight-medium);
  }

  .font-semibold {
    --tw-font-weight: var(--font-weight-semibold);
    font-weight: var(--font-weight-semibold);
  }

  .tracking-\[0\.14em\] {
    --tw-tracking: .14em;
    letter-spacing: .14em;
  }

  .tracking-\[0\.16em\] {
    --tw-tracking: .16em;
    letter-spacing: .16em;
  }

  .tracking-wide {
    --tw-tracking: var(--tracking-wide);
    letter-spacing: var(--tracking-wide);
  }

  .whitespace-nowrap {
    white-space: nowrap;
  }

  .text-\[\#16803c\] {
    color: #16803c;
  }

  .text-\[\#b42318\] {
    color: #b42318;
  }

  .text-\[var\(--ink\)\] {
    color: var(--ink);
  }

  .text-\[var\(--paper\)\] {
    color: var(--paper);
  }

  .text-amber-700 {
    color: var(--color-amber-700);
  }

  .text-black {
    color: var(--color-black);
  }

  .text-card-foreground {
    color: var(--card-foreground);
  }

  .text-destructive {
    color: var(--destructive);
  }

  .text-foreground {
    color: var(--foreground);
  }

  .text-muted-foreground {
    color: var(--muted-foreground);
  }

  .text-muted-foreground\/60 {
    color: var(--muted-foreground);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .text-muted-foreground\/60 {
      color: color-mix(in oklab, var(--muted-foreground) 60%, transparent);
    }
  }

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

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

  .text-secondary-foreground {
    color: var(--secondary-foreground);
  }

  .text-white {
    color: var(--color-white);
  }

  .capitalize {
    text-transform: capitalize;
  }

  .lowercase {
    text-transform: lowercase;
  }

  .uppercase {
    text-transform: uppercase;
  }

  .italic {
    font-style: italic;
  }

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

  .decoration-2 {
    text-decoration-thickness: 2px;
  }

  .underline-offset-4 {
    text-underline-offset: 4px;
  }

  .opacity-0 {
    opacity: 0;
  }

  .shadow {
    --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, #0000001a), 0 1px 2px -1px var(--tw-shadow-color, #0000001a);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-\[0_0_0_1px_rgba\(245\,158\,11\,0\.35\)\] {
    --tw-shadow: 0 0 0 1px var(--tw-shadow-color, #f59e0b59);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-none {
    --tw-shadow: 0 0 #0000;
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-xl {
    --tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, #0000001a), 0 8px 10px -6px var(--tw-shadow-color, #0000001a);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-xs {
    --tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, #0000000d);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

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

  .ring-offset-background {
    --tw-ring-offset-color: var(--background);
  }

  .outline, .outline-1 {
    outline-style: var(--tw-outline-style);
    outline-width: 1px;
  }

  .-outline-offset-1 {
    outline-offset: calc(1px * -1);
  }

  .outline-amber-400 {
    outline-color: var(--color-amber-400);
  }

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

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

  .transition {
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .transition-\[color\,box-shadow\] {
    transition-property: color, box-shadow;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .transition-colors {
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .ease-in-out {
    --tw-ease: var(--ease-in-out);
    transition-timing-function: var(--ease-in-out);
  }

  .outline-none {
    --tw-outline-style: none;
    outline-style: none;
  }

  .\[shm\:r\] {
    shm: r;
  }

  .placeholder\:text-muted-foreground::placeholder {
    color: var(--muted-foreground);
  }

  @media (hover: hover) {
    .hover\:border-\[var\(--accent\)\]:hover {
      border-color: var(--accent);
    }
  }

  @media (hover: hover) {
    .hover\:border-muted-foreground\/40:hover {
      border-color: var(--muted-foreground);
    }

    @supports (color: color-mix(in lab, red, red)) {
      .hover\:border-muted-foreground\/40:hover {
        border-color: color-mix(in oklab, var(--muted-foreground) 40%, transparent);
      }
    }
  }

  @media (hover: hover) {
    .hover\:bg-\[\#16803c\]:hover {
      background-color: #16803c;
    }
  }

  @media (hover: hover) {
    .hover\:bg-\[\#b42318\]:hover {
      background-color: #b42318;
    }
  }

  @media (hover: hover) {
    .hover\:bg-\[var\(--accent\)\]:hover {
      background-color: var(--accent);
    }
  }

  @media (hover: hover) {
    .hover\:bg-\[var\(--ink\)\]:hover {
      background-color: var(--ink);
    }
  }

  @media (hover: hover) {
    .hover\:bg-accent:hover {
      background-color: var(--accent);
    }
  }

  @media (hover: hover) {
    .hover\:bg-amber-50\/70:hover {
      background-color: #fffbebb3;
    }

    @supports (color: color-mix(in lab, red, red)) {
      .hover\:bg-amber-50\/70:hover {
        background-color: color-mix(in oklab, var(--color-amber-50) 70%, transparent);
      }
    }
  }

  @media (hover: hover) {
    .hover\:bg-amber-400:hover {
      background-color: var(--color-amber-400);
    }
  }

  @media (hover: hover) {
    .hover\:bg-destructive\/90:hover {
      background-color: var(--destructive);
    }

    @supports (color: color-mix(in lab, red, red)) {
      .hover\:bg-destructive\/90:hover {
        background-color: color-mix(in oklab, var(--destructive) 90%, transparent);
      }
    }
  }

  @media (hover: hover) {
    .hover\:bg-muted\/40:hover {
      background-color: var(--muted);
    }

    @supports (color: color-mix(in lab, red, red)) {
      .hover\:bg-muted\/40:hover {
        background-color: color-mix(in oklab, var(--muted) 40%, transparent);
      }
    }
  }

  @media (hover: hover) {
    .hover\:bg-muted\/50:hover {
      background-color: var(--muted);
    }

    @supports (color: color-mix(in lab, red, red)) {
      .hover\:bg-muted\/50:hover {
        background-color: color-mix(in oklab, var(--muted) 50%, transparent);
      }
    }
  }

  @media (hover: hover) {
    .hover\:bg-primary\/90:hover {
      background-color: var(--primary);
    }

    @supports (color: color-mix(in lab, red, red)) {
      .hover\:bg-primary\/90:hover {
        background-color: color-mix(in oklab, var(--primary) 90%, transparent);
      }
    }
  }

  @media (hover: hover) {
    .hover\:bg-secondary\/80:hover {
      background-color: var(--secondary);
    }

    @supports (color: color-mix(in lab, red, red)) {
      .hover\:bg-secondary\/80:hover {
        background-color: color-mix(in oklab, var(--secondary) 80%, transparent);
      }
    }
  }

  @media (hover: hover) {
    .hover\:text-\[var\(--paper\)\]:hover {
      color: var(--paper);
    }
  }

  @media (hover: hover) {
    .hover\:text-accent-foreground:hover {
      color: var(--accent-foreground);
    }
  }

  @media (hover: hover) {
    .hover\:text-foreground:hover {
      color: var(--foreground);
    }
  }

  @media (hover: hover) {
    .hover\:underline:hover {
      text-decoration-line: underline;
    }
  }

  .focus-visible\:border-ring:focus-visible {
    border-color: var(--ring);
  }

  .focus-visible\:ring-0:focus-visible {
    --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .focus-visible\:ring-2:focus-visible {
    --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .focus-visible\:ring-\[3px\]:focus-visible {
    --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .focus-visible\:ring-ring:focus-visible {
    --tw-ring-color: var(--ring);
  }

  .focus-visible\:ring-ring\/50:focus-visible {
    --tw-ring-color: var(--ring);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .focus-visible\:ring-ring\/50:focus-visible {
      --tw-ring-color: color-mix(in oklab, var(--ring) 50%, transparent);
    }
  }

  .focus-visible\:ring-offset-2:focus-visible {
    --tw-ring-offset-width: 2px;
    --tw-ring-offset-shadow: var(--tw-ring-inset, ) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  }

  .focus-visible\:outline-none:focus-visible {
    --tw-outline-style: none;
    outline-style: none;
  }

  .disabled\:pointer-events-none:disabled {
    pointer-events: none;
  }

  .disabled\:cursor-not-allowed:disabled {
    cursor: not-allowed;
  }

  .disabled\:opacity-50:disabled {
    opacity: .5;
  }

  @media (min-width: 40rem) {
    .sm\:block {
      display: block;
    }
  }

  @media (min-width: 48rem) {
    .md\:col-6 {
      grid-column: 6;
    }
  }

  @media (min-width: 48rem) {
    .md\:col-span-2 {
      grid-column: span 2 / span 2;
    }
  }

  @media (min-width: 48rem) {
    .md\:grid-cols-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (min-width: 64rem) {
    .lg\:col-12 {
      grid-column: 12;
    }
  }

  @media (min-width: 64rem) {
    .lg\:block {
      display: block;
    }
  }

  @media (min-width: 64rem) {
    .lg\:flex {
      display: flex;
    }
  }

  @media (min-width: 64rem) {
    .lg\:flex-col {
      flex-direction: column;
    }
  }

  .\[\&_svg\]\:pointer-events-none svg {
    pointer-events: none;
  }

  .\[\&_svg\]\:shrink-0 svg {
    flex-shrink: 0;
  }

  .\[\&_tr\]\:border-b tr {
    border-bottom-style: var(--tw-border-style);
    border-bottom-width: 1px;
  }

  .\[\&_tr\:last-child\]\:border-0 tr:last-child {
    border-style: var(--tw-border-style);
    border-width: 0;
  }
}

:root {
  --paper: #f7f6f2;
  --paper-2: #efe9dc;
  --paper-deep: #e2dacb;
  --ink: #222;
  --ink-2: #333;
  --ink-soft: #666;
  --ink-mute: #999;
  --ink-faint: #2222226b;
  --rule: #222;
  --rule-soft: #2222222e;
  --rule-dot: #999;
  --accent: #dd3418;
  --accent-deep: #b3260f;
  --accent-soft: #dd341812;
  --hi: #dd341824;
  --scroll-bg: #fdefed;
  --grid-cell: #2222220a;
  --f-wordmark: "Playfair Display", Georgia, serif;
  --f-display: "Newsreader", Georgia, serif;
  --f-body: "Newsreader", Georgia, serif;
  --f-serif: "Newsreader", Georgia, serif;
  --f-sans: "Hanken Grotesk", system-ui, sans-serif;
  --f-ui: "Hanken Grotesk", system-ui, sans-serif;
  --f-section: "Oswald", "Hanken Grotesk", sans-serif;
  --f-byline: "Newsreader", Georgia, serif;
  --f-mono: ui-monospace, "SF Mono", Menlo, monospace;
  --f-hebrew: "Frank Ruhl Libre", "David Libre", "SBL Hebrew", serif;
  --f-hebrew-script: "Playpen Sans Hebrew", "Frank Ruhl Libre", cursive;
  --measure: 1240px;
  --background: var(--paper);
  --foreground: var(--ink);
  --card: var(--paper);
  --card-foreground: var(--ink);
  --popover: var(--paper);
  --popover-foreground: var(--ink);
  --primary: var(--ink);
  --primary-foreground: var(--paper);
  --secondary: var(--paper-2);
  --secondary-foreground: var(--ink);
  --muted: var(--paper-2);
  --muted-foreground: var(--ink-soft);
  --accent-foreground: var(--paper);
  --destructive: #b42318;
  --border: var(--rule-soft);
  --input: var(--rule-soft);
  --ring: var(--accent);
  --radius: .5rem;
}

* {
  box-sizing: border-box;
}

html, body {
  background: var(--paper);
  min-height: 100%;
  color: var(--ink);
  font-family: var(--f-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.6;
}

body {
  overflow-x: hidden;
}

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

button, input, textarea {
  font: inherit;
}

button:where(:not([data-slot])) {
  color: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
}

code {
  font-family: var(--f-mono);
  font-size: .9em;
}

::selection {
  background: var(--hi);
  color: var(--ink);
}

.console-block[contenteditable="true"][data-empty="true"]:before {
  color: var(--muted-foreground);
  content: attr(data-placeholder);
  pointer-events: none;
}

.b-wrap, .c-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

.b-wrap-wide, .c-wrap-wide {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 32px;
}

.b-wrap-narrow, .c-wrap-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
}

.b-mono, .c-display {
  font-family: var(--f-display);
  letter-spacing: 0;
  font-weight: 700;
}

.b-label, .c-section, .c-kicker {
  font-family: var(--f-ui);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
}

.b-meta, .c-meta, .c-byline {
  font-family: var(--f-ui);
  letter-spacing: .04em;
  color: var(--ink-soft);
  font-size: 11px;
}

.b-deck, .c-deck, .c-display-it {
  font-family: var(--f-body);
  color: var(--ink-2);
  font-style: italic;
}

.b-heb, .c-heb {
  font-family: var(--f-hebrew);
  direction: rtl;
  unicode-bidi: isolate;
  font-weight: 500;
}

.b-rule, .c-rule {
  border: 0;
  border-top: 1.5px solid var(--rule);
  margin: 0;
}

.b-rule2, .c-rule-thick {
  border: 0;
  border-top: 4px double var(--rule);
  margin: 0;
}

.b-rules-soft {
  border: 0;
  border-top: 1px solid var(--rule-soft);
  margin: 0;
}

.b-stamp {
  border: 2px solid var(--ink);
  background: var(--paper);
  font-family: var(--f-display);
  text-align: center;
  flex-direction: column;
  padding: 6px 14px 8px;
  display: inline-flex;
  position: relative;
}

.b-stamp:before, .b-stamp:after {
  content: "";
  background: var(--ink);
  height: 1px;
  position: absolute;
  left: 4px;
  right: 4px;
}

.b-stamp:before {
  top: 2px;
}

.b-stamp:after {
  bottom: 2px;
}

.b-stamp-main {
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.05;
}

.b-stamp-bot {
  border-top: 1px solid var(--rule);
  color: var(--ink-soft);
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-top: 4px;
  padding-top: 4px;
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
}

.c-wordmark {
  font-family: var(--f-display);
  letter-spacing: .02em;
  text-transform: uppercase;
  font-weight: 700;
}

.b-card, .paper-cell {
  background: var(--paper);
  border: 1.5px solid var(--rule);
  transition: background .15s, transform .15s;
  position: relative;
}

.b-card:hover, .paper-cell:hover {
  background: var(--paper-2);
}

.b-cell {
  background: var(--paper);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 24px;
}

.b-numeral {
  font-family: var(--f-display);
  letter-spacing: 0;
  color: var(--ink);
  font-size: clamp(80px, 14vw, 200px);
  font-weight: 700;
  line-height: .85;
}

.b-numeral-sm {
  font-family: var(--f-display);
  letter-spacing: 0;
  word-break: break-word;
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 700;
  line-height: .9;
}

.b-numeral-xs {
  font-family: var(--f-display);
  letter-spacing: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: .9;
}

.b-navlink, .c-navlink {
  color: var(--ink);
  font-family: var(--f-ui);
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 0;
  font-size: 11.5px;
  font-weight: 700;
  position: relative;
}

.b-navlink:before, .c-navlink:before {
  content: "";
  background: var(--accent);
  width: 4px;
  height: 4px;
  transition: transform .18s ease-out;
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%)scale(0);
}

.b-navlink:hover:before, .b-navlink.is-active:before, .c-navlink:hover:before, .c-navlink.is-active:before {
  transform: translateY(-50%)scale(1);
}

.b-btn, .c-btn {
  border: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--f-ui);
  letter-spacing: .14em;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 12px 18px;
  font-size: 11px;
  font-weight: 700;
  transition: all .12s;
  display: inline-flex;
}

.b-btn:hover, .c-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.b-btn-ghost, .c-btn-ghost {
  background: var(--paper);
  color: var(--ink);
}

.b-btn-ghost:hover, .c-btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
}

.b-tag, .c-tag {
  border: 1px solid var(--rule);
  color: var(--ink-soft);
  font-family: var(--f-ui);
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 8px;
  font-size: 9px;
  font-weight: 700;
  display: inline-flex;
}

.b-tab {
  color: var(--ink-soft);
  font-family: var(--f-ui);
  letter-spacing: .14em;
  text-transform: uppercase;
  border-bottom: 3px solid #0000;
  margin-bottom: -2px;
  margin-right: 28px;
  padding: 14px 0;
  font-size: 11px;
  font-weight: 700;
}

.b-tab:hover, .b-tab.is-active {
  color: var(--ink);
}

.b-tab.is-active {
  border-bottom-color: var(--accent);
}

.b-modal-bg {
  z-index: 200;
  background: #0e0e0c8c;
  justify-content: center;
  align-items: center;
  padding: 16px;
  animation: .18s ease-out bFade;
  display: flex;
  position: fixed;
  inset: 0;
}

.b-modal {
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--accent);
  max-width: calc(100vw - 32px);
  animation: .24s cubic-bezier(.2, .7, .2, 1) bModal;
}

.b-anno {
  background: var(--paper);
  border: 1px solid var(--rule);
  font-family: var(--f-ui);
  padding: 16px;
  font-size: 12px;
  line-height: 1.55;
  transition: box-shadow .18s, transform .18s;
}

.b-anno:hover {
  box-shadow: -4px 4px 0 var(--accent-soft);
}

.b-anno.is-active {
  border-color: var(--accent);
  box-shadow: -4px 4px 0 var(--accent);
}

.b-mark {
  background: var(--hi);
  border-bottom: 2px solid var(--accent);
  cursor: pointer;
  padding: 0 2px;
  transition: background .15s;
}

.b-mark:hover, .b-mark.is-active {
  background: var(--accent);
  border-bottom-color: var(--ink);
  color: var(--paper);
}

.b-mark-suggest {
  text-decoration: underline;
  -webkit-text-decoration-color: var(--accent);
  text-decoration-color: var(--accent);
  text-underline-offset: 4px;
  background: none;
  text-decoration-style: dashed;
}

.b-bubble {
  background: var(--ink);
  border: 1.5px solid var(--ink);
  box-shadow: 4px 4px 0 var(--accent);
  color: var(--paper);
  font-family: var(--f-ui);
  letter-spacing: .06em;
  text-transform: uppercase;
  z-index: 50;
  padding: 0;
  font-size: 11px;
  font-weight: 700;
  animation: .18s cubic-bezier(.2, .7, .2, 1) bBubble;
  display: flex;
  position: absolute;
}

.b-bubble button {
  color: var(--paper);
  border-right: 1px solid #fff3;
  padding: 9px 14px;
}

.b-bubble button:last-child {
  border-right: 0;
}

.b-bubble button:hover {
  background: var(--accent);
}

.b-diff-del {
  color: var(--ink-faint);
  text-decoration: line-through;
}

.b-diff-add {
  background: var(--hi);
  color: var(--accent-deep);
  padding: 0 2px;
}

.b-field {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  color: var(--ink);
  font-family: var(--f-body);
  resize: vertical;
  outline: none;
  width: 100%;
  padding: 10px 12px;
  font-size: 15px;
}

.b-field:focus {
  border-color: var(--accent);
}

.b-ornament {
  color: var(--accent);
  font-family: var(--f-display);
  letter-spacing: .4em;
  -webkit-user-select: none;
  user-select: none;
  display: inline-block;
}

.b-page-enter, .b-fade {
  animation: .32s cubic-bezier(.2, .7, .2, 1) bFade;
}

@keyframes bFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes bModal {
  from {
    opacity: 0;
    transform: translate(-6px, 6px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes bBubble {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.grid-paper {
  border-top: 1.5px solid var(--rule);
  border-left: 1.5px solid var(--rule);
  gap: 0;
  display: grid;
}

.grid-paper > * {
  border: 0;
  border-right: 1.5px solid var(--rule);
  border-bottom: 1.5px solid var(--rule);
}

.article-body {
  font-family: var(--f-body);
  font-size: 18.5px;
  line-height: 1.7;
}

.article-body p {
  margin: 0 0 22px;
}

.article-body h2, .article-body h3 {
  border-bottom: 1.5px solid var(--rule);
  color: var(--ink);
  font-family: var(--f-display);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 44px 0 18px;
  padding-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
}

.article-body h2:before, .article-body h3:before {
  color: var(--accent);
  content: "// ";
}

.article-body .lede {
  color: var(--ink-2);
  font-size: 22px;
  line-height: 1.55;
}

.article-body .summary, .article-body .source-line, .article-body .reading-line {
  background: var(--paper-2);
  border-left: 3px solid var(--accent);
  color: var(--ink-2);
  padding: 12px 16px;
}

.sticky-tools {
  background: var(--paper);
  border-bottom: 1.5px solid var(--rule);
  z-index: 18;
  position: sticky;
  top: 124px;
}

.home-split, .cms-split, .prayer-layout, .section-group, .siddur-toc-layout, .footer-grid {
  display: grid;
}

.home-split {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .75fr);
  gap: 56px;
}

.cms-split {
  grid-template-columns: minmax(0, 1fr) minmax(280px, .65fr);
  gap: 42px;
}

.prayer-layout, .b-kaddish-body {
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
  gap: 48px;
}

.section-group {
  grid-template-columns: minmax(220px, .75fr) minmax(0, 1.8fr);
  gap: 56px;
}

.siddur-toc-layout {
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: start;
  gap: 36px;
}

.footer-grid {
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.photo-slot {
  background: var(--paper-deep);
  border: 1.5px solid var(--rule);
  min-height: 220px;
  display: block;
  position: relative;
  overflow: hidden;
}

.photo-slot img {
  filter: contrast(1.05) grayscale(.15);
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.photo-label {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--f-ui);
  letter-spacing: .14em;
  text-transform: uppercase;
  z-index: 2;
  padding: 4px 8px;
  font-size: 9px;
  font-weight: 700;
  position: absolute;
  bottom: 10px;
  left: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--rule);
  border: 3px solid var(--paper);
}

@media (max-width: 900px) {
  .b-wrap, .b-wrap-wide, .b-wrap-narrow, .c-wrap, .c-wrap-wide, .c-wrap-narrow {
    padding-left: 22px;
    padding-right: 22px;
  }

  .b-article-grid, .b-hide-sm, .b-article-margin {
    display: none !important;
  }

  .b-article-body {
    max-width: none !important;
    padding-left: 28px !important;
  }

  .sticky-tools {
    position: static;
  }

  .prayer-layout aside, .siddur-toc-layout aside {
    max-height: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    position: static !important;
    overflow: visible !important;
  }
}

@media (max-width: 720px) {
  html, body {
    font-size: 16px;
  }

  .b-wrap, .b-wrap-wide, .b-wrap-narrow, .c-wrap, .c-wrap-wide, .c-wrap-narrow {
    padding-left: 16px;
    padding-right: 16px;
  }

  .b-stack-sm {
    grid-template-columns: 1fr !important;
  }

  .b-half-sm {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .b-stack-sm > .b-divide-right {
    border-bottom: 1.5px solid var(--rule) !important;
    border-right: 0 !important;
  }

  .b-stack-sm > .b-divide-left {
    border-left: 0 !important;
    border-top: 1.5px solid var(--rule) !important;
  }

  .b-mast-row {
    gap: 12px !important;
    padding: 18px 16px !important;
  }

  .b-mast-nav {
    gap: 18px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .b-stamp-main {
    font-size: 18px;
  }

  .b-stamp-bot {
    font-size: 8px;
  }

  .b-cell {
    padding: 18px !important;
  }
}

@media (max-width: 480px) {
  .b-half-sm, .footer-grid {
    grid-template-columns: 1fr !important;
  }
}

img {
  max-width: 100%;
  display: block;
}

.t-wrap {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 40px;
}

.t-wrap-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.t-rule {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 0;
}

.t-rule-sf {
  border: 0;
  border-top: 1px solid var(--rule-soft);
  margin: 0;
}

.t-dotted {
  border: 0;
  border-top: 1.5px dotted var(--rule-dot);
  margin: 0;
}

.t-dotted-red {
  border: 0;
  border-top: 1.5px dotted var(--accent);
  margin: 0;
}

.t-badge {
  font-family: var(--f-section);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 3px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.1;
  display: inline-block;
}

.t-badge-lg {
  font-size: 15px;
}

.t-logotype {
  font-family: var(--f-section);
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--ink);
  margin: 0;
  font-weight: 700;
  line-height: .9;
}

.t-meta {
  font-family: var(--f-sans);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-size: 12px;
}

.t-byline {
  font-family: var(--f-byline);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  font-variant: small-caps;
  font-size: 14px;
  font-weight: 700;
}

.t-dek {
  font-family: var(--f-sans);
  color: var(--ink-soft);
  font-weight: 400;
  line-height: 1.4;
}

.t-headline {
  font-family: var(--f-display);
  color: var(--ink);
  letter-spacing: -.01em;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  padding-bottom: 2px;
  font-weight: 400;
  line-height: 1.02;
  transition: background-size .28s;
  display: inline;
}

a:hover .t-headline, .t-headline-hover:hover .t-headline {
  background-size: 100% 2px;
}

.t-continue {
  font-family: var(--f-sans);
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
  font-size: 16px;
  transition: color .15s, border-color .15s;
}

.t-continue:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.t-seeall {
  font-family: var(--f-sans);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
}

.t-seeall:hover {
  text-underline-offset: 3px;
  text-decoration: underline;
}

.t-figure {
  filter: none;
  background: linear-gradient(135deg, #d8d4cb 0%, #b9b4a9 45%, #8f8a80 100%);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.t-figure:after {
  content: "";
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: repeating-linear-gradient(115deg, #ffffff0d 0 2px, #0000 2px 5px), radial-gradient(120% 90% at 30% 20%, #ffffff38, #0000 60%);
  position: absolute;
  inset: 0;
}

.t-figure img {
  object-fit: cover;
  border-radius: 5px;
  width: 100%;
  height: 100%;
}

.t-figure-glyph {
  color: #22222247;
  font-family: var(--f-sans);
  letter-spacing: .22em;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  position: absolute;
  inset: 0;
}

.t-figure-glyph svg {
  opacity: .5;
  width: 26px;
  height: 26px;
  margin-right: 10px;
}

.t-figure--red {
  background: linear-gradient(135deg, #e7a99b, #dd3418);
}

.t-figure--red img {
  filter: grayscale() sepia() hue-rotate(-18deg) saturate(4) contrast(.95);
}

.t-btn {
  font-family: var(--f-sans);
  letter-spacing: .02em;
  background: var(--paper-deep);
  color: var(--ink);
  border: 0;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 600;
  transition: background .15s, color .15s, filter .15s;
  display: inline-flex;
}

.t-btn:hover {
  filter: brightness(.94);
}

.t-btn--primary {
  background: var(--accent);
  color: #fff;
}

.t-btn--primary:hover {
  background: var(--accent-deep);
  filter: none;
  color: #fff;
}

.t-btn--ink {
  background: var(--ink);
  color: var(--paper);
}

.t-btn--ink:hover {
  filter: none;
  background: #000;
}

.t-cal-nav {
  background: var(--paper-deep);
  width: 40px;
  height: 40px;
  color: var(--ink);
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  transition: background .15s;
  display: inline-flex;
}

.t-cal-nav:not(:disabled):hover {
  background: var(--ink);
  color: var(--paper);
}

.t-redbox {
  border: 1.5px solid var(--accent);
  background: var(--paper);
  padding: 22px 22px 26px;
}

.t-iconbtn {
  width: 44px;
  height: 44px;
  color: var(--ink);
  justify-content: center;
  align-items: center;
  transition: color .15s;
  display: inline-flex;
}

.t-iconbtn:hover {
  color: var(--accent);
}

.t-dropcap:first-letter {
  float: left;
  font-family: var(--f-display);
  color: var(--ink);
  padding: 6px 10px 0 0;
  font-size: 5.4em;
  font-weight: 400;
  line-height: .72;
}

.t-fade {
  animation: .36s cubic-bezier(.2, .7, .2, 1) tFade;
}

@keyframes tFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.t-menu-item:hover .t-logotype {
  color: var(--accent) !important;
  -webkit-text-stroke-color: var(--accent) !important;
}

.t-guide-toggle {
  background: var(--paper-deep);
  border-radius: 5px;
  display: inline-flex;
  overflow: hidden;
}

.t-guide-toggle button {
  font-family: var(--f-sans);
  color: var(--ink-soft);
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  transition: background .15s, color .15s;
}

.t-guide-toggle button.is-active {
  background: var(--ink);
  color: var(--paper);
}

.t-locked-mask {
  z-index: 4;
  pointer-events: none;
  background: repeating-linear-gradient(45deg, #ffffff17 0 1px, #0000 1px 7px), #222222bf;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0;
}

.t-progress-check {
  z-index: 6;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  transition: background .15s, border-color .15s;
  display: flex;
  position: absolute;
  bottom: 14px;
  right: 14px;
}

.t-progress-check:hover {
  border-color: var(--accent);
}

.t-progress-check.is-done {
  background: var(--accent);
  border-color: var(--accent);
}

.t-progress-check svg {
  color: #fff;
  opacity: 0;
  width: 15px;
  height: 15px;
  transition: opacity .15s;
}

.t-progress-check.is-done svg {
  opacity: 1;
}

.t-ctl {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  display: inline-flex;
}

::-webkit-scrollbar {
  width: 10px;
  height: 12px;
}

::-webkit-scrollbar-thumb {
  background: var(--rule-soft);
  border: 3px solid var(--paper);
  border-radius: 6px;
}

::-webkit-scrollbar-track {
  background: none;
}

.t-heb {
  font-family: var(--f-hebrew);
  direction: rtl;
  unicode-bidi: isolate;
  font-weight: 500;
}

.t-dirbox {
  border: 1px solid var(--rule);
  background: var(--paper);
  flex-direction: column;
  min-height: 260px;
  padding: 20px 22px 24px;
  display: flex;
}

.t-auth-page {
  padding-top: 56px;
  padding-bottom: 80px;
}

.t-auth-shell {
  border: 1.5px solid var(--rule);
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--accent-soft);
}

.t-auth-intro {
  border-bottom: 1px solid var(--rule);
  padding: 34px 34px 28px;
}

.t-auth-intro h1 {
  font-family: var(--f-display);
  letter-spacing: 0;
  margin: 18px 0 14px;
  font-size: clamp(42px, 8vw, 72px);
  font-weight: 400;
  line-height: .94;
}

.t-auth-intro .t-dek {
  max-width: 560px;
  margin: 0;
  font-size: 17px;
}

.t-auth-tabs {
  border-bottom: 1.5px solid var(--rule);
  grid-template-columns: 1fr 1fr;
  display: grid;
}

.t-auth-tabs button {
  font-family: var(--f-section);
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 700;
}

.t-auth-tabs button:first-child {
  border-right: 1px solid var(--rule);
}

.t-auth-tabs button.is-active {
  background: var(--ink);
  color: var(--paper);
}

.t-auth-form {
  flex-direction: column;
  gap: 18px;
  padding: 28px 34px 34px;
  display: flex;
}

.t-auth-grid {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  display: grid;
}

.t-auth-field {
  flex-direction: column;
  gap: 7px;
  display: flex;
}

.t-auth-field span, .t-auth-question > span {
  color: var(--ink-soft);
  font-family: var(--f-sans);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.t-auth-field input, .t-auth-field select {
  appearance: none;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  color: var(--ink);
  font-family: var(--f-sans);
  border-radius: 5px;
  outline: none;
  width: 100%;
  padding: 11px 12px;
  font-size: 16px;
}

.t-auth-field input:focus, .t-auth-field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.t-auth-question {
  flex-direction: column;
  gap: 9px;
  display: flex;
}

.t-auth-segment {
  background: var(--paper-deep);
  border-radius: 5px;
  align-self: flex-start;
  display: inline-flex;
  overflow: hidden;
}

.t-auth-segment button {
  color: var(--ink-soft);
  font-family: var(--f-sans);
  padding: 8px 15px;
  font-size: 13px;
  font-weight: 700;
}

.t-auth-segment button.is-active {
  background: var(--ink);
  color: var(--paper);
}

.t-auth-submit {
  align-self: flex-start;
  min-width: 138px;
  margin-top: 4px;
}

.t-auth-submit:disabled {
  cursor: wait;
  opacity: .68;
}

.t-auth-message {
  border-top: 1px solid var(--rule-soft);
  font-family: var(--f-sans);
  padding: 18px 34px;
  font-size: 15px;
  line-height: 1.45;
}

.t-auth-message.is-ok {
  color: var(--accent-deep);
}

.t-auth-message.is-error {
  color: #8f1d12;
}

.t-anno {
  border: 1px solid var(--rule-soft);
  background: var(--paper);
  padding: 15px 16px;
  transition: border-color .18s, box-shadow .18s;
}

.t-anno:hover {
  border-color: var(--ink);
}

.t-anno.is-active {
  border-color: var(--accent);
  box-shadow: -3px 3px 0 var(--hi);
}

.t-mark {
  background: var(--hi);
  border-bottom: 2px solid var(--accent);
  cursor: pointer;
  padding: 0 1px;
}

.t-mark.is-active {
  background: var(--accent);
  color: #fff;
}

@media (max-width: 1180px) {
  .t-top-grid {
    grid-template-columns: 1fr 1.5fr !important;
  }

  .t-rail-right {
    border-top: 1px solid var(--rule);
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 28px;
    padding-top: 28px;
    border-left: 0 !important;
    padding-left: 0 !important;
    display: grid !important;
  }
}

@media (max-width: 1080px) {
  .t-wrap {
    padding: 0 28px;
  }

  .t-browse-rail {
    display: none !important;
  }

  .t-article-grid {
    grid-template-columns: minmax(0, 680px) !important;
  }

  .t-article-margin {
    display: none !important;
  }

  .t-kad-body {
    grid-template-columns: 1fr !important;
  }

  .t-kad-glossary {
    margin-top: 24px;
    max-height: 420px !important;
    position: static !important;
  }

  .t-mast-menu {
    left: 20px !important;
  }

  .t-mast-actions {
    right: 20px !important;
  }
}

@media (max-width: 860px) {
  .t-wrap {
    padding: 0 20px;
  }

  html, body {
    font-size: 17px;
  }

  .t-top-grid {
    grid-template-columns: 1fr !important;
  }

  .t-rail-left {
    border-bottom: 1px solid var(--rule);
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-right: 0 !important;
    padding-right: 0 !important;
  }

  .t-rail-right {
    grid-template-columns: 1fr 1fr;
  }

  .t-feature {
    order: -1;
    padding: 0 !important;
  }

  .t-excerpt {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .t-excerpt > div:nth-child(2) {
    display: none;
  }

  .t-triple {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .t-triple > article {
    border-bottom: 1px solid var(--rule-soft);
    border-right: 0 !important;
    padding: 22px 0 !important;
  }

  .t-dir-grid, .t-foot-cols {
    grid-template-columns: 1fr 1fr !important;
  }

  .t-section-hero {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .t-section-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .t-section-logo {
    font-size: 44px !important;
  }

  .t-kad-control-row {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 16px 20px !important;
  }

  .t-hide-sm {
    display: none !important;
  }

  .t-cal-strip {
    grid-template-columns: 1fr !important;
  }

  .t-cal-strip > div, .t-cal-strip > button {
    border-bottom: 1px solid var(--rule-soft);
    border-right: 0 !important;
  }

  .t-cal-strip > :last-child {
    border-bottom: 0;
  }

  .t-donate-grid, .t-pww-grid {
    grid-template-columns: 1fr !important;
  }

  .t-letter-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }

  .t-word-grid, .t-choice-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .t-auth-grid {
    grid-template-columns: 1fr !important;
  }

  .t-auth-intro, .t-auth-form, .t-auth-message {
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media (max-width: 560px) {
  .t-wrap {
    padding: 0 16px;
  }

  .t-rail-right {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .t-rail-right > div:first-child {
    border-bottom: 1px solid var(--rule-soft);
    margin-bottom: 24px;
    padding-bottom: 24px;
  }

  .t-dir-grid, .t-foot-cols, .t-section-grid {
    grid-template-columns: 1fr !important;
  }

  .t-browse-rack {
    grid-auto-columns: minmax(240px, 64vw) !important;
  }

  .t-browse-col {
    padding: 0 20px !important;
  }

  .t-letter-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .t-word-grid {
    grid-template-columns: 1fr !important;
  }
}

.t-foot-link {
  color: var(--ink-soft);
  transition: color .15s;
}

.t-foot-link:hover {
  color: var(--accent);
}

@property --tw-rotate-x {
  syntax: "*";
  inherits: false
}

@property --tw-rotate-y {
  syntax: "*";
  inherits: false
}

@property --tw-rotate-z {
  syntax: "*";
  inherits: false
}

@property --tw-skew-x {
  syntax: "*";
  inherits: false
}

@property --tw-skew-y {
  syntax: "*";
  inherits: false
}

@property --tw-space-y-reverse {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}

@property --tw-leading {
  syntax: "*";
  inherits: false
}

@property --tw-font-weight {
  syntax: "*";
  inherits: false
}

@property --tw-tracking {
  syntax: "*";
  inherits: false
}

@property --tw-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-shadow-color {
  syntax: "*";
  inherits: false
}

@property --tw-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}

@property --tw-inset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-inset-shadow-color {
  syntax: "*";
  inherits: false
}

@property --tw-inset-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}

@property --tw-ring-color {
  syntax: "*";
  inherits: false
}

@property --tw-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-inset-ring-color {
  syntax: "*";
  inherits: false
}

@property --tw-inset-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-ring-inset {
  syntax: "*";
  inherits: false
}

@property --tw-ring-offset-width {
  syntax: "<length>";
  inherits: false;
  initial-value: 0;
}

@property --tw-ring-offset-color {
  syntax: "*";
  inherits: false;
  initial-value: #fff;
}

@property --tw-ring-offset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-outline-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}

@property --tw-blur {
  syntax: "*";
  inherits: false
}

@property --tw-brightness {
  syntax: "*";
  inherits: false
}

@property --tw-contrast {
  syntax: "*";
  inherits: false
}

@property --tw-grayscale {
  syntax: "*";
  inherits: false
}

@property --tw-hue-rotate {
  syntax: "*";
  inherits: false
}

@property --tw-invert {
  syntax: "*";
  inherits: false
}

@property --tw-opacity {
  syntax: "*";
  inherits: false
}

@property --tw-saturate {
  syntax: "*";
  inherits: false
}

@property --tw-sepia {
  syntax: "*";
  inherits: false
}

@property --tw-drop-shadow {
  syntax: "*";
  inherits: false
}

@property --tw-drop-shadow-color {
  syntax: "*";
  inherits: false
}

@property --tw-drop-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}

@property --tw-drop-shadow-size {
  syntax: "*";
  inherits: false
}

@property --tw-ease {
  syntax: "*";
  inherits: false
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

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