:root {
  color-scheme: dark;
  --bg: #090d0b;
  --surface: #101613;
  --surface-2: #161e1a;
  --surface-3: #1c2721;
  --line: #2a3730;
  --line-strong: #3b4c43;
  --text: #edf4f0;
  --muted: #95a69d;
  --faint: #66766d;
  --green: #49db8a;
  --green-deep: #173c28;
  --cyan: #55c8d8;
  --amber: #e8b454;
  --red: #ed6a5e;
  --shadow: 0 16px 42px rgba(0, 0, 0, .22);
  --type-page-title: 36px;
  --type-section-title: 16px;
  --type-data: 20px;
  --type-label: 11px;
  --type-note: 11px;
  --card-radius: 8px;
  --card-pad: 18px;
  --metric-height: 104px;
}

* { box-sizing: border-box; }
html.i18n-pending body { visibility: hidden; }
html, body { min-height: 100%; margin: 0; }
body {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Noto Sans SC", "Microsoft YaHei", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
button, input { font: inherit; letter-spacing: 0; }
button { cursor: pointer; }
code, time, [data-share-count], .pool-metrics strong, .record-totals strong {
  font-variant-numeric: tabular-nums;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 70px;
  padding: 0 max(24px, calc((100% - 1240px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(9, 13, 11, .94);
  backdrop-filter: blur(14px);
}
.brand { display: flex; align-items: center; gap: 10px; width: max-content; text-decoration: none; }
.brand > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--green);
  color: #07140d;
  font-size: 16px;
  font-weight: 800;
}
.brand b, .brand small { display: block; }
.brand b { font-size: 16px; line-height: 1.15; }
.brand small { margin-top: 4px; color: var(--muted); font-size: 9px; font-weight: 600; letter-spacing: 0; }
.topbar nav { display: flex; align-self: stretch; gap: 28px; }
.topbar nav a {
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 550;
  text-decoration: none;
}
.topbar nav a:hover { color: var(--text); }
.topbar nav a.active { border-color: var(--green); color: var(--text); }
.top-actions { justify-self: end; display: flex; align-items: center; gap: 14px; }
.language-toggle, .copy-button, .pagination button {
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: var(--surface-2);
  color: var(--text);
}
.language-toggle { min-width: 46px; padding: 7px 10px; }
.language-toggle:hover, .copy-button:hover, .pagination button:hover { border-color: var(--green); }
.online { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 12px; white-space: nowrap; }
.online i, .miner-summary header span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(73, 219, 138, .11);
}
.online em, .miner-summary header em { font-style: normal; }

.screen {
  flex: 1 0 auto;
  width: min(1240px, calc(100% - 48px));
  min-height: calc(100vh - 70px);
  margin: 0 auto;
  padding: 34px 0 46px;
}
.eyebrow { color: var(--green); font-size: 11px; font-weight: 750; letter-spacing: 0; }
.pool-hero h1, .records-head h1, .miner-head h1, .guide-head h1 {
  margin: 10px 0 12px;
  font-size: var(--type-page-title);
  line-height: 1.12;
  letter-spacing: 0;
}
.pool-hero p, .records-head p, .guide-head p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.75; }

/* Pool */
.pool-screen { display: grid; gap: 18px; }
.pool-hero { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr); gap: 44px; align-items: center; }
.pool-hero > div:first-child p { max-width: 760px; }
.reward-box {
  padding: var(--card-pad);
  border: 1px solid #355c46;
  border-radius: var(--card-radius);
  background: #10291b;
  box-shadow: var(--shadow);
}
.reward-box small, .reward-box strong, .reward-box span { display: block; }
.reward-box small { color: #b2c7bb; font-size: 12px; }
.reward-box strong { margin: 9px 0 2px; font-size: 30px; line-height: 1.2; }
.reward-box span { color: var(--green); }
.reward-box i { font-style: normal; }
.reward-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin: 15px 0 10px; background: #315140; }
.reward-values > div { padding: 11px; background: #12271b; }
.reward-values small, .reward-values b { display: block; }
.reward-values b { margin-top: 4px; font-size: 16px; }
.reward-source { color: #91a79a !important; font-size: 10px !important; }
.reward-source i { font-style: normal; }
.pool-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}
.pool-metrics article { min-width: 0; min-height: var(--metric-height); padding: 16px; background: var(--surface); }
.pool-metrics small, .pool-metrics strong, .pool-metrics span, .pool-metrics a { display: block; }
.pool-metrics small { color: var(--muted); font-size: var(--type-label); }
.pool-metrics strong { margin: 9px 0 5px; font-size: var(--type-data); line-height: 1.2; }
.pool-metrics span, .pool-metrics a { color: var(--faint); font-size: 11px; }
.pool-metrics a { color: var(--green); text-decoration: none; }
.up, .live { color: var(--green) !important; }
.home-search {
  display: grid;
  grid-template-columns: 130px minmax(260px, 540px);
  gap: 8px 16px;
  align-items: center;
  padding: var(--card-pad);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}
.home-search label { font-size: 13px; font-weight: 650; }
.home-search > div, .address-search > div { display: grid; grid-template-columns: 1fr auto; }
.home-search input, .address-search input {
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 7px 0 0 7px;
  outline: 0;
  background: #0c110f;
  color: var(--text);
}
.home-search input:focus, .address-search input:focus { border-color: var(--green); }
.home-search button, .address-search button {
  border: 0;
  border-radius: 0 7px 7px 0;
  padding: 0 18px;
  background: var(--green);
  color: #07140d;
  font-weight: 750;
}
.home-search > small { grid-column: 2; color: var(--muted); font-size: 11px; }
.home-links { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px; color: var(--muted); font-size: 12px; }
.home-links a { color: var(--text); font-weight: 650; }

/* Connection guide */
.guide-screen { display: grid; gap: 20px; }
.guide-head { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 40px; align-items: end; }
.guide-head p { max-width: 800px; }
.latency-card {
  min-height: var(--metric-height);
  padding: var(--card-pad);
  border: 1px solid #355c46;
  border-radius: 8px;
  background: #10291b;
}
.latency-card small, .latency-card strong, .latency-card span { display: block; }
.latency-card small, .latency-card span { color: var(--muted); font-size: 11px; }
.latency-card strong { margin: 7px 0 3px; color: var(--cyan); font-size: 28px; }
.setup-panel {
  display: grid;
  grid-template-columns: 1.35fr 1fr .58fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}
.setup-step { display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 13px; min-height: 132px; padding: var(--card-pad); background: var(--surface); }
.setup-step > span, .guide-number {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid #356349;
  border-radius: 7px;
  color: var(--green);
  font-size: 11px;
  font-weight: 750;
}
.setup-step small, .setup-step em { display: block; }
.setup-step small { margin-bottom: 7px; color: var(--muted); font-size: 11px; }
.setup-step em { margin-top: 8px; color: var(--muted); font-size: 10px; font-style: normal; line-height: 1.55; }
.guide-copy {
  display: flex;
  align-items: center;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: #0a110e;
}
.guide-copy code {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  padding: 10px 12px;
  color: var(--cyan);
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.guide-copy .copy-button { align-self: stretch; border-width: 0 0 0 1px; border-radius: 0; background: #142019; }
.setup-step:first-child .guide-copy code { font-size: 13px; }
.setup-step:first-child .guide-copy .copy-button { width: 72px; padding-inline: 8px; }
.copy-button { flex: none; padding: 7px 11px; color: var(--green); }
.copy-button:disabled { cursor: not-allowed; opacity: .45; }
.guide-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.guide-section {
  position: relative;
  min-height: 154px;
  padding: var(--card-pad) var(--card-pad) var(--card-pad) 60px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}
.guide-number { position: absolute; top: var(--card-pad); left: var(--card-pad); background: rgba(73, 219, 138, .06); }
.guide-section h2 { margin: 1px 0 9px; font-size: var(--type-section-title); }
.guide-section p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.guide-footnote { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.65; }

/* Shared records and tables */
.records-screen, .miners-screen { display: grid; align-content: start; gap: 12px; padding-top: 10px; }
.records-head { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 28px; align-items: end; }
.records-head h1 { margin: 5px 0 7px; font-size: var(--type-page-title); }
.records-head p { max-width: 760px; font-size: 13px; line-height: 1.6; }
.record-totals { display: grid; grid-auto-flow: column; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); }
.record-totals div { min-width: 140px; padding: 11px 15px; border-right: 1px solid var(--line); }
.record-totals div:last-child { border-right: 0; }
.record-totals small, .record-totals strong { display: block; }
.record-totals small { color: var(--muted); font-size: var(--type-label); }
.record-totals strong { margin-top: 3px; font-size: var(--type-data); }
.records-layout { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(270px, .55fr); gap: 14px; }
.records-panel, .miners-list-panel, .miner-summary, .mini-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}
.records-panel, .miners-list-panel { min-width: 0; padding: var(--card-pad); overflow: hidden; }
.records-panel header, .mini-panel header { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.records-panel h2, .mini-panel h2 { margin: 0; font-size: var(--type-section-title); }
.records-panel header span, .mini-panel header span { color: var(--muted); font-size: 11px; }
.table-scroll { overflow: auto; max-width: 100%; }
.records-panel table, .miners-table, .mini-panel table, .peer-table { width: 100%; border-collapse: collapse; }
.records-panel th, .records-panel td, .miners-table th, .miners-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 12px;
  white-space: nowrap;
}
.records-panel th, .miners-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--surface);
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}
.records-panel tbody tr:hover, .miners-table tbody tr:hover { background: rgba(73, 219, 138, .035); }
.records-panel td a, .miners-table td a, .chain-links a { color: var(--green); text-decoration: none; }
.paid { padding: 4px 7px; border-radius: 99px; background: rgba(73, 219, 138, .1); color: var(--green); }
.leaderboard > div { margin-top: 8px; }
.leader-row { display: grid; grid-template-columns: 28px minmax(0, 1fr) auto; gap: 9px; align-items: center; padding: 11px 2px; border-bottom: 1px solid var(--line); }
.leader-row > span { color: var(--faint); font-size: 11px; }
.leader-row p { min-width: 0; margin: 0; }
.leader-row b, .leader-row small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.leader-row b { font-size: 12px; }
.leader-row small { color: var(--muted); font-size: 10px; }
.leader-row strong { color: var(--green); font-size: 18px; }
.leader-row strong i { color: var(--muted); font-size: 9px; font-style: normal; }
.pagination { display: flex; justify-content: center; gap: 7px; padding-top: 14px; }
.pagination button { min-width: 36px; padding: 7px; color: var(--muted); }
.pagination button.active { border-color: var(--green); background: rgba(73, 219, 138, .08); color: var(--green); }

/* Miner dashboard */
.miner-screen { display: grid; align-content: start; gap: 10px; padding-top: 12px; }
.miner-head { display: flex; align-items: center; min-height: 28px; }
.miner-head > div { display: flex; align-items: baseline; gap: 10px; }
.miner-head h1 { margin: 0; font-size: 25px; line-height: 1.05; }
.address-search { display: grid; gap: 7px; }
.address-search label { color: var(--muted); font-size: 11px; }
.miner-layout { min-width: 0; }
.miner-summary { padding: 12px; }
.miner-summary > header { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.miner-summary header small, .miner-summary header strong { display: block; }
.miner-summary header small { color: var(--muted); font-size: 11px; }
.miner-summary header strong { max-width: min(72vw, 820px); margin-top: 2px; overflow: hidden; font-size: 15px; text-overflow: ellipsis; white-space: nowrap; }
.miner-summary header span { display: flex; align-items: center; gap: 8px; color: var(--green); font-size: 11px; }
.miner-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin: 11px 0 9px; background: var(--line); }
.miner-stats > div { min-height: 58px; padding: 7px 10px; background: var(--surface-2); }
.miner-stats small, .miner-stats strong, .miner-stats span, .miner-stats a { display: block; }
.miner-stats small { color: var(--muted); font-size: var(--type-label); }
.miner-stats strong { margin: 1px 0; font-size: 17px; line-height: 1.15; }
.miner-stats span, .miner-stats a { color: var(--faint); font-size: 10px; }
.miner-stats a { color: var(--green); }
.best-share-hero { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin-bottom: 9px; border: 1px solid #355c46; border-radius: 8px; overflow: hidden; background: #355c46; }
.best-share-hero > div { min-height: 60px; padding: 7px 10px; background: #10291b; }
.best-share-hero small, .best-share-hero strong, .best-share-hero span { display: block; }
.best-share-hero small { color: #a7bcae; font-size: 10px; }
.best-share-hero strong { margin: 1px 0; color: var(--cyan); font-size: 19px; line-height: 1.15; }
.best-share-hero span { color: var(--muted); font-size: 10px; }
.effort > div { display: flex; justify-content: space-between; gap: 14px; font-size: 12px; }
.effort-track { display: block; height: 7px; margin: 6px 0; overflow: hidden; border-radius: 99px; background: #27332d; }
.effort-track i { display: block; width: var(--effort-fill, 0%); height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--green), var(--cyan)); }
.effort.over-target .effort-track i { width: 100%; background: repeating-linear-gradient(135deg, var(--amber) 0, var(--amber) 8px, var(--red) 8px, var(--red) 16px); }
.effort.over-target > div strong { color: var(--amber); }
.effort p { margin: 0; padding: 7px 10px; border-left: 3px solid var(--amber); background: #211d12; color: #d8c9a5; font-size: 10px; line-height: 1.45; }
.side-stack { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr); gap: 10px; margin-top: 10px; }
.mini-panel { min-width: 0; padding: 12px; }
.workers-scroll { height: 140px; margin-top: 7px; overflow-y: auto; overscroll-behavior: contain; padding-right: 4px; }
.worker-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; }
.worker-card { min-width: 0; padding: 9px; border: 1px solid var(--line); border-radius: 7px; background: var(--surface-2); }
.worker-card header { display: flex; justify-content: space-between; gap: 8px; }
.worker-card header b { overflow: hidden; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.worker-card header span { color: var(--muted); font-size: 9px; }
.worker-card > strong { display: block; margin: 3px 0; font-size: 16px; }
.worker-card p { display: grid; grid-template-columns: 1fr auto auto; gap: 6px; margin: 0; }
.worker-card p small { color: var(--muted); font-size: 9px; }
.worker-card p b, .worker-card p em { font-size: 10px; }
.worker-card p em { color: var(--green); font-style: normal; }
.share-panel .share-list { height: 140px; max-height: 140px; overflow-y: auto; }
.share-list p { display: grid; grid-template-columns: 22px minmax(0, 1fr) auto; gap: 7px; align-items: center; margin: 0; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 10px; }
.share-list p > i { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: rgba(73, 219, 138, .1); color: var(--green); font-style: normal; }
.share-list small, .share-list time { color: var(--muted); }
.mini-panel table { margin-top: 8px; }
.mini-panel th, .mini-panel td { padding: 7px 5px; border-bottom: 1px solid var(--line); text-align: left; font-size: 10px; }
.mini-panel th { color: var(--muted); font-weight: 600; }
.mini-panel td:nth-child(n+2), .mini-panel th:nth-child(n+2) { text-align: right; }
.chain-links { display: flex; gap: 8px; white-space: nowrap; }
.best-share-value { position: relative; display: inline-block; }
.best-share-value.best-share-new { z-index: 2; padding: 2px 5px; border-radius: 5px; background: var(--green); color: #07140d !important; animation: best-share-pop 1.2s ease; }
.best-share-value.best-share-new::after { content: attr(data-new-label); position: absolute; top: -16px; right: -4px; padding: 2px 4px; border-radius: 4px; background: var(--amber); color: #241805; font-size: 7px; font-weight: 800; }
@keyframes best-share-pop { 0% { transform: scale(1); } 25% { transform: scale(1.14); } 55% { transform: scale(.99); } 100% { transform: scale(1); } }
.support-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: var(--line); }
.support-strip > div { padding: 13px 16px; background: var(--surface); }
.support-strip b, .support-strip span { display: block; }
.support-strip b { font-size: 12px; }
.support-strip span { margin-top: 3px; color: var(--muted); font-size: 10px; }
.peer-table-scroll { overflow: auto; margin-top: 9px; }
.peer-table th, .peer-table td { padding: 8px; border-bottom: 1px solid var(--line); text-align: right; font-size: 9px; white-space: nowrap; }
.peer-table th:first-child, .peer-table td:first-child { text-align: left; }
.peer-table th { color: var(--muted); font-weight: 600; }
.peer-table td b, .peer-table td small { display: block; }
.peer-table td small { color: var(--green); font-size: 8px; }
.peer-table td > strong { color: var(--amber); }
.workers-scroll, .share-panel .share-list, .table-scroll, .peer-table-scroll { scrollbar-color: #43584d transparent; scrollbar-width: thin; }

/* Site footer */
.site-footer {
  flex: none;
  width: 100%;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  background: #080c0a;
}
.site-footer-inner {
  display: grid;
  grid-template-columns: minmax(180px, .72fr) minmax(300px, 1.55fr) minmax(190px, .73fr);
  gap: 30px;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 25px 0 27px;
}
.footer-brand b, .footer-block b { display: block; font-size: 13px; }
.footer-brand p, .footer-block p { margin: 6px 0 0; color: var(--muted); font-size: 11px; line-height: 1.65; }
.footer-brand span { color: var(--green); }
.footer-block a { color: var(--green); text-decoration: none; }
.footer-block a:hover { text-decoration: underline; }
.footer-meta { display: flex; flex-wrap: wrap; gap: 5px 14px; margin-top: 8px; color: var(--faint); font-size: 10px; }

@media (max-width: 980px) {
  .topbar { grid-template-columns: 1fr auto; padding: 0 20px; }
  .topbar nav { grid-column: 1 / -1; grid-row: 2; order: 3; overflow-x: auto; gap: 22px; min-height: 42px; }
  .topbar nav a { flex: none; }
  .screen { min-height: auto; padding-top: 26px; }
  .records-screen, .miners-screen { padding-top: 8px; }
  .miner-screen { padding-top: 10px; }
  .pool-hero, .guide-head, .records-head, .miner-head, .records-layout { grid-template-columns: 1fr; }
  .pool-metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .setup-panel { grid-template-columns: 1fr; }
  .guide-grid { grid-template-columns: 1fr; }
  .record-totals { grid-auto-flow: column; width: max-content; max-width: 100%; overflow-x: auto; }
  .side-stack { grid-template-columns: 1fr; }
  .worker-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer-inner { grid-template-columns: 1fr 1.4fr; }
  .site-footer-inner .footer-block:last-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  :root { --type-page-title: 30px; --type-data: 19px; --card-pad: 15px; --metric-height: 96px; }
  .topbar { padding: 10px 14px 0; }
  .top-actions { gap: 9px; }
  .online em { display: none; }
  .screen { width: min(100% - 24px, 1240px); padding: 22px 0 34px; }
  .pool-hero h1, .records-head h1, .miner-head h1, .guide-head h1 { font-size: var(--type-page-title); }
  .pool-hero { gap: 24px; }
  .pool-metrics { grid-template-columns: 1fr 1fr; }
  .pool-metrics article { min-height: 102px; }
  .reward-values, .best-share-hero { grid-template-columns: 1fr; }
  .home-search { grid-template-columns: 1fr; }
  .home-search > small { grid-column: 1; }
  .setup-step { padding: 16px; }
  .setup-step:first-child .guide-copy code { font-size: 11.5px; }
  .guide-section { padding: 18px; }
  .guide-number { position: static; margin-bottom: 12px; }
  .record-totals { display: grid; grid-auto-flow: row; grid-template-columns: 1fr 1fr; width: 100%; }
  .record-totals div { min-width: 0; border-bottom: 1px solid var(--line); }
  .miner-stats { grid-template-columns: 1fr 1fr; }
  .worker-grid { grid-template-columns: 1fr; }
  .workers-scroll { height: 420px; }
  .miner-screen { gap: 8px; }
  .miner-head h1 { font-size: 25px; }
  .workers-scroll, .share-panel .share-list { height: auto; max-height: 300px; }
  .miner-summary > header { align-items: flex-start; flex-direction: column; }
  .records-screen, .miners-screen { padding-top: 8px; }
  .site-footer-inner { grid-template-columns: 1fr; width: min(100% - 24px, 1240px); gap: 18px; padding: 22px 0; }
  .site-footer-inner .footer-block:last-child { grid-column: auto; }
}
