.uth-page {
      --uth-page-primary: #D96C8A;
      --uth-page-blush: #F8E8ED;
      --uth-page-background: #FFF9FA;
      --uth-page-surface: #FFFFFF;
      --uth-page-text: #2B2326;
      --uth-page-text-secondary: #74666B;
      --uth-page-border: #EEDDE2;
      --uth-page-accent: #B94F6F;
      --uth-page-heading-font: "DM Serif Display", Georgia, serif;
      --uth-page-body-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --uth-page-content-width: 1220px;
      --uth-page-reading-width: 780px;
      --uth-page-sidebar-width: 270px;
      --uth-page-sticky-offset: 116px;
      --uth-page-scroll-offset: 132px;
      --uth-page-radius-small: 10px;
      --uth-page-radius-medium: 14px;
      --uth-page-feature-radius: 16px;
      --uth-page-shadow-soft: 0 18px 48px rgba(73, 45, 54, .055);
      --uth-page-transition: 180ms ease;

      position: relative;
      isolation: isolate;
      width: 100%;
      min-width: 0;
      overflow: clip;
      color: var(--uth-page-text-secondary);
      background: var(--uth-page-background);
      font-family: var(--uth-page-body-font);
      font-size: clamp(16.5px, 1.15vw, 17.5px);
      font-weight: 400;
      line-height: 1.76;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    .uth-page *,
    .uth-page *::before,
    .uth-page *::after {
      box-sizing: border-box;
    }

    .uth-page a {
      color: var(--uth-page-accent);
      text-decoration-color: color-mix(in srgb, var(--uth-page-accent) 45%, transparent);
      text-decoration-thickness: 1px;
      text-underline-offset: 3px;
      transition:
        color var(--uth-page-transition),
        text-decoration-color var(--uth-page-transition),
        background-color var(--uth-page-transition),
        border-color var(--uth-page-transition);
    }

    .uth-page a:hover {
      color: var(--uth-page-text);
      text-decoration-color: var(--uth-page-primary);
    }

    .uth-page a:focus-visible {
      outline: 3px solid color-mix(in srgb, var(--uth-page-primary) 35%, transparent);
      outline-offset: 4px;
      border-radius: 4px;
    }

    .uth-page-shell {
      width: min(
        calc(100% - clamp(36px, 7vw, 88px)),
        var(--uth-page-content-width)
      );
      margin-inline: auto;
    }

    .uth-page-hero {
      padding-block:
        clamp(58px, 8vw, 104px)
        clamp(52px, 6.5vw, 82px);
      border-bottom: 1px solid var(--uth-page-border);
    }

    .uth-page-hero-inner {
      width: 100%;
    }

    .uth-page-breadcrumb {
      margin-bottom: clamp(30px, 4vw, 44px);
    }

    .uth-page-breadcrumb-list {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 7px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .uth-page-breadcrumb-item {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: var(--uth-page-text-secondary);
      font-size: 13px;
      font-weight: 500;
      line-height: 1.4;
    }

    .uth-page-breadcrumb-link {
      display: inline-flex;
      align-items: center;
      min-height: 44px;
      color: var(--uth-page-text-secondary);
      text-decoration: none;
    }

    .uth-page-breadcrumb-link:hover {
      color: var(--uth-page-accent);
    }

    .uth-page-breadcrumb-separator {
      width: 14px;
      height: 14px;
      flex: 0 0 14px;
      color: color-mix(in srgb, var(--uth-page-text-secondary) 62%, transparent);
      fill: none;
      stroke: currentColor;
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .uth-page-eyebrow {
      margin: 0 0 12px;
      color: var(--uth-page-accent);
      font-size: 12px;
      font-weight: 600;
      line-height: 1.3;
      letter-spacing: .105em;
      text-transform: uppercase;
    }

    .uth-page-title {
      width: 100%;
      margin: 0;
      color: var(--uth-page-text);
      font-family: var(--uth-page-heading-font);
      font-size: clamp(44px, 6vw, 64px);
      font-weight: 400;
      line-height: 1.02;
      letter-spacing: -.03em;
    }

    .uth-page-deck {
      width: 100%;
      margin: 22px 0 0;
      color: var(--uth-page-text-secondary);
      font-size: clamp(17px, 1.55vw, 19px);
      line-height: 1.72;
    }

    .uth-page-meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 9px 16px;
      margin-top: 27px;
      color: var(--uth-page-text-secondary);
      font-size: 13px;
      font-weight: 500;
      line-height: 1.5;
    }

    .uth-page-meta-item {
      display: inline-flex;
      align-items: center;
      gap: 7px;
    }

    .uth-page-meta-icon {
      width: 16px;
      height: 16px;
      flex: 0 0 16px;
      color: var(--uth-page-primary);
      fill: none;
      stroke: currentColor;
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .uth-page-meta-divider {
      width: 1px;
      height: 15px;
      background: var(--uth-page-border);
    }


    .uth-page-feature {
      margin-top: clamp(34px, 5vw, 54px);
    }

    .uth-page-feature-frame {
      position: relative;
      overflow: hidden;
      width: 100%;
      aspect-ratio: 16 / 6.6;
      min-height: 250px;
      background: var(--uth-page-surface);
      border: 1px solid var(--uth-page-border);
      border-radius: var(--uth-page-feature-radius);
      box-shadow: var(--uth-page-shadow-soft);
    }

    .uth-page-feature-art {
      display: block;
      width: 100%;
      height: 100%;
    }

    .uth-page-feature-caption {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 11px;
      color: var(--uth-page-text-secondary);
      font-size: 12.5px;
      font-weight: 500;
      line-height: 1.5;
    }

    .uth-page-feature-caption-icon {
      width: 14px;
      height: 14px;
      flex: 0 0 14px;
      color: var(--uth-page-primary);
      fill: none;
      stroke: currentColor;
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .uth-page-layout {
      display: grid;
      grid-template-columns:
        minmax(220px, var(--uth-page-sidebar-width))
        minmax(0, 1fr);
      gap: clamp(52px, 7vw, 96px);
      align-items: start;
      padding-block:
        clamp(58px, 7vw, 90px)
        clamp(78px, 9vw, 120px);
    }

    .uth-page-sidebar {
      position: sticky;
      top: var(--uth-page-sticky-offset);
      min-width: 0;
      max-height: calc(100dvh - var(--uth-page-sticky-offset) - 24px);
      overflow-y: auto;
      overscroll-behavior-y: contain;
      scrollbar-width: none;
      -ms-overflow-style: none;
      padding: 3px 8px 3px 3px;
    }

    .uth-page-sidebar:focus-visible {
      outline: 2px solid var(--uth-page-primary);
      outline-offset: 5px;
      border-radius: var(--uth-page-radius-small);
    }

    .uth-page-sidebar::-webkit-scrollbar {
      display: none;
    }


    .uth-page-sidebar-section + .uth-page-sidebar-section {
      margin-top: 30px;
      padding-top: 27px;
      border-top: 1px solid var(--uth-page-border);
    }

    .uth-page-sidebar-title {
      margin: 0 0 12px;
      color: var(--uth-page-text);
      font-size: 13px;
      font-weight: 600;
      line-height: 1.4;
      letter-spacing: .065em;
      text-transform: uppercase;
    }

    .uth-page-toc-list,
    .uth-page-related-list,
    .uth-page-recent-list {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .uth-page-toc-list {
      display: grid;
      gap: 2px;
    }

    .uth-page-toc-link {
      position: relative;
      display: flex;
      align-items: center;
      min-height: 44px;
      padding: 8px 8px 8px 14px;
      color: var(--uth-page-text-secondary);
      border-left: 1px solid var(--uth-page-border);
      font-size: 14.5px;
      font-weight: 500;
      line-height: 1.45;
      text-decoration: none;
    }

    .uth-page-toc-link::before {
      content: "";
      position: absolute;
      top: 50%;
      left: -1px;
      width: 2px;
      height: 0;
      background: var(--uth-page-primary);
      transform: translateY(-50%);
      transition: height var(--uth-page-transition);
    }

    .uth-page-toc-link:hover,
    .uth-page-toc-link:focus-visible {
      color: var(--uth-page-accent);
      background: color-mix(in srgb, var(--uth-page-blush) 45%, transparent);
      text-decoration: none;
    }

    .uth-page-toc-link:hover::before,
    .uth-page-toc-link:focus-visible::before {
      height: 22px;
    }


    .uth-page-toc-item--sub .uth-page-toc-link {
      min-height: 40px;
      padding-left: 28px;
      color: color-mix(
        in srgb,
        var(--uth-page-text-secondary) 92%,
        var(--uth-page-text)
      );
      font-size: 13.5px;
      font-weight: 500;
    }

    .uth-page-toc-item--sub .uth-page-toc-link::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 14px;
      width: 6px;
      height: 1px;
      background: var(--uth-page-border);
      transform: translateY(-50%);
    }

    .uth-page-toc-more {
      margin-top: 4px;
    }

    .uth-page-toc-more-list {
      display: grid;
      gap: 2px;
      margin: 2px 0 0;
      padding: 0;
      list-style: none;
    }

    .uth-page-toc-toggle {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      min-height: 44px;
      margin: 4px 0 0;
      padding: 8px 8px 8px 14px;
      color: var(--uth-page-accent);
      border-left: 1px solid var(--uth-page-border);
      border-radius: 0;
      font-family: var(--uth-page-body-font);
      font-size: 13.5px;
      font-weight: 600;
      line-height: 1.4;
      list-style: none;
      cursor: pointer;
      user-select: none;
      transition:
        color var(--uth-page-transition),
        background-color var(--uth-page-transition);
    }

    .uth-page-toc-toggle::-webkit-details-marker {
      display: none;
    }

    .uth-page-toc-toggle:hover {
      color: var(--uth-page-text);
      background: color-mix(in srgb, var(--uth-page-blush) 44%, transparent);
    }

    .uth-page-toc-toggle-icon {
      width: 15px;
      height: 15px;
      flex: 0 0 15px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.7;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: transform var(--uth-page-transition);
    }

    .uth-page-toc-more[open] .uth-page-toc-toggle-icon {
      transform: rotate(180deg);
    }

    .uth-page-toc-more[open] > .uth-page-toc-toggle {
      display: none;
    }

    .uth-page-toc-collapse {
      display: none;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      width: 100%;
      min-height: 44px;
      margin: 6px 0 0;
      padding: 8px 8px 8px 14px;
      color: var(--uth-page-accent);
      background: transparent;
      border: 0;
      border-left: 1px solid var(--uth-page-border);
      border-radius: 0;
      font-family: var(--uth-page-body-font);
      font-size: 13.5px;
      font-weight: 600;
      line-height: 1.4;
      text-align: left;
      cursor: pointer;
      transition:
        color var(--uth-page-transition),
        background-color var(--uth-page-transition);
    }

    .uth-page-toc-more[open] .uth-page-toc-collapse {
      display: flex;
    }

    .uth-page-toc-collapse:hover {
      color: var(--uth-page-text);
      background: color-mix(in srgb, var(--uth-page-blush) 44%, transparent);
    }

    .uth-page-toc-collapse-icon {
      width: 15px;
      height: 15px;
      flex: 0 0 15px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.7;
      stroke-linecap: round;
      stroke-linejoin: round;
    }


    .uth-page-toc-link.uth-page-toc-link--active {
      color: var(--uth-page-accent);
      background: color-mix(in srgb, var(--uth-page-blush) 42%, transparent);
    }

    .uth-page-toc-link.uth-page-toc-link--active::before {
      height: 22px;
    }

    .uth-page-sidebar-rest {
      min-width: 0;
      margin-top: 34px;
      padding-top: 30px;
      border-top: 1px solid var(--uth-page-border);
    }

    .uth-page-related-list {
      display: grid;
      gap: 4px;
    }

    .uth-page-related-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      min-height: 44px;
      color: var(--uth-page-text-secondary);
      font-size: 14.5px;
      font-weight: 500;
      line-height: 1.45;
      text-decoration: none;
    }

    .uth-page-related-link:hover {
      color: var(--uth-page-accent);
      text-decoration: none;
    }

    .uth-page-related-icon {
      width: 15px;
      height: 15px;
      flex: 0 0 15px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: transform var(--uth-page-transition);
    }

    .uth-page-related-link:hover .uth-page-related-icon {
      transform: translateX(2px);
    }

    .uth-page-recent-list {
      display: grid;
      gap: 16px;
    }

    .uth-page-recent-item + .uth-page-recent-item {
      padding-top: 16px;
      border-top: 1px solid var(--uth-page-border);
    }

    .uth-page-recent-link {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      color: inherit;
      text-decoration: none;
    }

    .uth-page-recent-link:hover {
      color: inherit;
      text-decoration: none;
    }

    .uth-page-recent-thumbnail {
      display: grid;
      flex: 0 0 76px;
      place-items: center;
      width: 76px;
      height: 66px;
      overflow: hidden;
      color: var(--uth-page-accent);
      background: var(--uth-page-surface);
      border: 1px solid var(--uth-page-border);
      border-radius: var(--uth-page-radius-small);
    }

    .uth-page-recent-thumbnail-icon {
      width: 30px;
      height: 30px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.45;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .uth-page-recent-content {
      min-width: 0;
      flex: 1 1 auto;
    }

    .uth-page-recent-title {
      margin: 0;
      color: var(--uth-page-text);
      font-size: 13.5px;
      font-weight: 600;
      line-height: 1.45;
      transition: color var(--uth-page-transition);
    }

    .uth-page-recent-link:hover .uth-page-recent-title {
      color: var(--uth-page-accent);
    }

    .uth-page-recent-meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 4px 7px;
      margin-top: 6px;
      color: var(--uth-page-text-secondary);
      font-size: 11.5px;
      font-weight: 500;
      line-height: 1.4;
    }

    .uth-page-recent-meta-dot {
      width: 3px;
      height: 3px;
      flex: 0 0 3px;
      background: var(--uth-page-primary);
      border-radius: 50%;
    }

    .uth-page-help {
      margin-top: 30px;
      padding: 20px 19px;
      background: transparent;
      border: 1px solid var(--uth-page-border);
      border-radius: var(--uth-page-radius-medium);
    }

    .uth-page-help-icon-wrap {
      display: grid;
      place-items: center;
      width: 34px;
      height: 34px;
      margin-bottom: 12px;
      color: var(--uth-page-accent);
      background: var(--uth-page-blush);
      border-radius: 50%;
    }

    .uth-page-help-icon {
      width: 17px;
      height: 17px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .uth-page-help-title {
      margin: 0;
      color: var(--uth-page-text);
      font-size: 15px;
      font-weight: 600;
      line-height: 1.45;
    }

    .uth-page-help-text {
      margin: 7px 0 0;
      color: var(--uth-page-text-secondary);
      font-size: 13.5px;
      line-height: 1.6;
    }

    .uth-page-help-link {
      display: inline-flex;
      align-items: center;
      min-height: 44px;
      margin-top: 7px;
      font-size: 13.5px;
      font-weight: 600;
    }

    .uth-page-article {
      width: 100%;
      max-width: var(--uth-page-reading-width);
      min-width: 0;
    }

    .uth-page-article-intro {
      margin: 0 0 clamp(34px, 4.5vw, 46px);
      padding-bottom: clamp(30px, 4vw, 40px);
      border-bottom: 1px solid var(--uth-page-border);
    }

    .uth-page-article-lead {
      margin: 0;
      color: var(--uth-page-text);
      font-size: clamp(18px, 1.7vw, 20px);
      line-height: 1.72;
    }

    .uth-page-section,
    .uth-page-heading-three[id] {
      scroll-margin-top: var(--uth-page-scroll-offset);
    }

    .uth-page-section + .uth-page-section {
      margin-top: clamp(30px, 4vw, 40px);
      padding-top: clamp(30px, 4vw, 40px);
      border-top: 1px solid var(--uth-page-border);
    }

    .uth-page-heading-two {
      margin: 0 0 22px;
      color: var(--uth-page-text);
      font-family: var(--uth-page-heading-font);
      font-size: clamp(30px, 4vw, 38px);
      font-weight: 400;
      line-height: 1.13;
      letter-spacing: -.02em;
    }

    .uth-page-heading-three {
      margin: 34px 0 12px;
      color: var(--uth-page-text);
      font-family: var(--uth-page-heading-font);
      font-size: clamp(23px, 2.8vw, 27px);
      font-weight: 400;
      line-height: 1.2;
      letter-spacing: -.012em;
    }

    .uth-page-paragraph {
      margin: 0;
      color: var(--uth-page-text-secondary);
      overflow-wrap: anywhere;
    }

    .uth-page-paragraph + .uth-page-paragraph {
      margin-top: 18px;
    }

    .uth-page-list {
      display: grid;
      gap: 11px;
      margin: 20px 0 0;
      padding: 0 0 0 23px;
      color: var(--uth-page-text-secondary);
    }

    .uth-page-list-item {
      padding-left: 5px;
      overflow-wrap: anywhere;
    }

    .uth-page-list-item::marker {
      color: var(--uth-page-primary);
    }


    .uth-page-article table {
      display: block;
      width: 100%;
      max-width: 100%;
      margin: 24px 0;
      overflow-x: auto;
      border-collapse: collapse;
      border-spacing: 0;
      color: var(--uth-page-text-secondary);
      font-size: 15px;
      line-height: 1.55;
      -webkit-overflow-scrolling: touch;
    }

    .uth-page-article th,
    .uth-page-article td {
      min-width: 120px;
      padding: 12px 14px;
      border: 1px solid var(--uth-page-border);
      text-align: left;
      vertical-align: top;
      overflow-wrap: break-word;
    }

    .uth-page-article th {
      color: var(--uth-page-text);
      background: var(--uth-page-blush);
      font-weight: 600;
    }

    .uth-page-article caption {
      margin-bottom: 10px;
      color: var(--uth-page-text-secondary);
      font-size: 13px;
      text-align: left;
    }

    .uth-page-article .wp-block-table {
      max-width: 100%;
      margin: 24px 0;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }

    .uth-page-article .wp-block-table table {
      margin: 0;
    }

    .uth-page-ordered-list {
      display: grid;
      gap: 17px;
      margin: 24px 0 0;
      padding: 0;
      list-style: none;
      counter-reset: uth-page-step;
    }

    .uth-page-ordered-item {
      position: relative;
      min-height: 42px;
      padding: 1px 0 0 54px;
      counter-increment: uth-page-step;
      color: var(--uth-page-text-secondary);
    }

    .uth-page-ordered-item::before {
      content: counter(uth-page-step, decimal-leading-zero);
      position: absolute;
      top: 0;
      left: 0;
      display: grid;
      place-items: center;
      width: 38px;
      height: 38px;
      color: var(--uth-page-accent);
      background: var(--uth-page-blush);
      border: 1px solid var(--uth-page-border);
      border-radius: 50%;
      font-size: 12px;
      font-weight: 600;
      line-height: 1;
      letter-spacing: .02em;
    }

    .uth-page-ordered-list + .uth-page-paragraph {
      margin-top: 24px;
    }

    .uth-page-ordered-title {
      display: block;
      margin-bottom: 3px;
      color: var(--uth-page-text);
      font-weight: 600;
    }

    .uth-page-strong {
      color: var(--uth-page-text);
      font-weight: 600;
    }

    .uth-page-callout {
      display: grid;
      grid-template-columns: 34px minmax(0, 1fr);
      gap: 15px;
      margin: 30px 0 0;
      padding: 20px 22px;
      color: var(--uth-page-text-secondary);
      background: var(--uth-page-blush);
      border: 1px solid var(--uth-page-border);
      border-radius: var(--uth-page-radius-medium);
    }

    .uth-page-callout-icon-wrap {
      display: grid;
      place-items: center;
      width: 34px;
      height: 34px;
      color: var(--uth-page-accent);
      background: var(--uth-page-surface);
      border: 1px solid var(--uth-page-border);
      border-radius: 50%;
    }

    .uth-page-callout-icon {
      width: 17px;
      height: 17px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.65;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .uth-page-callout-title {
      margin: 0 0 4px;
      color: var(--uth-page-text);
      font-size: 15px;
      font-weight: 600;
      line-height: 1.5;
    }

    .uth-page-callout-text {
      margin: 0;
      font-size: 14.5px;
      line-height: 1.65;
    }

    .uth-page-contact {
      margin-top: 28px;
      padding: clamp(24px, 4vw, 32px);
      background: var(--uth-page-surface);
      border: 1px solid var(--uth-page-border);
      border-radius: var(--uth-page-radius-medium);
    }

    .uth-page-contact-title {
      margin: 0 0 8px;
      color: var(--uth-page-text);
      font-size: 16px;
      font-weight: 600;
      line-height: 1.5;
    }

    .uth-page-contact-text {
      margin: 0;
      color: var(--uth-page-text-secondary);
      font-size: 15.5px;
      line-height: 1.7;
    }

    .uth-page-contact-link {
      display: inline-flex;
      align-items: center;
      min-height: 44px;
      margin-top: 8px;
      font-weight: 600;
    }

    @media (max-width: 940px) {
      .uth-page-layout {
        grid-template-columns:
          minmax(190px, 225px)
          minmax(0, 1fr);
        gap: clamp(36px, 5vw, 54px);
      }

    }

    @media (max-width: 900px) {
      .uth-page-layout {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
          "uth-page-toc"
          "uth-page-article"
          "uth-page-sidebar-rest";
        gap: 50px;
      }

      .uth-page-sidebar {
        display: contents;
      }

      .uth-page-sidebar-toc {
        grid-area: uth-page-toc;
      }

      .uth-page-sidebar-rest {
        grid-area: uth-page-sidebar-rest;
        margin-top: 0;
        padding-top: 30px;
        border-top: 1px solid var(--uth-page-border);
      }

      .uth-page-article {
        grid-area: uth-page-article;
        max-width: none;
      }

      .uth-page-sidebar-toc,
      .uth-page-sidebar-rest {
        width: 100%;
        max-width: var(--uth-page-reading-width);
      }

      .uth-page-sidebar-rest {
        padding-top: 4px;
      }
    }

    @media (max-width: 519.98px) {

      .uth-page-feature-frame {
        aspect-ratio: 16 / 8.5;
        min-height: 220px;
      }

      .uth-page-shell {
        width: calc(100% - 32px);
      }

      .uth-page-hero {
        padding-block: 45px 48px;
      }

      .uth-page-breadcrumb {
        margin-bottom: 24px;
      }

      .uth-page-title {
        font-size: clamp(38px, 12vw, 46px);
      }

      .uth-page-deck {
        margin-top: 18px;
        font-size: 17px;
      }

      .uth-page-meta {
        display: grid;
        gap: 6px;
        margin-top: 22px;
      }

      .uth-page-meta-divider {
        display: none;
      }

      .uth-page-layout {
        gap: 46px;
        padding-block: 44px 76px;
      }

      .uth-page-article-intro {
        margin-bottom: 30px;
        padding-bottom: 30px;
      }

      .uth-page-section + .uth-page-section {
        margin-top: 30px;
        padding-top: 30px;
      }

      .uth-page-heading-two {
        margin-bottom: 18px;
      }

      .uth-page-heading-three {
        margin-top: 29px;
      }

      .uth-page-callout {
        grid-template-columns: 1fr;
        gap: 11px;
        padding: 18px;
      }

      .uth-page-contact {
        padding: 21px 18px;
      }

    }

    @media (max-width: 359.98px) {
      .uth-page-shell {
        width: calc(100% - 26px);
      }

      .uth-page-help,
      .uth-page-contact,
      .uth-page-callout {
        padding-inline: 15px;
      }

      .uth-page-ordered-item {
        padding-left: 49px;
      }

    }

    @media (prefers-reduced-motion: reduce) {
      .uth-page *,
      .uth-page *::before,
      .uth-page *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
      }

      .uth-page-related-link:hover .uth-page-related-icon {
        transform: none;
      }
    }

/* Dynamic WordPress featured images use the original fixed cover crop.
   Per-page positioning is supplied as a clamped inline object-position value. */
.uth-page-feature-art {
  object-fit: cover;
}

.uth-page-layout--no-sidebar {
  grid-template-columns: minmax(0, var(--uth-page-reading-width));
  justify-content: center;
}

.uth-page-recent-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.uth-page-deck-group .uth-page-deck + .uth-page-deck {
  margin-top: 12px;
}
