
:root {
  color-scheme: light;
  --bg: #f7f5ef;
  --panel: #ffffff;
  --panel-2: #f0eee7;
  --ink: #171717;
  --muted: #55524d;
  --soft: #7c776e;
  --rule: #d8d3c8;
  --rule-2: #ece7dc;
  --accent: #c83a2b;
  --accent-dark: #8c281f;
  --ok: #256f45;
  --warn: #9f6a18;
  --bad: #9c2b25;
  --info: #265f8f;
  --code: #151515;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background:
    linear-gradient(90deg, rgba(38, 95, 143, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(200, 58, 43, 0.025) 1px, transparent 1px),
    var(--bg);
  background-size: 32px 32px, 32px 32px, auto;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 24px;
  background: rgba(247, 245, 239, 0.94);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
  font-weight: 700;
}

.mark {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.58);
}

.brand span:last-child {
  color: var(--soft);
  font-weight: 600;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}

.nav a {
  border: 1px solid transparent;
  padding: 7px 10px;
  text-decoration: none;
  color: var(--muted);
  font-size: 13px;
}

.nav a[aria-current="page"] {
  border-color: var(--rule);
  background: var(--panel);
  color: var(--ink);
}

.nav a:hover {
  color: var(--accent);
}

.top-status {
  min-width: 180px;
  display: flex;
  justify-content: flex-end;
}

.shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 24px 72px;
}

.page-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
}

.eyebrow {
  color: var(--soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

h1 {
  margin: 6px 0 0;
  max-width: 760px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2,
h3,
h4,
p {
  margin-top: 0;
}

.lede {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--rule);
  background: var(--panel);
  padding: 5px 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--soft);
}

.badge.ok::before {
  background: var(--ok);
}

.badge.warn::before {
  background: var(--warn);
}

.badge.bad::before {
  background: var(--bad);
}

.badge.unstamped {
  border-style: dashed;
}

.badge.unstamped::before {
  background: transparent;
  border: 1px dashed var(--soft);
}

.notice {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  border: 1px dashed var(--rule);
  background: var(--panel-2);
  padding: 14px;
  color: var(--muted);
  margin-bottom: 18px;
}

.notice strong {
  color: var(--ink);
}

.status-grid,
.surface-grid,
.state-grid,
.endpoint-grid,
.runtime-grid {
  display: grid;
  gap: 12px;
}

.status-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 18px;
}

.surface-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.state-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.endpoint-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.runtime-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 14px;
}

.panel,
.surface-card,
.state-card,
.endpoint-card,
.status-cell,
.runtime-cell {
  border: 1px solid var(--rule);
  background: var(--panel);
}

.panel {
  padding: 18px;
  margin-bottom: 18px;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.panel-heading h2 {
  margin: 0;
}

.iris-map {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.75fr) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}

.chain-node,
.relay-link {
  border: 1px solid var(--rule-2);
  background: var(--panel-2);
  padding: 16px;
}

.chain-node {
  display: grid;
  gap: 8px;
  border-top: 4px solid var(--soft);
}

.chain-node.ok {
  border-top-color: var(--ok);
}

.chain-node.bad {
  border-top-color: var(--bad);
}

.chain-node span,
.chain-node small,
.relay-link small {
  color: var(--soft);
}

.chain-node strong,
.relay-link strong {
  overflow-wrap: anywhere;
}

.relay-link {
  display: grid;
  place-items: center;
  gap: 8px;
  text-align: center;
}

.panel h2,
.surface-card h2,
.state-card h3,
.endpoint-card h3 {
  margin-bottom: 8px;
  font-size: 16px;
}

.surface-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 220px;
  padding: 18px;
  text-decoration: none;
}

.surface-card:hover {
  border-color: var(--accent);
}

.surface-card p,
.state-card p,
.endpoint-card p {
  color: var(--muted);
  font-size: 14px;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--rule-2);
  color: var(--soft);
  font-size: 13px;
}

.status-cell {
  padding: 13px;
}

.runtime-cell {
  padding: 12px;
}

.status-cell .label,
.endpoint-card .method,
.runtime-cell span {
  color: var(--soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.status-cell .value {
  margin-top: 5px;
  font-weight: 750;
}

.runtime-cell strong {
  display: block;
  margin-top: 4px;
  overflow-wrap: anywhere;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 18px;
  align-items: start;
}

.form-stack {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--rule);
  background: var(--bg);
  color: var(--ink);
  padding: 11px 12px;
  font: inherit;
  text-transform: none;
  letter-spacing: 0;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(200, 58, 43, 0.18);
  border-color: var(--accent);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

button,
.button-link {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--panel);
  padding: 10px 13px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

button:disabled {
  border-color: var(--rule);
  background: var(--panel-2);
  color: var(--soft);
  cursor: not-allowed;
}

.button-link.secondary {
  background: var(--panel);
  color: var(--ink);
}

.state-card,
.endpoint-card {
  padding: 14px;
}

.state-card strong {
  display: block;
  margin-bottom: 6px;
}

.state-card.ok {
  border-top: 4px solid var(--ok);
}

.state-card.warn {
  border-top: 4px solid var(--warn);
}

.state-card.bad {
  border-top: 4px solid var(--bad);
}

.state-card.unstamped {
  border-top: 4px dashed var(--soft);
}

code,
.mono {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

code {
  border: 1px solid var(--rule-2);
  background: var(--panel-2);
  padding: 1px 4px;
}

.endpoint-card code {
  display: block;
  margin-top: 8px;
  overflow-wrap: anywhere;
}

.owner-boundary {
  border-left: 4px solid var(--info);
}

.footer {
  margin-top: 36px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--soft);
  font-size: 12px;
  border-top: 1px solid var(--rule);
  padding-top: 16px;
}

@media (max-width: 900px) {
  .topbar,
  .page-head,
  .split {
    grid-template-columns: 1fr;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .top-status {
    justify-content: flex-start;
  }

  .status-grid,
  .surface-grid,
  .state-grid,
  .endpoint-grid,
  .runtime-grid,
  .iris-map {
    grid-template-columns: 1fr;
  }
}

.consumer-body {
  min-height: 100vh;
  overflow-x: hidden;
  background: #f8f6f1;
  color: #171513;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.consumer-header {
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 0 32px;
  border-bottom: 1px solid #d8d1c7;
  background: #f8f6f1;
}

.consumer-wordmark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}

.consumer-nav {
  display: flex;
  gap: 28px;
}

.consumer-nav a {
  color: #4d4944;
  font-size: 13px;
  text-decoration: none;
}

.consumer-nav a:hover,
.consumer-nav a:focus-visible {
  color: #6e1a20;
}

.consumer-edition {
  justify-self: end;
  color: #6f6962;
  font-size: 12px;
}

.consumer-hero {
  position: relative;
  min-height: min(690px, calc(100vh - 72px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  align-items: center;
  gap: 48px;
  padding: 56px clamp(24px, 6vw, 96px);
  overflow: hidden;
  background: #302c27;
}

.consumer-hero-image,
.consumer-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.consumer-hero-image {
  object-fit: cover;
  object-position: center;
}

.consumer-hero-shade {
  background: rgba(18, 15, 13, 0.36);
}

.consumer-hero-copy,
.consumer-access {
  position: relative;
  z-index: 1;
}

.consumer-hero-copy {
  max-width: 620px;
  color: #fffaf3;
  align-self: end;
  padding-bottom: 28px;
}

.consumer-kicker,
.consumer-access-index,
.consumer-columns article > span {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.consumer-kicker {
  color: #eee4d8;
}

.consumer-hero h1 {
  max-width: none;
  margin: 14px 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 0.98;
}

.consumer-intro {
  max-width: 520px;
  margin: 0;
  color: #f1eae1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.55;
}

.consumer-access {
  align-self: center;
  padding: 28px;
  border-top: 3px solid #6e1a20;
  background: #fdfbf7;
  color: #171513;
  box-shadow: 0 18px 48px rgba(16, 13, 11, 0.28);
}

.consumer-access-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
  color: #6e1a20;
}

.consumer-lock {
  font-size: 20px;
}

.consumer-access h2 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.15;
}

.consumer-access > p {
  color: #5c5751;
  font-size: 14px;
}

.consumer-disclosure {
  margin: 22px 0;
  border-top: 1px solid #ddd6cd;
}

.consumer-disclosure div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #ddd6cd;
}

.consumer-disclosure dt {
  color: #817a72;
  font-size: 12px;
}

.consumer-disclosure dd {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}

.consumer-access button {
  width: 100%;
  min-height: 50px;
  border: 0;
  background: #6e1a20;
  color: #faf8f5;
  font-size: 12px;
}

.consumer-access button:disabled {
  background: #d8d1c7;
  color: #716a63;
}

.consumer-access .consumer-unavailable {
  margin: 10px 0 0;
  color: #716a63;
  font-size: 12px;
  text-align: center;
}

.consumer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 32px 56px;
}

.consumer-columns article {
  min-height: 170px;
  padding: 0 28px;
  border-left: 1px solid #d8d1c7;
}

.consumer-columns article:last-child {
  border-right: 1px solid #d8d1c7;
}

.consumer-columns article > span {
  color: #6e1a20;
}

.consumer-columns h2 {
  margin: 24px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
}

.consumer-columns p {
  max-width: 310px;
  color: #5c5751;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.6;
}

.consumer-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 32px;
  border-top: 1px solid #d8d1c7;
  color: #716a63;
  font-size: 12px;
}

@media (max-width: 760px) {
  .consumer-header {
    min-height: 64px;
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }

  .consumer-nav {
    display: none;
  }

  .consumer-edition {
    display: none;
  }

  .consumer-hero {
    width: 100%;
    min-width: 0;
    max-width: 100vw;
    min-height: 780px;
    grid-template-columns: minmax(0, 1fr);
    align-content: end;
    gap: 24px;
    padding: 48px 20px 24px;
  }

  .consumer-hero-image {
    object-position: 62% center;
  }

  .consumer-hero-copy {
    min-width: 0;
    align-self: auto;
    padding: 0;
  }

  .consumer-hero h1 {
    font-size: 44px;
  }

  .consumer-intro {
    max-width: 330px;
    font-size: 16px;
  }

  .consumer-access {
    width: auto;
    min-width: 0;
    max-width: 100%;
    padding: 22px;
  }

  .consumer-access p,
  .consumer-access dd {
    overflow-wrap: anywhere;
  }

  .consumer-access-head {
    margin-bottom: 18px;
  }

  .consumer-access h2 {
    font-size: 24px;
  }

  .consumer-columns {
    grid-template-columns: 1fr;
    padding: 36px 20px;
  }

  .consumer-columns article,
  .consumer-columns article:last-child {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-left: 0;
    border-top: 1px solid #d8d1c7;
  }

  .consumer-footer {
    flex-direction: column;
    padding: 20px;
  }
}

/* Faucet is a public utility surface, deliberately distinct from the editorial Consumer. */
.faucet-body {
  margin: 0;
  min-width: 320px;
  background: #f1f3f1;
  color: #171918;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.faucet-header {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 32px;
  border-bottom: 1px solid #ced3cf;
  background: #fafbfa;
}

.faucet-brand {
  display: flex;
  align-items: baseline;
  gap: 14px;
  text-decoration: none;
}

.faucet-brand strong {
  color: #6e1a20;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0;
}

.faucet-brand span,
.faucet-environment {
  color: #5d625f;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faucet-main {
  width: min(1180px, calc(100% - 48px));
  margin: 24px auto 64px;
}

.faucet-hero {
  display: grid;
  min-height: 280px;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  overflow: hidden;
  border: 1px solid #c9ceca;
  background: #17201c;
}

.faucet-hero img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.faucet-hero-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  color: #f7f8f7;
}

.faucet-kicker,
.faucet-section-label {
  margin: 0 0 12px;
  color: #9dab9f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.faucet-hero h1 {
  max-width: 420px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.05;
}

.faucet-hero-copy > p:last-child {
  max-width: 380px;
  margin: 20px 0 0;
  color: #cbd2cd;
  font-size: 16px;
  line-height: 1.55;
}

.faucet-workspace {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: 0;
  margin-top: 24px;
  border: 1px solid #c9ceca;
  background: #fafbfa;
}

.faucet-overview,
.faucet-request {
  min-width: 0;
  padding: 36px;
}

.faucet-overview {
  border-right: 1px solid #d8dcd9;
}

.faucet-overview .faucet-section-label,
.faucet-request .faucet-section-label,
.faucet-result .faucet-section-label {
  color: #6e1a20;
}

.faucet-overview h2,
.faucet-request h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
}

.faucet-copy {
  max-width: 480px;
  margin: 18px 0 30px;
  color: #555c58;
  font-size: 15px;
  line-height: 1.6;
}

.faucet-facts {
  margin: 0;
  border-top: 1px solid #d8dcd9;
}

.faucet-facts div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid #d8dcd9;
}

.faucet-facts dt {
  color: #737a75;
  font-size: 12px;
}

.faucet-facts dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 12px;
}

.faucet-request-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.faucet-state {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6e746f;
  font-size: 12px;
  font-weight: 600;
}

.faucet-state::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8f9691;
  content: "";
}

.faucet-state.is-ready::before {
  background: #2f6b4a;
}

.faucet-request form {
  display: flex;
  flex-direction: column;
}

.faucet-request label {
  margin-bottom: 8px;
  color: #353a37;
  font-size: 13px;
  font-weight: 650;
}

.faucet-request input {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid #aeb5b0;
  border-radius: 4px;
  background: #ffffff;
  color: #171918;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 14px;
}

.faucet-request input:focus {
  border-color: #6e1a20;
  outline: 2px solid #6e1a20;
  outline-offset: 2px;
}

.faucet-request input:disabled {
  background: #ecefed;
  color: #7b817d;
}

.faucet-help,
.faucet-availability {
  margin: 10px 0 0;
  color: #686f6a;
  font-size: 12px;
  line-height: 1.5;
}

.faucet-request button,
.faucet-back {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 0 20px;
  border: 0;
  border-radius: 4px;
  background: #6e1a20;
  color: #fff8f6;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.faucet-request button:disabled {
  background: #c7cbc8;
  color: #666c68;
  cursor: not-allowed;
}

.faucet-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 32px;
  border-top: 1px solid #ced3cf;
  background: #fafbfa;
  color: #6b716d;
  font-size: 12px;
}

.faucet-result-main {
  display: grid;
  min-height: calc(100vh - 73px);
  place-items: center;
  padding: 32px 24px;
}

.faucet-result {
  width: min(620px, 100%);
  padding: 40px;
  border: 1px solid #c9ceca;
  background: #fafbfa;
}

.faucet-result h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 500;
}

.faucet-result > p:not(.faucet-section-label) {
  margin: 16px 0 0;
  color: #555c58;
}

.faucet-result dl {
  margin: 28px 0 0;
  border-top: 1px solid #d8dcd9;
}

.faucet-result dl div {
  padding: 14px 0;
  border-bottom: 1px solid #d8dcd9;
}

.faucet-result dt {
  margin-bottom: 4px;
  color: #737a75;
  font-size: 12px;
}

.faucet-result dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.faucet-mono {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 12px;
}

@media (max-width: 760px) {
  .faucet-header {
    min-height: 64px;
    padding: 0 20px;
  }

  .faucet-environment {
    display: none;
  }

  .faucet-main {
    width: calc(100% - 32px);
    margin-top: 16px;
  }

  .faucet-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .faucet-hero img {
    height: 210px;
    min-height: 210px;
  }

  .faucet-hero-copy {
    padding: 28px 24px;
  }

  .faucet-hero h1 {
    font-size: 38px;
  }

  .faucet-workspace {
    grid-template-columns: minmax(0, 1fr);
  }

  .faucet-overview,
  .faucet-request {
    padding: 28px 24px;
  }

  .faucet-overview {
    border-right: 0;
    border-bottom: 1px solid #d8dcd9;
  }

  .faucet-request {
    order: -1;
    border-bottom: 1px solid #d8dcd9;
  }

  .faucet-request-head {
    flex-direction: column;
  }

  .faucet-footer {
    flex-direction: column;
    padding: 20px;
  }
}
