.uth-home-topics {
      --uth-home-topics-primary: #D96C8A;
      --uth-home-topics-blush: #F8E8ED;
      --uth-home-topics-background: #FFF9FA;
      --uth-home-topics-surface: #FFFFFF;
      --uth-home-topics-text: #2B2326;
      --uth-home-topics-muted: #74666B;
      --uth-home-topics-border: #EEDDE2;
      --uth-home-topics-accent: #B94F6F;
      --uth-home-topics-heading-font: "DM Serif Display", Georgia, "Times New Roman", serif;
      --uth-home-topics-body-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --uth-home-topics-shell: 1220px;
      --uth-home-topics-radius: 14px;
      --uth-home-topics-transition: 180ms ease;

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

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

    .uth-home-topics a {
      font-family: inherit;
    }

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

    .uth-home-topics svg {
      display: block;
    }

    .uth-home-topics-shell {
      width: min(calc(100% - clamp(32px, 7vw, 88px)), var(--uth-home-topics-shell));
      margin-inline: auto;
      padding-block: clamp(68px, 8vw, 104px);
    }

    .uth-home-topics-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 28px;
      margin-bottom: clamp(28px, 4vw, 36px);
    }

    .uth-home-topics-copy {
      min-width: 0;
    }

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

    .uth-home-topics-intro {
      margin: 13px 0 0;
      color: var(--uth-home-topics-muted);
      font-size: 16px;
      line-height: 1.7;
    }

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

    .uth-home-topics-item {
      min-width: 0;
    }

    .uth-home-topics-card {
      display: grid;
      grid-template-columns: 42px minmax(0, 1fr) 18px;
      gap: 34px;
      align-items: center;
      width: 100%;
      min-height: 100px;
      padding: 20px;
      color: var(--uth-home-topics-text);
      background: var(--uth-home-topics-surface);
      border: 1px solid var(--uth-home-topics-border);
      border-radius: var(--uth-home-topics-radius);
      text-decoration: none;
      transition:
        color var(--uth-home-topics-transition),
        background-color var(--uth-home-topics-transition),
        border-color var(--uth-home-topics-transition);
    }

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

    .uth-home-topics-icon-wrap {
      display: grid;
      place-items: center;
      width: 70px;
      height: 70px;
      color: var(--uth-home-topics-accent);
      transition:
        background-color var(--uth-home-topics-transition),
        border-color var(--uth-home-topics-transition);
    }

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

    .uth-home-topics-icon {
      width: 70px;
      height: 70px;
      fill: currentColor;
      stroke: currentColor;
      stroke-width: 1.65;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

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

    .uth-home-topics-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-home-topics-transition),
        transform var(--uth-home-topics-transition);
    }

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

    .uth-home-topics-actions {
      display: flex;
      justify-content: center;
      margin-top: clamp(30px, 4vw, 38px);
    }

    .uth-home-topics-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 11px 21px;
      color: var(--uth-home-topics-surface);
      background: var(--uth-home-topics-accent);
      border: 1px solid var(--uth-home-topics-accent);
      border-radius: 9px;
      font-family: var(--uth-home-topics-body-font);
      font-size: 16px;
      font-weight: 600;
      line-height: 1.35;
      text-decoration: none;
      box-shadow: 0 8px 24px rgba(185, 79, 111, .10);
      transition:
        background-color var(--uth-home-topics-transition),
        border-color var(--uth-home-topics-transition),
        box-shadow var(--uth-home-topics-transition),
        transform var(--uth-home-topics-transition);
    }

    .uth-home-topics-cta:hover {
      color: var(--uth-home-topics-surface);
      background: #A43F61;
      border-color: #A43F61;
      box-shadow: 0 10px 28px rgba(185, 79, 111, .15);
      transform: translateY(-1px);
    }

    .uth-home-topics-cta:active {
      transform: translateY(0);
      box-shadow: 0 5px 14px rgba(185, 79, 111, .10);
    }

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

    @media (max-width: 760px) {
      .uth-home-topics-head {
        display: block;
      }
    }

    @media (max-width: 640px) {
      .uth-home-topics-shell {
        width: min(calc(100% - 32px), var(--uth-home-topics-shell));
        padding-block: 54px 64px;
      }

      .uth-home-topics-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
      }

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

      .uth-home-topics-actions {
        justify-content: stretch;
      }

      .uth-home-topics-cta {
        width: 100%;
      }
    }

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

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

      .uth-home-topics-icon-wrap {
        width: 40px;
        height: 40px;
      }
    }

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

.uth-home-topics-intro + .uth-home-topics-intro { margin-top: 10px; }
.uth-home-topics-icon-wrap img.uth-home-topics-icon { object-fit: contain; }

.uth-theme-ad-placement--home {
  width: min(calc(100% - clamp(32px, 7vw, 88px)), 1220px);
  margin-inline: auto;
}
