.uth-category-page {
      --uth-category-primary: #D96C8A;
      --uth-category-blush: #F8E8ED;
      --uth-category-background: #FFF9FA;
      --uth-category-surface: #FFFFFF;
      --uth-category-text: #2B2326;
      --uth-category-text-secondary: #74666B;
      --uth-category-border: #EEDDE2;
      --uth-category-accent: #B94F6F;
      --uth-category-heading-font: "DM Serif Display", Georgia, "Times New Roman", serif;
      --uth-category-body-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --uth-category-content-width: 1220px;
      --uth-category-sidebar-width: 270px;
      --uth-category-reading-width: 760px;
      --uth-category-sticky-offset: 116px;
      --uth-category-radius-small: 10px;
      --uth-category-radius-medium: 14px;
      --uth-category-radius-large: 18px;
      --uth-category-transition: 180ms ease;

      position: relative;
      isolation: isolate;
      width: 100%;
      min-width: 0;
      overflow: clip;
      color: var(--uth-category-text-secondary);
      background: var(--uth-category-background);
      font-family: var(--uth-category-body-font);
      font-size: 17px;
      font-weight: 400;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

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

    .uth-category-page a {
      color: inherit;
      font-family: inherit;
    }

    .uth-category-page a:focus-visible,
    .uth-category-page summary:focus-visible,
    .uth-category-page aside:focus-visible {
      outline: 3px solid rgba(217, 108, 138, .38);
      outline-offset: 4px;
    }

    .uth-category-page svg {
      display: block;
    }

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

    .uth-category-hero {
      width: 100%;
      padding-block:
        clamp(38px, 6vw, 72px)
        clamp(54px, 7vw, 86px);
      border-bottom: 1px solid var(--uth-category-border);
    }

    .uth-category-hero-inner {
      width: 100%;
      max-width: none;
    }

    .uth-category-title {
      width: 100%;
      max-width: none;
      margin: 0;
      color: var(--uth-category-text);
      font-family: var(--uth-category-heading-font);
      font-size: clamp(42px, 5.3vw, 58px);
      font-weight: 400;
      line-height: 1.05;
      letter-spacing: -.025em;
    }

    .uth-category-intro {
      width: 100%;
      max-width: none;
      margin: 20px 0 0;
      color: var(--uth-category-text-secondary);
      font-size: clamp(17px, 1.5vw, 19px);
      line-height: 1.75;
    }

    .uth-category-layout {
      display: grid;
      grid-template-columns:
        minmax(230px, var(--uth-category-sidebar-width))
        minmax(0, 1fr);
      grid-template-areas: "uth-category-sidebar uth-category-primary";
      gap: clamp(50px, 7vw, 92px);
      align-items: start;
      padding-block:
        clamp(52px, 7vw, 86px)
        clamp(76px, 9vw, 118px);
    }

    .uth-category-primary {
      grid-area: uth-category-primary;
      min-width: 0;
    }

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

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

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

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

    .uth-category-sidebar-list {
      display: grid;
      gap: 3px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .uth-category-sidebar-link {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      min-height: 44px;
      padding: 8px 10px 8px 13px;
      color: var(--uth-category-text-secondary);
      border-left: 2px solid transparent;
      font-size: 14.5px;
      font-weight: 500;
      line-height: 1.45;
      text-decoration: none;
      transition:
        color var(--uth-category-transition),
        background-color var(--uth-category-transition),
        border-color var(--uth-category-transition);
    }

    .uth-category-sidebar-link:hover {
      color: var(--uth-category-accent);
      background: rgba(248, 232, 237, .58);
    }

    .uth-category-sidebar-link[aria-current="page"] {
      color: var(--uth-category-accent);
      background: var(--uth-category-blush);
      border-left-color: var(--uth-category-primary);
      font-weight: 600;
    }

    .uth-category-sidebar-arrow {
      width: 14px;
      height: 14px;
      flex: 0 0 14px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: transform var(--uth-category-transition);
    }

    .uth-category-sidebar-link:hover .uth-category-sidebar-arrow {
      transform: translateX(2px);
    }

    .uth-category-topic-link {
      display: grid;
      grid-template-columns: 32px minmax(0, 1fr) 14px;
      gap: 10px;
      align-items: center;
      min-height: 48px;
      padding: 5px 8px 5px 4px;
      color: var(--uth-category-text-secondary);
      font-size: 14px;
      font-weight: 500;
      line-height: 1.4;
      text-decoration: none;
      border-radius: var(--uth-category-radius-small);
      transition:
        color var(--uth-category-transition),
        background-color var(--uth-category-transition);
    }

    .uth-category-topic-link:hover {
      color: var(--uth-category-accent);
      background: rgba(248, 232, 237, .56);
    }

    .uth-category-topic-icon-wrap {
      display: grid;
      place-items: center;
      width: 32px;
      height: 32px;
      color: var(--uth-category-accent);
      background: var(--uth-category-blush);
      border: 1px solid var(--uth-category-border);
      border-radius: 50%;
    }

    .uth-category-topic-icon {
      width: 16px;
      height: 16px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.65;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .uth-category-topic-arrow {
      width: 14px;
      height: 14px;
      color: #AD9CA1;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition:
        color var(--uth-category-transition),
        transform var(--uth-category-transition);
    }

    .uth-category-topic-link:hover .uth-category-topic-arrow {
      color: var(--uth-category-accent);
      transform: translateX(2px);
    }

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

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

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

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

    .uth-category-help-link {
      display: inline-flex;
      align-items: center;
      min-height: 44px;
      margin-top: 5px;
      color: var(--uth-category-accent);
      font-size: 13.5px;
      font-weight: 600;
      text-decoration: underline;
      text-decoration-color: var(--uth-category-border);
      text-underline-offset: 4px;
      transition:
        color var(--uth-category-transition),
        text-decoration-color var(--uth-category-transition);
    }

    .uth-category-help-link:hover {
      color: var(--uth-category-text);
      text-decoration-color: var(--uth-category-primary);
    }

    .uth-category-grid-section {
      min-width: 0;
    }

    .uth-category-section-heading {
      margin: 0;
      color: var(--uth-category-text);
      font-family: var(--uth-category-heading-font);
      font-size: clamp(32px, 4vw, 40px);
      font-weight: 400;
      line-height: 1.12;
      letter-spacing: -.02em;
    }

    .uth-category-section-deck {
      max-width: 690px;
      margin: 13px 0 0;
      color: var(--uth-category-text-secondary);
      font-size: 16px;
      line-height: 1.7;
    }

    .uth-category-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin: 30px 0 0;
      padding: 0;
      list-style: none;
    }

    .uth-category-grid-item {
      min-width: 0;
    }

.uth-category-card {
    display: flex;
    gap: 14px;
    align-items: center;
    width: 100%;
    min-height: 100px;
    padding: 20px;
    color: var(--uth-category-text) !important;
    background: var(--uth-category-surface);
    border: 1px solid var(--uth-category-border);
    border-radius: var(--uth-category-radius-medium);
    text-decoration: none;
    transition: color var(--uth-category-transition), background-color var(--uth-category-transition), border-color var(--uth-category-transition);
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

    .uth-category-card:hover {
      color: var(--uth-category-accent);
      background: #FFFCFD;
      border-color: var(--uth-category-primary);
    }

    .uth-category-card-icon-wrap {
      display: grid;
      place-items: center;
      width: 42px;
      height: 42px;
      color: var(--uth-category-accent);
      background: var(--uth-category-blush);
      border: 1px solid var(--uth-category-border);
      border-radius: 50%;
      transition:
        color var(--uth-category-transition),
        background-color var(--uth-category-transition),
        border-color var(--uth-category-transition);
    }

    .uth-category-card:hover .uth-category-card-icon-wrap {
      background: #FBEFF2;
      border-color: #E7C5CF;
    }

    .uth-category-card-icon {
      width: 23px;
      height: 23px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.65;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .uth-category-card-title {
      min-width: 0;
      color: inherit;
      font-size: 16px;
      font-weight: 600;
      line-height: 1.35;
    }

    .uth-category-card-arrow {
      width: 18px;
      height: 18px;
      color: #A9989D;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition:
        color var(--uth-category-transition),
        transform var(--uth-category-transition);
    }

    .uth-category-card:hover .uth-category-card-arrow {
      color: var(--uth-category-accent);
      transform: translateX(2px);
    }

    .uth-category-content {
      margin-top: clamp(58px, 8vw, 88px);
      padding-top: clamp(48px, 6vw, 68px);
      border-top: 1px solid var(--uth-category-border);
    }

    .uth-category-content-title {
      margin: 0 0 20px;
      color: var(--uth-category-text);
      font-family: var(--uth-category-heading-font);
      font-size: clamp(32px, 4vw, 40px);
      font-weight: 400;
      line-height: 1.12;
      letter-spacing: -.02em;
    }

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

    .uth-category-content-text {
      margin: 0;
      color: var(--uth-category-text-secondary);
      font-size: clamp(16.5px, 1.35vw, 17.5px);
      line-height: 1.82;
    }

    .uth-category-content-text + .uth-category-content-text {
      margin-top: 18px;
    }

    .uth-category-content-link {
      color: var(--uth-category-accent);
      font-weight: 500;
      text-decoration: underline;
      text-decoration-color: var(--uth-category-border);
      text-underline-offset: 4px;
      transition:
        color var(--uth-category-transition),
        text-decoration-color var(--uth-category-transition);
    }

    .uth-category-content-link:hover {
      color: var(--uth-category-text);
      text-decoration-color: var(--uth-category-primary);
    }

    .uth-category-health-note {
      display: grid;
      grid-template-columns: 36px minmax(0, 1fr);
      gap: 14px;
      margin-top: 20px;
      padding: 19px 20px;
      background: rgba(248, 232, 237, .62);
      border: 1px solid var(--uth-category-border);
      border-radius: 12px;
    }

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

    .uth-category-health-note-icon {
      width: 18px;
      height: 18px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.65;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .uth-category-health-note-text {
      margin: 0;
      color: var(--uth-category-text-secondary);
      font-size: 14.5px;
      line-height: 1.68;
    }

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

    @media (max-width: 1100px) {
      .uth-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .uth-category-layout {
        grid-template-columns:
          minmax(210px, 240px)
          minmax(0, 1fr);
        gap: clamp(36px, 5vw, 54px);
      }

    }

    @media (max-width: 900px) {
      .uth-category-layout {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
          "uth-category-primary"
          "uth-category-sidebar";
        gap: clamp(54px, 8vw, 72px);
      }

      .uth-category-primary {
        max-width: none;
      }

      .uth-category-sidebar {
        position: static;
        top: auto;
        width: 100%;
        max-width: none;
        max-height: none;
        overflow: visible;
        overscroll-behavior: auto;
        padding: clamp(28px, 5vw, 38px);
        background: rgba(255, 255, 255, .56);
        border-top: 1px solid var(--uth-category-border);
        border-bottom: 1px solid var(--uth-category-border);
      }

      .uth-category-sidebar-section {
        width: 100%;
      }

      .uth-category-sidebar-section + .uth-category-sidebar-section {
        margin-top: 30px;
        padding-top: 28px;
      }

      .uth-category-sidebar-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 4px 18px;
      }

      .uth-category-content,

    }

    @media (max-width: 640px) {
      .uth-category-shell {
        width: min(calc(100% - 32px), var(--uth-category-content-width));
      }

      .uth-category-hero {
        padding-block: 28px 48px;
      }

      .uth-category-layout {
        gap: 50px;
        padding-block: 46px 78px;
      }

      .uth-category-sidebar {
        padding: 28px 0 0;
        background: transparent;
        border-bottom: 0;
      }

      .uth-category-sidebar-list {
        grid-template-columns: minmax(0, 1fr);
      }

      .uth-category-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
        margin-top: 24px;
      }

      .uth-category-card {
        min-height: 88px;
        padding: 17px 18px;
      }

      .uth-category-content {
        margin-top: 52px;
        padding-top: 42px;
      }

      .uth-category-health-note {
        grid-template-columns: minmax(0, 1fr);
      }

    }

    @media (max-width: 374px) {
      .uth-category-shell {
        width: min(calc(100% - 24px), var(--uth-category-content-width));
      }

      .uth-category-title {
        font-size: 39px;
      }

      .uth-category-card {
        grid-template-columns: 40px minmax(0, 1fr) 16px;
        gap: 12px;
        padding: 16px;
      }

      .uth-category-card-icon-wrap {
        width: 40px;
        height: 40px;
      }
    }

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

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

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

.uth-category-page .uth-archive-sidebar-list,
.uth-category-page .uth-archive-topic-list {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.uth-category-page .uth-archive-sidebar-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding: 8px 10px 8px 13px;
  color: var(--uth-category-text-secondary);
  border-left: 2px solid transparent;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.45;
  text-decoration: none;
  transition: color var(--uth-category-transition), background-color var(--uth-category-transition), border-color var(--uth-category-transition);
}

.uth-category-page .uth-archive-sidebar-link:hover {
  color: var(--uth-category-accent);
  background: rgba(248, 232, 237, .58);
}

.uth-category-page .uth-archive-sidebar-link[aria-current="page"] {
  color: var(--uth-category-accent);
  background: var(--uth-category-blush);
  border-left-color: var(--uth-category-primary);
  font-weight: 600;
}

.uth-category-page .uth-archive-sidebar-arrow {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--uth-category-transition);
}

.uth-category-page .uth-archive-sidebar-link:hover .uth-archive-sidebar-arrow {
  transform: translateX(2px);
}

.uth-category-page .uth-archive-topic-link {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 14px;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 5px 8px 5px 4px;
  color: var(--uth-category-text-secondary);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  border-radius: var(--uth-category-radius-small);
  transition: color var(--uth-category-transition), background-color var(--uth-category-transition);
}

.uth-category-page .uth-archive-topic-link:hover {
  color: var(--uth-category-accent);
  background: rgba(248, 232, 237, .56);
}

.uth-category-page .uth-archive-topic-icon-wrap {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--uth-category-accent);
  background: var(--uth-category-blush);
  border: 1px solid var(--uth-category-border);
  border-radius: 50%;
  overflow: hidden;
}

.uth-category-page .uth-archive-topic-icon,
.uth-category-page .uth-archive-topic-image {
  width: 16px;
  height: 16px;
}

.uth-category-page .uth-archive-topic-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.uth-category-page .uth-archive-topic-image {
  display: block;
  object-fit: contain;
}

.uth-category-page .uth-archive-topic-arrow {
  width: 14px;
  height: 14px;
  color: #AD9CA1;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: color var(--uth-category-transition), transform var(--uth-category-transition);
}

.uth-category-page .uth-archive-topic-link:hover .uth-archive-topic-arrow {
  color: var(--uth-category-accent);
  transform: translateX(2px);
}

.uth-category-card-icon.uth-archive-topic-image {
  display: block;
  object-fit: contain;
}

.uth-category-page .uth-archive-svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.uth-category-page .uth-archive-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: clamp(38px, 5vw, 52px);
}

.uth-category-page .uth-archive-page-link {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding-inline: 12px;
  color: var(--uth-category-text-secondary);
  background: var(--uth-category-surface);
  border: 1px solid var(--uth-category-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: color var(--uth-category-transition), background-color var(--uth-category-transition), border-color var(--uth-category-transition);
}

.uth-category-page .uth-archive-page-link:hover {
  color: var(--uth-category-accent);
  border-color: var(--uth-category-primary);
}

.uth-category-page .uth-archive-page-link[aria-current="page"] {
  color: var(--uth-category-surface);
  background: var(--uth-category-accent);
  border-color: var(--uth-category-accent);
}

.uth-category-page .uth-archive-page-link--wide {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  padding-inline: 16px;
}

.uth-category-page .uth-archive-page-link-icon {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 900px) {
  .uth-category-page .uth-archive-sidebar-list,
  .uth-category-page .uth-archive-topic-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 18px;
  }
}

@media (max-width: 640px) {
  .uth-category-page .uth-archive-sidebar-list,
  .uth-category-page .uth-archive-topic-list {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 390px) {
  .uth-category-page .uth-archive-pagination {
    justify-content: flex-start;
  }
}

    /* Rich content after category listings and pagination */
    .uth-category-content-heading--h2 {
      margin: 38px 0 12px;
      font-size: clamp(28px, 3.35vw, 34px);
      line-height: 1.16;
    }

    .uth-category-content-heading--h3 {
      margin: 34px 0 11px;
      font-size: clamp(23px, 3vw, 27px);
      line-height: 1.2;
    }

    .uth-category-content-heading--h4 {
      margin: 29px 0 9px;
      font-size: clamp(20px, 2.3vw, 23px);
      line-height: 1.25;
    }

    .uth-category-content-heading--h5 {
      margin: 26px 0 8px;
      font-size: clamp(18px, 1.95vw, 20px);
      line-height: 1.3;
    }

    .uth-category-content-heading--h6 {
      margin: 23px 0 8px;
      font-family: var(--uth-category-body-font);
      font-size: 15px;
      font-weight: 600;
      line-height: 1.45;
      letter-spacing: .035em;
      text-transform: uppercase;
    }

    .uth-category-content-list {
      margin: 18px 0 0;
      padding-left: 1.35em;
      color: var(--uth-category-text-secondary);
      font-size: clamp(16.5px, 1.35vw, 17.5px);
      line-height: 1.78;
    }

    .uth-category-content-list + .uth-category-content-text,
    .uth-category-content-text + .uth-category-content-list {
      margin-top: 18px;
    }

    .uth-category-content-list--ul {
      list-style: disc;
    }

    .uth-category-content-list--ol {
      list-style: decimal;
    }

    .uth-category-content-list-item + .uth-category-content-list-item {
      margin-top: 8px;
    }

/* Sidebar visibility setting. */
.uth-category-layout--no-sidebar {
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas: "uth-category-primary";
}
