/* pixelschmitt Frontend Build System
 * Unsichtbarkeits-Rechner · Post-ID 8893
 */

.ps-calc {
      --ps-ink: #17313e;
      --ps-ink-deep: #102b38;
      --ps-paper: #f3f6f7;
      --ps-white: #ffffff;
      --ps-accent: #fea601;
      --ps-accent-dark: #e58f00;
      --ps-accent-light: #fff3d8;
      --ps-muted: #385e72;
      --ps-line: #cbd8dc;
      --ps-red: #e34b4b;
      --ps-yellow: #f2bf36;
      --ps-green: #62e28f;
      --ps-radius: 24px;
      --ps-shadow: 0 18px 50px rgba(23, 49, 62, .12);
      /*
       * Festes Desktop-Menü (ca. 124 px) plus 24 px Luft.
       * Falls sich die Headerhöhe später ändert, nur diesen Wert anpassen.
       */
      --ps-sticky-top: 148px;
      color: var(--ps-ink);
      font-family: "Signika", sans-serif;
      line-height: 1.5;
      container-type: inline-size;
      scroll-margin-top: var(--ps-sticky-top);
    }
    .ps-calc *,
    .ps-calc *::before,
    .ps-calc *::after {
      box-sizing: border-box;
    }
    .ps-calc button,
    .ps-calc input,
    .ps-calc output {
      font-family: "Signika", sans-serif;
    }
    .ps-calc__shell {
      max-width: 1180px;
      margin: 0 auto;
      /*
       * overflow:hidden würde den rechts angeordneten Sticky-Block ausbremsen.
       * overflow:clip erhält die abgerundete Außenkante, ohne einen eigenen
       * Scroll-Container zu erzeugen.
       */
      overflow: clip;
      background: var(--ps-paper);
      border: 1px solid var(--ps-line);
      border-radius: 32px;
      box-shadow: var(--ps-shadow);
    }
    .ps-calc__intro {
      position: relative;
      padding: clamp(32px, 6vw, 72px);
      overflow: hidden;
      color: var(--ps-white);
      background: var(--ps-ink-deep);
    }
    .ps-calc__intro::after {
      position: absolute;
      right: -80px;
      bottom: -130px;
      width: 340px;
      height: 340px;
      border: 70px solid var(--ps-accent);
      border-radius: 50%;
      content: "";
      opacity: .95;
      pointer-events: none;
    }
    .ps-calc__eyebrow {
      display: inline-flex;
      gap: 8px;
      align-items: center;
      margin: 0 0 20px;
      padding: 8px 13px;
      color: var(--ps-ink);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .05em;
      text-transform: uppercase;
      background: var(--ps-accent);
      border-radius: 999px;
    }
    .ps-calc h1,
    .ps-calc h3,
    .ps-calc p {
      margin-top: 0;
    }
    .ps-calc h1 {
      position: relative;
      z-index: 1;
      max-width: 780px;
      margin-bottom: 18px;
      color: inherit;
      font-size: clamp(36px, 6vw, 68px);
      line-height: 1.02;
      letter-spacing: -.045em;
    }
    .ps-calc__lead {
      position: relative;
      z-index: 1;
      max-width: 690px;
      margin: 0;
      color: rgba(255, 255, 255, .78);
      font-size: clamp(17px, 2vw, 21px);
    }
    .ps-calc__body {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
      gap: 28px;
      align-items: start;
      padding: clamp(22px, 4vw, 48px);
    }
    .ps-calc__panel,
    .ps-calc__result {
      background: var(--ps-white);
      border: 1px solid var(--ps-line);
      border-radius: var(--ps-radius);
    }
    .ps-calc__panel {
      padding: clamp(22px, 4vw, 38px);
    }
    .ps-calc__result {
      position: sticky;
      top: var(--ps-sticky-top);
      align-self: start;
      overflow: hidden;
    }
    .ps-calc__step {
      margin: 0 0 8px;
      color: var(--ps-muted);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .ps-calc h3 {
      margin-bottom: 8px;
      color: inherit;
      font-size: clamp(24px, 3vw, 34px);
      line-height: 1.12;
      letter-spacing: -.025em;
    }
    .ps-calc__hint {
      margin-bottom: 28px;
      color: var(--ps-muted);
      font-size: 15px;
    }
    .ps-field {
      padding: 21px 0;
      border-top: 1px solid var(--ps-line);
    }
    .ps-field:first-of-type {
      border-top: 0;
    }
    .ps-field__top {
      display: flex;
      gap: 18px;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 14px;
    }
    .ps-field label {
      max-width: 70%;
      font-size: 16px;
      font-weight: 600;
      line-height: 1.35;
      cursor: pointer;
    }
    .ps-field output {
      flex: 0 0 auto;
      min-width: 96px;
      padding: 7px 10px;
      color: var(--ps-ink);
      font-size: 15px;
      font-weight: 700;
      text-align: center;
      white-space: nowrap;
      background: var(--ps-accent);
      border-radius: 10px;
    }
    .ps-field input[type="range"] {
      width: 100%;
      height: 28px;
      margin: 0;
      appearance: none;
      -webkit-appearance: none;
      background: transparent;
      cursor: pointer;
    }
    .ps-field input[type="range"]::-webkit-slider-runnable-track {
      height: 8px;
      background: linear-gradient(90deg, var(--ps-accent) var(--ps-progress, 50%), var(--ps-line) var(--ps-progress, 50%));
      border-radius: 999px;
    }
    .ps-field input[type="range"]::-moz-range-track {
      height: 8px;
      background: var(--ps-line);
      border-radius: 999px;
    }
    .ps-field input[type="range"]::-moz-range-progress {
      height: 8px;
      background: var(--ps-accent);
      border-radius: 999px;
    }
    .ps-field input[type="range"]::-webkit-slider-thumb {
      width: 25px;
      height: 25px;
      margin-top: -8.5px;
      appearance: none;
      -webkit-appearance: none;
      background: var(--ps-ink-deep);
      border: 4px solid var(--ps-white);
      border-radius: 50%;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
    }
    .ps-field input[type="range"]::-moz-range-thumb {
      width: 17px;
      height: 17px;
      background: var(--ps-ink-deep);
      border: 4px solid var(--ps-white);
      border-radius: 50%;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
    }
    .ps-field input[type="range"]:focus-visible {
      outline: 3px solid rgba(21, 21, 21, .2);
      outline-offset: 5px;
      border-radius: 999px;
    }
    .ps-scale {
      display: flex;
      justify-content: space-between;
      margin-top: 3px;
      color: var(--ps-muted);
      font-size: 12px;
    }
    .ps-field--quality output {
      color: var(--ps-white);
      background: var(--ps-signal, var(--ps-yellow));
      transition: background-color .18s ease;
    }
    .ps-field--quality input[type="range"]::-webkit-slider-runnable-track {
      background: linear-gradient(
        90deg,
        var(--ps-red) 0 40%,
        var(--ps-yellow) 40% 60%,
        var(--ps-green) 60% 100%
      );
    }
    .ps-field--quality input[type="range"]::-moz-range-track {
      background: linear-gradient(
        90deg,
        var(--ps-red) 0 40%,
        var(--ps-yellow) 40% 60%,
        var(--ps-green) 60% 100%
      );
    }
    .ps-field--quality input[type="range"]::-moz-range-progress {
      background: transparent;
    }
    .ps-traffic-light {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 6px;
      margin-top: 8px;
    }
    .ps-traffic-light__state {
      padding: 5px 7px;
      color: var(--ps-muted);
      font-size: 11px;
      font-weight: 600;
      line-height: 1.2;
      text-align: center;
      background: color-mix(in srgb, var(--state-color), transparent 78%);
      border: 2px solid transparent;
      border-radius: 8px;
      opacity: .65;
      transition: opacity .18s ease, border-color .18s ease, transform .18s ease;
    }
    .ps-field--quality[data-signal="bad"] .ps-traffic-light__state[data-state="bad"],
    .ps-field--quality[data-signal="neutral"] .ps-traffic-light__state[data-state="neutral"],
    .ps-field--quality[data-signal="good"] .ps-traffic-light__state[data-state="good"] {
      color: var(--ps-ink);
      border-color: var(--ps-ink);
      opacity: 1;
      transform: translateY(-2px);
    }
    .ps-calc__divider {
      height: 1px;
      margin: 34px 0;
      background: var(--ps-line);
      border: 0;
    }
    .ps-calc__result-head {
      padding: 29px 30px 26px;
      color: var(--ps-white);
      background: var(--ps-ink-deep);
    }
    .ps-calc__result-label {
      margin-bottom: 8px;
      color: var(--ps-accent);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .07em;
      text-transform: uppercase;
    }
    .ps-calc__result-number {
      display: block;
      margin-bottom: 6px;
      color: var(--ps-white);
      font-size: clamp(40px, 6vw, 64px);
      font-weight: 700;
      line-height: 1;
      letter-spacing: -.045em;
    }
    .ps-calc__result-unit {
      margin: 0;
      color: rgba(255, 255, 255, .73);
      font-size: 15px;
    }
    .ps-calc__result-body {
      padding: 28px 30px 32px;
    }
    .ps-calc__facts {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin: 0 0 25px;
    }
    .ps-calc__fact {
      padding: 15px;
      background: var(--ps-paper);
      border-radius: 14px;
    }
    .ps-calc__fact strong,
    .ps-calc__fact span {
      display: block;
    }
    .ps-calc__fact strong {
      margin-bottom: 2px;
      font-size: 21px;
      line-height: 1.2;
    }
    .ps-calc__fact span {
      color: var(--ps-muted);
      font-size: 12px;
      line-height: 1.35;
    }
    .ps-calc__diagnosis {
      margin-bottom: 21px;
      font-size: 16px;
    }
    .ps-calc__traffic {
      display: grid;
      gap: 10px;
      margin: 0 0 26px;
      padding: 0;
      list-style: none;
    }
    .ps-calc__traffic li {
      display: grid;
      grid-template-columns: 13px 1fr auto;
      gap: 10px;
      align-items: center;
      padding: 11px 13px;
      background: var(--ps-paper);
      border-radius: 12px;
    }
    .ps-calc__dot {
      width: 13px;
      height: 13px;
      background: var(--signal);
      border-radius: 50%;
      box-shadow: 0 0 0 4px color-mix(in srgb, var(--signal), transparent 80%);
    }
    .ps-calc__traffic-name {
      font-size: 13px;
      font-weight: 600;
    }
    .ps-calc__traffic-state {
      color: var(--ps-muted);
      font-size: 12px;
    }
    .ps-calc__cta {
      display: block;
      width: 100%;
      padding: 16px 18px;
      color: var(--ps-ink) !important;
      font-size: 16px;
      font-weight: 700;
      line-height: 1.2;
      text-align: center;
      text-decoration: none !important;
      background: var(--ps-accent);
      border: 2px solid var(--ps-ink);
      border-radius: 13px;
      box-shadow: 5px 5px 0 var(--ps-ink);
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }
    .ps-calc__cta:hover,
    .ps-calc__cta:focus-visible {
      color: var(--ps-ink) !important;
      background: #ffb424;
      box-shadow: 2px 2px 0 var(--ps-ink);
      transform: translate(3px, 3px);
    }
    .ps-calc__microcopy {
      margin: 13px 0 0;
      color: var(--ps-muted);
      font-size: 12px;
      text-align: center;
    }
    .ps-calc__note {
      padding: 0 clamp(22px, 4vw, 48px) clamp(24px, 4vw, 42px);
      color: var(--ps-muted);
      font-size: 12px;
      text-align: center;
    }
    @container (max-width: 840px) {
      .ps-calc__body {
        grid-template-columns: 1fr;
      }
      .ps-calc__result {
        position: static;
      }
    }
    @container (max-width: 520px) {
      .ps-calc__shell {
        border-radius: 20px;
      }
      .ps-calc__intro::after {
        right: -125px;
        bottom: -170px;
      }
      .ps-field__top {
        display: block;
      }
      .ps-field label {
        display: block;
        max-width: none;
        margin-bottom: 10px;
      }
      .ps-field output {
        display: inline-block;
      }
      .ps-calc__facts {
        grid-template-columns: 1fr;
      }
    }
    @media (prefers-reduced-motion: reduce) {
      .ps-calc__cta {
        transition: none;
      }
    }

.ps-calc {
      --ps-ink: #17313e;
      --ps-ink-deep: #102b38;
      --ps-paper: #f3f6f7;
      --ps-white: #ffffff;
      --ps-accent: #fea601;
      --ps-accent-dark: #e58f00;
      --ps-accent-light: #fff3d8;
      --ps-muted: #385e72;
      --ps-line: #cbd8dc;
      --ps-red: #e34b4b;
      --ps-yellow: #f2bf36;
      --ps-green: #62e28f;
      --ps-radius: 24px;
      --ps-shadow: 0 18px 50px rgba(23, 49, 62, .12);
      /*
       * Festes Desktop-Menü (ca. 124 px) plus 24 px Luft.
       * Falls sich die Headerhöhe später ändert, nur diesen Wert anpassen.
       */
      --ps-sticky-top: 148px;
      color: var(--ps-ink);
      font-family: "Signika", sans-serif;
      line-height: 1.5;
      container-type: inline-size;
      scroll-margin-top: var(--ps-sticky-top);
    }

    .ps-calc *,
    .ps-calc *::before,
    .ps-calc *::after {
      box-sizing: border-box;
    }

    .ps-calc button,
    .ps-calc input,
    .ps-calc output {
      font-family: "Signika", sans-serif;
    }

    .ps-calc__shell {
      max-width: 1180px;
      margin: 0 auto;
      /*
       * overflow:hidden würde den rechts angeordneten Sticky-Block ausbremsen.
       * overflow:clip erhält die abgerundete Außenkante, ohne einen eigenen
       * Scroll-Container zu erzeugen.
       */
      overflow: clip;
      background: var(--ps-paper);
      border: 1px solid var(--ps-line);
      border-radius: 32px;
      box-shadow: var(--ps-shadow);
    }

    .ps-calc__intro {
      position: relative;
      padding: clamp(32px, 6vw, 72px);
      overflow: hidden;
      color: var(--ps-white);
      background: var(--ps-ink-deep);
    }

    .ps-calc__intro::after {
      position: absolute;
      right: -80px;
      bottom: -130px;
      width: 340px;
      height: 340px;
      border: 70px solid var(--ps-accent);
      border-radius: 50%;
      content: "";
      opacity: .95;
      pointer-events: none;
    }

    .ps-calc__eyebrow {
      display: inline-flex;
      gap: 8px;
      align-items: center;
      margin: 0 0 20px;
      padding: 8px 13px;
      color: var(--ps-ink);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .05em;
      text-transform: uppercase;
      background: var(--ps-accent);
      border-radius: 999px;
    }

    .ps-calc h1,
    .ps-calc h3,
    .ps-calc p {
      margin-top: 0;
    }

    .ps-calc h1 {
      position: relative;
      z-index: 1;
      max-width: 780px;
      margin-bottom: 18px;
      color: inherit;
      font-size: clamp(36px, 6vw, 68px);
      line-height: 1.02;
      letter-spacing: -.045em;
    }

    .ps-calc__lead {
      position: relative;
      z-index: 1;
      max-width: 690px;
      margin: 0;
      color: rgba(255, 255, 255, .78);
      font-size: clamp(17px, 2vw, 21px);
    }

    .ps-calc__body {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
      gap: 28px;
      align-items: start;
      padding: clamp(22px, 4vw, 48px);
    }

    .ps-calc__panel,
    .ps-calc__result {
      background: var(--ps-white);
      border: 1px solid var(--ps-line);
      border-radius: var(--ps-radius);
    }

    .ps-calc__panel {
      padding: clamp(22px, 4vw, 38px);
    }

    .ps-calc__result {
      position: sticky;
      top: var(--ps-sticky-top);
      align-self: start;
      overflow: hidden;
    }

    .ps-calc__step {
      margin: 0 0 8px;
      color: var(--ps-muted);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .ps-calc h3 {
      margin-bottom: 8px;
      color: inherit;
      font-size: clamp(24px, 3vw, 34px);
      line-height: 1.12;
      letter-spacing: -.025em;
    }

    .ps-calc__hint {
      margin-bottom: 28px;
      color: var(--ps-muted);
      font-size: 15px;
    }

    .ps-field {
      padding: 21px 0;
      border-top: 1px solid var(--ps-line);
    }

    .ps-field:first-of-type {
      border-top: 0;
    }

    .ps-field__top {
      display: flex;
      gap: 18px;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 14px;
    }

    .ps-field label {
      max-width: 70%;
      font-size: 16px;
      font-weight: 600;
      line-height: 1.35;
      cursor: pointer;
    }

    .ps-field output {
      flex: 0 0 auto;
      min-width: 96px;
      padding: 7px 10px;
      color: var(--ps-ink);
      font-size: 15px;
      font-weight: 700;
      text-align: center;
      white-space: nowrap;
      background: var(--ps-accent);
      border-radius: 10px;
    }

    .ps-field input[type="range"] {
      width: 100%;
      height: 28px;
      margin: 0;
      appearance: none;
      -webkit-appearance: none;
      background: transparent;
      cursor: pointer;
    }

    .ps-field input[type="range"]::-webkit-slider-runnable-track {
      height: 8px;
      background: linear-gradient(90deg, var(--ps-accent) var(--ps-progress, 50%), var(--ps-line) var(--ps-progress, 50%));
      border-radius: 999px;
    }

    .ps-field input[type="range"]::-moz-range-track {
      height: 8px;
      background: var(--ps-line);
      border-radius: 999px;
    }

    .ps-field input[type="range"]::-moz-range-progress {
      height: 8px;
      background: var(--ps-accent);
      border-radius: 999px;
    }

    .ps-field input[type="range"]::-webkit-slider-thumb {
      width: 25px;
      height: 25px;
      margin-top: -8.5px;
      appearance: none;
      -webkit-appearance: none;
      background: var(--ps-ink-deep);
      border: 4px solid var(--ps-white);
      border-radius: 50%;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
    }

    .ps-field input[type="range"]::-moz-range-thumb {
      width: 17px;
      height: 17px;
      background: var(--ps-ink-deep);
      border: 4px solid var(--ps-white);
      border-radius: 50%;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
    }

    .ps-field input[type="range"]:focus-visible {
      outline: 3px solid rgba(21, 21, 21, .2);
      outline-offset: 5px;
      border-radius: 999px;
    }

    .ps-scale {
      display: flex;
      justify-content: space-between;
      margin-top: 3px;
      color: var(--ps-muted);
      font-size: 12px;
    }

    .ps-field--quality output {
      color: var(--ps-white);
      background: var(--ps-signal, var(--ps-yellow));
      transition: background-color .18s ease;
    }

    .ps-field--quality input[type="range"]::-webkit-slider-runnable-track {
      background: linear-gradient(
        90deg,
        var(--ps-red) 0 40%,
        var(--ps-yellow) 40% 60%,
        var(--ps-green) 60% 100%
      );
    }

    .ps-field--quality input[type="range"]::-moz-range-track {
      background: linear-gradient(
        90deg,
        var(--ps-red) 0 40%,
        var(--ps-yellow) 40% 60%,
        var(--ps-green) 60% 100%
      );
    }

    .ps-field--quality input[type="range"]::-moz-range-progress {
      background: transparent;
    }

    .ps-traffic-light {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 6px;
      margin-top: 8px;
    }

    .ps-traffic-light__state {
      padding: 5px 7px;
      color: var(--ps-muted);
      font-size: 11px;
      font-weight: 600;
      line-height: 1.2;
      text-align: center;
      background: color-mix(in srgb, var(--state-color), transparent 78%);
      border: 2px solid transparent;
      border-radius: 8px;
      opacity: .65;
      transition: opacity .18s ease, border-color .18s ease, transform .18s ease;
    }

    .ps-field--quality[data-signal="bad"] .ps-traffic-light__state[data-state="bad"],
    .ps-field--quality[data-signal="neutral"] .ps-traffic-light__state[data-state="neutral"],
    .ps-field--quality[data-signal="good"] .ps-traffic-light__state[data-state="good"] {
      color: var(--ps-ink);
      border-color: var(--ps-ink);
      opacity: 1;
      transform: translateY(-2px);
    }

    .ps-calc__divider {
      height: 1px;
      margin: 34px 0;
      background: var(--ps-line);
      border: 0;
    }

    .ps-calc__result-head {
      padding: 29px 30px 26px;
      color: var(--ps-white);
      background: var(--ps-ink-deep);
    }

    .ps-calc__result-label {
      margin-bottom: 8px;
      color: var(--ps-accent);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .07em;
      text-transform: uppercase;
    }

    .ps-calc__result-number {
      display: block;
      margin-bottom: 6px;
      color: var(--ps-white);
      font-size: clamp(40px, 6vw, 64px);
      font-weight: 700;
      line-height: 1;
      letter-spacing: -.045em;
    }

    .ps-calc__result-unit {
      margin: 0;
      color: rgba(255, 255, 255, .73);
      font-size: 15px;
    }

    .ps-calc__result-body {
      padding: 28px 30px 32px;
    }

    .ps-calc__facts {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin: 0 0 25px;
    }

    .ps-calc__fact {
      padding: 15px;
      background: var(--ps-paper);
      border-radius: 14px;
    }

    .ps-calc__fact strong,
    .ps-calc__fact span {
      display: block;
    }

    .ps-calc__fact strong {
      margin-bottom: 2px;
      font-size: 21px;
      line-height: 1.2;
    }

    .ps-calc__fact span {
      color: var(--ps-muted);
      font-size: 12px;
      line-height: 1.35;
    }

    .ps-calc__diagnosis {
      margin-bottom: 21px;
      font-size: 16px;
    }

    .ps-calc__traffic {
      display: grid;
      gap: 10px;
      margin: 0 0 26px;
      padding: 0;
      list-style: none;
    }

    .ps-calc__traffic li {
      display: grid;
      grid-template-columns: 13px 1fr auto;
      gap: 10px;
      align-items: center;
      padding: 11px 13px;
      background: var(--ps-paper);
      border-radius: 12px;
    }

    .ps-calc__dot {
      width: 13px;
      height: 13px;
      background: var(--signal);
      border-radius: 50%;
      box-shadow: 0 0 0 4px color-mix(in srgb, var(--signal), transparent 80%);
    }

    .ps-calc__traffic-name {
      font-size: 13px;
      font-weight: 600;
    }

    .ps-calc__traffic-state {
      color: var(--ps-muted);
      font-size: 12px;
    }

    .ps-calc__cta {
      display: block;
      width: 100%;
      padding: 16px 18px;
      color: var(--ps-ink) !important;
      font-size: 16px;
      font-weight: 700;
      line-height: 1.2;
      text-align: center;
      text-decoration: none !important;
      background: var(--ps-accent);
      border: 2px solid var(--ps-ink);
      border-radius: 13px;
      box-shadow: 5px 5px 0 var(--ps-ink);
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }

    .ps-calc__cta:hover,
    .ps-calc__cta:focus-visible {
      color: var(--ps-ink) !important;
      background: #ffb424;
      box-shadow: 2px 2px 0 var(--ps-ink);
      transform: translate(3px, 3px);
    }

    .ps-calc__microcopy {
      margin: 13px 0 0;
      color: var(--ps-muted);
      font-size: 12px;
      text-align: center;
    }

    .ps-calc__note {
      padding: 0 clamp(22px, 4vw, 48px) clamp(24px, 4vw, 42px);
      color: var(--ps-muted);
      font-size: 12px;
      text-align: center;
    }

    @container (max-width: 840px) {
      .ps-calc__body {
        grid-template-columns: 1fr;
      }

      .ps-calc__result {
        position: static;
      }
    }

    @container (max-width: 520px) {
      .ps-calc__shell {
        border-radius: 20px;
      }

      .ps-calc__intro::after {
        right: -125px;
        bottom: -170px;
      }

      .ps-field__top {
        display: block;
      }

      .ps-field label {
        display: block;
        max-width: none;
        margin-bottom: 10px;
      }

      .ps-field output {
        display: inline-block;
      }

      .ps-calc__facts {
        grid-template-columns: 1fr;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .ps-calc__cta {
        transition: none;
      }
    }
