@font-face {
  font-family: "Geist";
  src: url("console/fonts/geist-sans/Geist-Variable.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

@font-face {
  font-family: "Geist Mono";
  src: url("console/fonts/geist-mono/GeistMono-Variable.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

body.api-playground {
  --pg-ink: #151715;
  --pg-muted: #666b67;
  --pg-faint: #8a8f8b;
  --pg-line: #dfe1dc;
  --pg-soft: #f3f5f1;
  --pg-green: #116149;
  --pg-green-soft: #eaf4ef;
  --pg-code: #171a18;
  margin: 0;
  background: #fafbf9;
  color: var(--pg-ink);
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.api-playground *,
body.api-playground *::before,
body.api-playground *::after {
  box-sizing: border-box;
}

body.api-playground button,
body.api-playground input,
body.api-playground textarea {
  font: inherit;
}

body.api-playground a {
  color: inherit;
}

body.api-playground .api-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

body.api-playground .api-nav {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid rgba(223, 225, 220, 0.9);
  background: rgba(250, 251, 249, 0.92);
  backdrop-filter: blur(16px);
}

body.api-playground .api-nav-inner {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

body.api-playground .api-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--pg-ink);
  font-family: "Geist", sans-serif;
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  text-decoration: none;
}

body.api-playground .api-brand img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  box-shadow: none;
}

body.api-playground .api-brand small {
  margin-left: 2px;
  padding-left: 10px;
  border-left: 1px solid #cfd2cd;
  color: #858985;
  font-family: "Geist Mono", monospace;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

body.api-playground .api-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

body.api-playground .api-nav-links a {
  position: relative;
  color: #555955;
  font-size: 0.86rem;
  font-weight: 520;
  text-decoration: none;
}

body.api-playground .api-nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--pg-ink);
  content: "";
  transform: scaleX(0);
  transition: transform 150ms ease;
}

body.api-playground .api-nav-links a:hover::after,
body.api-playground .api-nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

body.api-playground .api-button,
body.api-playground .pg-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 17px;
  border: 1px solid #cfd1cd;
  border-radius: 8px;
  background: #fff;
  color: var(--pg-ink);
  font-family: "Geist", sans-serif;
  font-size: 0.84rem;
  font-weight: 620;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow: none;
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}

body.api-playground .api-button:hover,
body.api-playground .pg-button:hover {
  transform: none;
  border-color: #aeb2ad;
  background: #f7f8f6;
  box-shadow: none;
}

body.api-playground .api-button-dark {
  border-color: var(--pg-ink);
  background: var(--pg-ink);
  color: #fff;
}

body.api-playground .api-button-dark:hover {
  border-color: #2d302d;
  background: #2d302d;
  color: #fff;
}

body.api-playground .api-button-small {
  min-height: 38px;
  padding-inline: 14px;
  font-size: 0.8rem;
}

body.api-playground .pg {
  width: min(1180px, calc(100% - 48px));
  max-width: none;
  margin: 0 auto;
  padding: 74px 0 88px;
}

body.api-playground .pg-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  align-items: end;
  gap: 70px;
  margin: 0 0 40px;
  text-align: left;
}

body.api-playground .pg-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--pg-green);
  font-family: "Geist Mono", monospace;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.api-playground .pg-eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1e9a70;
  box-shadow: 0 0 0 4px #dfeee8;
}

body.api-playground .pg-head h1 {
  margin: 0;
  color: var(--pg-ink);
  font-family: "Geist", sans-serif;
  font-size: clamp(3.2rem, 5.2vw, 4.9rem);
  font-weight: 570;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

body.api-playground .pg-head > p {
  max-width: 520px;
  margin: 0 0 5px;
  color: var(--pg-muted);
  font-size: 1rem;
  line-height: 1.65;
}

body.api-playground .keybar {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(320px, 1fr);
  align-items: center;
  gap: 18px 28px;
  margin: 0 0 22px;
  padding: 20px 22px 17px;
  border: 1px solid var(--pg-line);
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
}

body.api-playground .keybar-label {
  display: flex;
  align-items: center;
  gap: 12px;
}

body.api-playground .keybar-lock {
  position: relative;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  border: 1px solid #c9cdc8;
  border-radius: 8px;
  background: var(--pg-soft);
}

body.api-playground .keybar-lock::before {
  position: absolute;
  top: 8px;
  left: 10px;
  width: 9px;
  height: 7px;
  border: 1.5px solid var(--pg-green);
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
  content: "";
}

body.api-playground .keybar-lock::after {
  position: absolute;
  top: 14px;
  left: 8px;
  width: 13px;
  height: 10px;
  border-radius: 2px;
  background: var(--pg-green);
  content: "";
}

body.api-playground .keybar label {
  display: block;
  color: var(--pg-ink);
  font-size: 0.82rem;
  font-weight: 650;
}

body.api-playground .keybar-label p {
  margin: 1px 0 0;
  color: var(--pg-faint);
  font-size: 0.72rem;
}

body.api-playground .keybar-control {
  display: flex;
  gap: 8px;
}

body.api-playground .keybar input {
  width: 100%;
  min-width: 0;
  padding: 10px 13px;
  border: 1px solid #cfd2cd;
  border-radius: 7px;
  outline: none;
  background: #fbfcfa;
  color: var(--pg-ink);
  font-family: "Geist Mono", monospace;
  font-size: 0.78rem;
}

body.api-playground .keybar input:focus,
body.api-playground .field input:focus,
body.api-playground .field textarea:focus {
  border-color: #5b8b77;
  box-shadow: 0 0 0 3px rgba(17, 97, 73, 0.09);
}

body.api-playground .pg-button-quiet {
  min-height: 40px;
  padding-inline: 13px;
  background: #fff;
}

body.api-playground .keybar .hint {
  grid-column: 1 / -1;
  width: auto;
  margin: -2px 0 0 43px;
  color: var(--pg-faint);
  font-size: 0.72rem;
}

body.api-playground .keybar .hint a {
  color: var(--pg-green);
  font-weight: 620;
}

body.api-playground .pg-workbench {
  display: grid;
  grid-template-columns: 246px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--pg-line);
  border-radius: 12px;
  background: #fff;
}

body.api-playground .tabs {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  margin: 0;
  padding: 16px 12px;
  border-right: 1px solid var(--pg-line);
  background: #f5f6f3;
}

body.api-playground .tabs::before {
  margin: 3px 9px 10px;
  color: #858a86;
  font-family: "Geist Mono", monospace;
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  content: "Endpoints";
}

body.api-playground .tabs button {
  display: grid;
  grid-template-columns: 37px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 49px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  color: #555a56;
  text-align: left;
  cursor: pointer;
}

body.api-playground .tabs button:hover {
  background: #eceeeb;
  color: var(--pg-ink);
}

body.api-playground .tabs button.active {
  border-color: #cadbd3;
  background: #fff;
  color: var(--pg-ink);
  box-shadow: 0 1px 2px rgba(20, 25, 21, 0.04);
}

body.api-playground .tab-method {
  color: #19805d;
  font-family: "Geist Mono", monospace;
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.03em;
}

body.api-playground .tabs button:nth-child(3) .tab-method,
body.api-playground .tabs button:nth-child(4) .tab-method,
body.api-playground .tabs button:nth-child(6) .tab-method,
body.api-playground .tabs button:nth-child(7) .tab-method {
  color: #6554a6;
}

body.api-playground .tab-label {
  overflow: hidden;
  font-size: 0.8rem;
  font-weight: 570;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.api-playground .tabs button .cost {
  color: #959a96;
  font-family: "Geist Mono", monospace;
  font-size: 0.58rem;
  font-weight: 550;
}

body.api-playground .tool-stack {
  min-width: 0;
}

body.api-playground .tool {
  display: none;
  min-height: 540px;
  padding: 34px 36px 38px;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

body.api-playground .tool.active {
  display: block;
}

body.api-playground .tool h2 {
  margin: 0 0 8px;
  color: var(--pg-ink);
  font-family: "Geist", sans-serif;
  font-size: 1.45rem;
  font-weight: 620;
  letter-spacing: -0.03em;
}

body.api-playground .tool .desc {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 30px;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--pg-line);
  color: var(--pg-muted);
  font-size: 0.84rem;
}

body.api-playground .tool .verb {
  margin: 0;
  padding: 2px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #197b59;
  font-family: "Geist Mono", monospace;
  font-size: 0.64rem;
  font-weight: 750;
}

body.api-playground .tool .epath {
  color: #292d29;
  font-family: "Geist Mono", monospace;
  font-size: 0.72rem;
  font-weight: 560;
}

body.api-playground .form-row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin: 0 0 10px;
}

body.api-playground .field {
  min-width: 150px;
}

body.api-playground .field.small {
  flex: 0 0 116px;
}

body.api-playground .field label {
  display: block;
  margin: 0 0 7px;
  color: #747975;
  font-family: "Geist Mono", monospace;
  font-size: 0.63rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.api-playground .field input,
body.api-playground .field textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #cfd2cd;
  border-radius: 7px;
  outline: none;
  background: #fbfcfa;
  color: var(--pg-ink);
  font-size: 0.9rem;
  resize: vertical;
}

body.api-playground .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 11px 0 24px;
}

body.api-playground .chips::before {
  display: flex;
  align-items: center;
  margin-right: 3px;
  color: #939793;
  font-family: "Geist Mono", monospace;
  font-size: 0.61rem;
  content: "Examples";
}

body.api-playground .chips button {
  padding: 5px 9px;
  border: 1px solid #d7d9d5;
  border-radius: 5px;
  background: #f7f8f6;
  color: #676b67;
  font-size: 0.72rem;
  cursor: pointer;
}

body.api-playground .chips button:hover {
  border-color: #87a99a;
  background: var(--pg-green-soft);
  color: var(--pg-green);
}

body.api-playground .run {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

body.api-playground .run .btn {
  display: inline-flex;
  min-width: 128px;
  min-height: 41px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid var(--pg-ink);
  border-radius: 7px;
  background: var(--pg-ink);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 620;
  cursor: pointer;
}

body.api-playground .run .btn:hover:not(:disabled) {
  background: #2d302d;
}

body.api-playground .run .btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

body.api-playground .meta-line {
  color: var(--pg-faint);
  font-size: 0.74rem;
}

body.api-playground .drop {
  padding: 34px 24px;
  border: 1px dashed #b9bdb9;
  border-radius: 8px;
  background: #f7f8f6;
  color: var(--pg-muted);
  text-align: center;
  cursor: pointer;
}

body.api-playground .drop:hover,
body.api-playground .drop.over {
  border-color: #6e9987;
  background: var(--pg-green-soft);
  color: var(--pg-green);
}

body.api-playground .drop-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  margin: 0 auto 12px;
  border: 1px solid #b9bdb9;
  border-radius: 8px;
  background: #fff;
  color: var(--pg-green);
  font-family: "Geist Mono", monospace;
  font-size: 1rem;
}

body.api-playground .drop strong {
  color: var(--pg-ink);
  font-weight: 620;
}

body.api-playground .drop small {
  display: block;
  margin-top: 5px;
  color: #8b908c;
  font-size: 0.68rem;
}

body.api-playground .drop img {
  display: block;
  max-width: 100%;
  max-height: 220px;
  margin: 16px auto 0;
  border-radius: 7px;
}

body.api-playground .out {
  display: none;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--pg-line);
}

body.api-playground .out.show {
  display: block;
}

body.api-playground .cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 14px;
}

body.api-playground .macro {
  padding: 14px;
  border: 1px solid var(--pg-line);
  border-radius: 7px;
  background: #f8f9f7;
}

body.api-playground .macro .n {
  color: var(--pg-ink);
  font-size: 1.35rem;
  font-weight: 620;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

body.api-playground .macro .l {
  margin-top: 4px;
  color: var(--pg-faint);
  font-family: "Geist Mono", monospace;
  font-size: 0.61rem;
  text-transform: uppercase;
}

body.api-playground .foodlist {
  display: grid;
  gap: 0;
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid var(--pg-line);
  border-radius: 7px;
}

body.api-playground .fitem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--pg-line);
  background: #fff;
}

body.api-playground .fitem:last-child {
  border-bottom: 0;
}

body.api-playground .fitem .nm,
body.api-playground .recipe .t {
  color: var(--pg-ink);
  font-size: 0.82rem;
  font-weight: 600;
}

body.api-playground .fitem .mc,
body.api-playground .recipe .s {
  color: var(--pg-muted);
  font-size: 0.71rem;
  text-align: right;
}

body.api-playground .fitem .cal {
  color: var(--pg-green);
  font-weight: 650;
}

body.api-playground .conf,
body.api-playground .source-tag {
  display: inline-flex;
  margin-left: 7px;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--pg-green-soft);
  color: var(--pg-green);
  font-family: "Geist Mono", monospace;
  font-size: 0.58rem;
  font-weight: 650;
}

body.api-playground .recipe {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  padding: 12px;
  border: 1px solid var(--pg-line);
  border-radius: 7px;
  background: #fff;
}

body.api-playground .recipe img {
  width: 62px;
  height: 62px;
  flex: none;
  border-radius: 6px;
  object-fit: cover;
}

body.api-playground .scorehead {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 15px;
}

body.api-playground .grade {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
}

body.api-playground .scorehead .sc {
  font-size: 0.95rem;
  font-weight: 620;
}

body.api-playground .reasons {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.api-playground .reasons li {
  position: relative;
  padding-left: 15px;
  color: var(--pg-muted);
  font-size: 0.8rem;
}

body.api-playground .reasons li::before {
  position: absolute;
  left: 2px;
  color: var(--pg-green);
  content: "–";
}

body.api-playground .nutgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
  margin-top: 6px;
}

body.api-playground .nutgrid .nr {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid var(--pg-line);
  font-size: 0.76rem;
}

body.api-playground .nutgrid .nr .v {
  color: var(--pg-muted);
}

body.api-playground .raw-wrap {
  margin-top: 16px;
}

body.api-playground .raw-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 14px 0 7px;
}

body.api-playground .raw-head .lbl {
  color: #838884;
  font-family: "Geist Mono", monospace;
  font-size: 0.61rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.api-playground .raw-head button {
  padding: 4px 8px;
  border: 1px solid #3d423e;
  border-radius: 4px;
  background: #232724;
  color: #bec5c0;
  font-family: "Geist Mono", monospace;
  font-size: 0.62rem;
  cursor: pointer;
}

body.api-playground .code {
  overflow-x: auto;
  margin: 0;
  padding: 16px;
  border: 1px solid #292e2a;
  border-radius: 8px;
  background: var(--pg-code);
  color: #e2e7e3;
  font-family: "Geist Mono", monospace;
  font-size: 0.7rem;
  line-height: 1.62;
  white-space: pre-wrap;
  word-break: break-word;
}

body.api-playground .code .k { color: #8dd5b7; }
body.api-playground .code .s { color: #b8d98a; }
body.api-playground .code .c { color: #747d77; }

body.api-playground .ratebar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

body.api-playground .rl {
  padding: 4px 7px;
  border: 1px solid var(--pg-line);
  border-radius: 4px;
  background: #f7f8f6;
  color: var(--pg-muted);
  font-family: "Geist Mono", monospace;
  font-size: 0.61rem;
}

body.api-playground .rl b {
  color: var(--pg-ink);
}

body.api-playground .err {
  padding: 13px 14px;
  border: 1px solid #e8c7c4;
  border-radius: 7px;
  background: #fff6f4;
  color: #9d3c34;
  font-size: 0.8rem;
}

body.api-playground .err a {
  font-weight: 650;
}

body.api-playground .spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: pg-spin 0.7s linear infinite;
}

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

body.api-playground .pg-next {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-top: 24px;
  padding: 38px 40px;
  border-radius: 11px;
  background: #0f4e3b;
  color: #fff;
}

body.api-playground .pg-next .pg-eyebrow {
  color: #a9d3c1;
}

body.api-playground .pg-next h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 580;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

body.api-playground .pg-next > div > p:last-child {
  max-width: 590px;
  margin: 10px 0 0;
  color: #c2d8ce;
  font-size: 0.85rem;
}

body.api-playground .pg-next-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 18px;
}

body.api-playground .pg-button-light {
  border-color: #fff;
  background: #fff;
  color: #123e31;
}

body.api-playground .pg-text-link {
  color: #e4eee9;
  font-size: 0.8rem;
  font-weight: 570;
  text-decoration: none;
}

body.api-playground .api-footer {
  padding: 30px 0;
  border: 0;
  background: #111412;
}

body.api-playground .api-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

body.api-playground .api-footer .api-brand span {
  color: #fff;
}

body.api-playground .api-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

body.api-playground .api-footer-links a,
body.api-playground .api-footer small {
  color: #9ca19d;
  font-size: 0.75rem;
  text-decoration: none;
}

body.api-playground .api-footer-links a:hover {
  color: #fff;
}

@media (max-width: 900px) {
  body.api-playground .api-nav-links {
    display: none;
  }

  body.api-playground .pg {
    padding-top: 58px;
  }

  body.api-playground .pg-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body.api-playground .keybar {
    grid-template-columns: 1fr;
  }

  body.api-playground .keybar .hint {
    grid-column: auto;
    margin-left: 43px;
  }

  body.api-playground .pg-workbench {
    grid-template-columns: 1fr;
  }

  body.api-playground .tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--pg-line);
  }

  body.api-playground .tabs::before {
    grid-column: 1 / -1;
  }

  body.api-playground .tool {
    min-height: 0;
  }
}

@media (max-width: 650px) {
  body.api-playground .api-shell,
  body.api-playground .pg {
    width: min(100% - 32px, 1180px);
  }

  body.api-playground .api-brand small {
    display: none;
  }

  body.api-playground .api-nav .api-button-small {
    min-height: 36px;
    padding-inline: 11px;
  }

  body.api-playground .pg {
    padding: 48px 0 64px;
  }

  body.api-playground .pg-head h1 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  body.api-playground .keybar {
    padding: 17px;
  }

  body.api-playground .keybar-control {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  body.api-playground .keybar .hint {
    margin-left: 0;
  }

  body.api-playground .tabs {
    grid-template-columns: 1fr;
  }

  body.api-playground .tool {
    padding: 26px 20px 28px;
  }

  body.api-playground .tool .desc {
    align-items: flex-start;
  }

  body.api-playground .form-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  body.api-playground .field.small {
    width: 100%;
  }

  body.api-playground .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.api-playground .nutgrid {
    grid-template-columns: 1fr;
  }

  body.api-playground .fitem {
    align-items: flex-start;
  }

  body.api-playground .pg-next {
    display: block;
    padding: 30px 24px;
  }

  body.api-playground .pg-next-actions {
    margin-top: 24px;
  }

  body.api-playground .api-footer-inner {
    align-items: flex-start;
  }

  body.api-playground .api-footer-links {
    gap: 14px 20px;
  }
}

@media (max-width: 390px) {
  body.api-playground .tabs button {
    grid-template-columns: 36px minmax(0, 1fr) auto;
  }

  body.api-playground .pg-next-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.api-playground *,
  body.api-playground *::before,
  body.api-playground *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
