:root {
  --pacific: #0099cc;
  --pacific-dark: #006f9c;
  --carrot: #ff9933;
  --ink: #102433;
  --muted: #5f7482;
  --line: #dce9ef;
  --paper: #f7fbfd;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 36, 51, 0.16);
  --radius: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: "Trebuchet MS", "Avenir Next", Verdana, sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 153, 51, 0.22), transparent 28rem),
    radial-gradient(circle at 85% 0%, rgba(0, 153, 204, 0.20), transparent 32rem),
    linear-gradient(180deg, #f7fcff 0%, #edf7fb 42%, #fff7ee 100%);
  min-height: 100vh;
}

a { color: var(--pacific-dark); text-decoration: none; font-weight: 700; }
a:hover { color: #d46d00; }

.topline {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
  align-items: center;
  padding: 10px clamp(18px, 4vw, 64px);
  color: #eaf9ff;
  background: linear-gradient(90deg, #063044, #0c6589);
  font-size: 0.9rem;
}
.topline a { color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 18px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(0, 153, 204, 0.16);
  backdrop-filter: blur(18px);
}

.brand { display: inline-flex; flex: 0 0 auto; }
.text-logo {
  align-items: center;
  color: var(--ink);
  font-size: 1.85rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}
.text-logo span { color: var(--pacific); }
.text-logo::before {
  content: "";
  width: 34px;
  height: 34px;
  margin-right: 10px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--pacific) 0 58%, var(--carrot) 58% 100%);
  box-shadow: inset 0 0 0 5px rgba(255,255,255,.55);
}
.text-logo-light { display: flex; color: #fff; }
.text-logo-light span { color: #58d5ff; }
.main-nav { display: flex; align-items: center; gap: 18px; flex: 1; }
.main-nav a { color: var(--ink); font-size: 0.96rem; }
.header-actions { display: flex; gap: 12px; align-items: center; }
.ghost-link { color: var(--pacific-dark); }
.login-button, .primary, button.primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  color: #111;
  background: linear-gradient(135deg, var(--carrot), #ffd15c);
  box-shadow: 0 12px 30px rgba(255, 153, 51, 0.28);
  cursor: pointer;
  font-weight: 800;
}
.secondary {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 12px 20px;
  border: 1px solid rgba(0, 153, 204, 0.35);
  border-radius: 999px;
  background: #fff;
}
.menu-button { display: none; }

main { padding-bottom: 60px; }

.hero, .page-hero, .mobile-showcase, .auth-layout, .dashboard, .form-page, .text-page, .detail-hero, .calculator-page, .article-layout, .resource-layout, .document-layout, .contact-split, .question-hero, .admin-hero, .admin-tabs, .time-range-bar {
  width: min(1180px, calc(100% - 36px));
  margin: 46px auto 0;
}
.admin-hero { margin-top: 20px; }
.admin-tabs, .time-range-bar { margin-top: 10px; }

.hero, .mobile-showcase, .auth-layout, .calculator, .detail-hero, .calculator-page, .article-layout, .resource-layout, .document-layout, .contact-split, .question-hero, .admin-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.hero-copy, .page-hero, .form-page, .text-page, .auth-box, .auth-help, .dashboard, .calculator, .panel-card, .detail-hero, .calculator-page, .article-layout, .resource-layout, .document-layout, .timeline, .comparison-table, .two-column-info, .calculator-mini, .contact-split, .question-hero, .admin-hero, .qa-list, .qa-columns, .stat-grid, .admin-card, .faq-preview, .chart-panel, .table-panel, .cleanup-panel, .latest-questions {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 153, 204, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 48px);
}

.hero-copy h1, .page-hero h1, .mobile-showcase h1, .form-page h1, .text-page h1, .auth-box h1, .detail-hero h1, .calculator-page h1, .article-layout h1, .resource-layout h1, .document-layout h1, .contact-split h1, .question-hero h1, .admin-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 5vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}
.hero-copy p, .page-hero p, .mobile-showcase p, .text-page p { color: var(--muted); font-size: 1.1rem; line-height: 1.7; }
.eyebrow { color: var(--pacific-dark); font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.78rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.bank-visual {
  min-height: 440px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(0,153,204,.16), rgba(255,153,51,.18)),
    linear-gradient(160deg, #ffffff, #eaf8fd);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}
.phone-mock {
  width: 230px;
  min-height: 390px;
  border-radius: 38px;
  padding: 28px 18px;
  background: #102433;
  box-shadow: 0 32px 60px rgba(16,36,51,.28);
}
.screen-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--pacific), var(--carrot));
}
.screen-card strong { font-size: 1.6rem; }
.quick-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin: 22px 0; }
.quick-row i { display: block; height: 52px; border-radius: 16px; background: #f7fbfd; }
.chart-lines { display: grid; gap: 14px; }
.chart-lines b { display: block; height: 16px; border-radius: 999px; background: #d8f1f9; }
.chart-lines b:nth-child(2) { width: 70%; background: #ffe1bf; }
.chart-lines b:nth-child(3) { width: 86%; }

.rate-strip, .content-grid, .link-farm, .calculator, .product-river, .timeline, .comparison-table, .two-column-info, .calculator-mini, .qa-list, .qa-columns, .stat-grid, .admin-grid, .faq-preview, .chart-panel, .table-panel, .cleanup-panel, .latest-questions {
  width: min(1180px, calc(100% - 36px));
  margin: 28px auto 0;
}
.rate-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.rate-strip article, .feature-card {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: 0 16px 36px rgba(16, 36, 51, 0.08);
}
.rate-strip span { display: block; color: var(--muted); margin-bottom: 8px; }
.rate-strip strong { font-size: 1.45rem; color: var(--pacific-dark); }
.content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.photo-card { height: 155px; border-radius: 20px; margin-bottom: 14px; position: relative; overflow: hidden; background: #e8f8ff; }
.card-photo { background: linear-gradient(145deg, #102433 20%, #0099cc 20% 55%, #ff9933 55%); }
.card-photo::after { content: ""; position: absolute; inset: 42px 38px auto auto; width: 86px; height: 52px; border-radius: 10px; background: rgba(255,255,255,.84); box-shadow: -68px 38px 0 rgba(255,255,255,.22); }
.home-photo { background: linear-gradient(180deg, #e8f8ff 0 52%, #cde7d0 52%); }
.home-photo::before { content: ""; position: absolute; left: 70px; top: 58px; width: 130px; height: 82px; background: #fff; border: 5px solid var(--pacific); }
.home-photo::after { content: ""; position: absolute; left: 58px; top: 32px; border-left: 78px solid transparent; border-right: 78px solid transparent; border-bottom: 58px solid var(--carrot); }
.savings-photo { background: radial-gradient(circle at 50% 52%, #ff9933 0 38px, transparent 39px), linear-gradient(145deg, #f7fbfd, #d9f3fc); }
.savings-photo::after { content: "%"; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-48%); color: #fff; font-size: 2.1rem; font-weight: 900; }
.feature-card h2, .panel-card h2 { margin: 0 0 10px; font-size: 1.35rem; }
.feature-card p, .panel-card p { color: var(--muted); line-height: 1.6; }
.product-river { display: grid; gap: 16px; }
.river-card { display: flex; justify-content: space-between; gap: 22px; align-items: center; padding: 26px; border-radius: 24px; background: rgba(255,255,255,.84); border: 1px solid var(--line); box-shadow: 0 14px 36px rgba(16,36,51,.08); }
.river-card span { color: var(--pacific-dark); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; }
.river-actions, .stacked-links { display: grid; gap: 10px; min-width: 180px; }
.two-column-info, .calculator-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.calculator-mini { grid-template-columns: 1.2fr repeat(3, .8fr) .8fr .8fr; }
.calculator-mini label { font-size: .85rem; }
.calculator-mini strong, .result-box strong { font-size: 1.45rem; color: var(--pacific-dark); }
.detail-hero aside, .document-layout aside { display: grid; gap: 12px; padding: 22px; border-radius: 22px; background: linear-gradient(135deg, rgba(0,153,204,.12), rgba(255,153,51,.12)); }
.detail-hero aside p { display: flex; justify-content: space-between; gap: 16px; margin: 0; padding-bottom: 10px; border-bottom: 1px solid rgba(0,153,204,.2); }
.timeline ol { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; padding: 0; list-style: none; counter-reset: steps; }
.timeline li { counter-increment: steps; padding: 18px; border-radius: 18px; background: #fff; border: 1px solid var(--line); }
.timeline li::before { content: counter(steps); display: inline-grid; place-items: center; width: 28px; height: 28px; margin-right: 8px; border-radius: 50%; background: var(--carrot); font-weight: 900; }
.calculator-page form { background: #fff; padding: 22px; border-radius: 22px; border: 1px solid var(--line); }
.result-box { display: grid; gap: 6px; padding: 18px; border-radius: 18px; background: #e8f8ff; }
.comparison-table table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 18px; overflow: hidden; }
.comparison-table th, .comparison-table td { padding: 16px; border-bottom: 1px solid var(--line); text-align: left; }
.article-layout aside, .resource-layout form { display: grid; gap: 12px; align-self: start; padding: 22px; border-radius: 22px; background: #fff; border: 1px solid var(--line); }
.article-layout aside a { display: block; }
.bullet-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 24px; }
.bullet-grid span { padding: 14px; border-radius: 16px; background: #fff; border: 1px solid var(--line); font-weight: 800; }
.document-layout aside strong { color: var(--muted); }
.document-layout aside span { font-weight: 900; }
.contact-tiles, .faq-preview div { display: grid; gap: 12px; margin-top: 22px; }
.contact-tiles span, .faq-preview a { padding: 14px 16px; border-radius: 16px; background: #fff; border: 1px solid var(--line); }
.resource-card { display: grid; gap: 12px; align-self: start; padding: 24px; border-radius: 22px; background: #fff; border: 1px solid var(--line); box-shadow: 0 14px 34px rgba(16,36,51,.08); }
.resource-card h2 { margin: 0 0 4px; }
.resource-card a { display: block; padding: 12px 14px; border-radius: 14px; background: #f7fbfd; border: 1px solid var(--line); }
.question-hero form, .contact-split form { padding: 22px; border-radius: 22px; background: #fff; border: 1px solid var(--line); }
.qa-list { display: grid; gap: 16px; }
.qa-list article { padding: 24px; border-radius: 22px; background: #fff; border: 1px solid var(--line); }
.qa-list article div { display: flex; gap: 14px; flex-wrap: wrap; }
.qa-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.qa-columns article { padding: 20px; border-radius: 18px; background: #fff; border: 1px solid var(--line); }
.qa-columns details { padding: 12px 0; border-bottom: 1px solid var(--line); }
.admin-hero { align-items: start; padding: 18px 20px; }
.admin-hero h1 { font-size: 1.3rem; margin: 0; }
.admin-hero p { font-size: .8rem; margin: 0; color: var(--muted); }
.admin-hero .eyebrow { font-size: .7rem; }
.admin-hero ~ .time-range-bar,
.admin-hero ~ .admin-tabs,
.admin-hero ~ .stat-grid,
.admin-hero ~ .chart-panel,
.admin-hero ~ .admin-grid,
.admin-hero ~ .table-panel,
.admin-hero ~ .cleanup-panel { 
  width: min(1180px, calc(100% - 36px));
  margin: 10px auto 0;
  padding: 14px 16px;
  border-radius: 10px;
}
.admin-hero h1 { font-size: 1.3rem; margin: 0; }
.admin-hero p { font-size: .8rem; margin: 0; color: var(--muted); }
.admin-hero .eyebrow { font-size: .7rem; }
.admin-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.admin-actions a { font-size: .75rem; padding: 6px 10px; }
.admin-tabs { display: flex; gap: 4px; flex-wrap: wrap; padding: 8px; border-radius: 10px; background: rgba(255,255,255,.78); border: 1px solid var(--line); box-shadow: 0 2px 8px rgba(16,36,51,.06); font-size: .8rem; }
.admin-tabs a { padding: 6px 12px; border-radius: 6px; color: var(--ink); font-weight: 600; }
.admin-tabs a.active { background: var(--pacific); color: #fff; }
.admin-tabs a:hover:not(.active) { background: var(--line); }
.time-range-bar { display: flex; gap: 4px; flex-wrap: wrap; align-items: center; padding: 8px 12px; border-radius: 8px; background: #f7fafc; border: 1px solid var(--line); font-size: .75rem; }
.time-range-bar .time-label { font-weight: 700; color: var(--muted); margin-right: 4px; font-size: .7rem; text-transform: uppercase; letter-spacing: .5px; }
.time-range-bar a { padding: 4px 9px; border-radius: 4px; color: var(--ink); font-size: .75rem; background: #fff; border: 1px solid var(--line); font-weight: 600; }
.time-range-bar a.active { background: var(--pacific); color: #fff; border-color: var(--pacific); }
.time-range-bar a:hover:not(.active) { background: var(--line); }
.custom-range-form { display: flex; gap: 6px; align-items: center; margin-left: auto; font-size: .75rem; }
.custom-range-form label { font-size: .7rem; font-weight: 600; gap: 3px; }
.custom-range-form input[type="datetime-local"] { padding: 3px 6px; border-radius: 4px; border: 1px solid var(--line); font-size: .72rem; }
.custom-range-form button { padding: 4px 10px; font-size: .72rem; border-radius: 4px; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.stat-grid article { padding: 14px; border-radius: 8px; background: #fff; border: 1px solid var(--line); }
.stat-grid span { display: block; color: var(--muted); font-size: .7rem; text-transform: uppercase; letter-spacing: .3px; }
.stat-grid strong { font-size: 1.4rem; color: var(--pacific-dark); }
.admin-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.admin-card { font-size: .8rem; }
.admin-card.wide { grid-column: span 2; }
.admin-card h2 { font-size: .9rem; margin-bottom: 8px; }
.admin-card p, .inquiry-row, .event-row { display: grid; gap: 4px; padding: 8px 0; border-bottom: 1px solid var(--line); overflow-wrap: anywhere; font-size: .78rem; }
.admin-card p { grid-template-columns: 1fr auto; }
.admin-card small { color: var(--muted); }
.event-row code { white-space: pre-wrap; font-size: .72rem; color: #38505d; }
.latest-questions { padding: 16px; }
.latest-questions > div { display: flex; gap: 10px; flex-wrap: wrap; }
.latest-questions article { min-width: 0; flex: 1 1 180px; padding: 10px; border-radius: 8px; background: #fff; border: 1px solid var(--line); }
.latest-questions article strong, .latest-questions article span { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .78rem; }
.latest-questions article p { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; color: var(--muted); font-size: .75rem; line-height: 1.4; }
.chart-panel > div:first-child { display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.chart-panel h2 { font-size: .9rem; }
.inline-form { display: flex; gap: 8px; align-items: center; font-size: .78rem; }
.inline-form select { padding: 4px 8px; font-size: .78rem; border-radius: 6px; width: auto; }
.bar-chart { display: grid; gap: 4px; margin-top: 12px; }
.bar-row { display: grid; grid-template-columns: 130px 1fr 44px; gap: 6px; align-items: center; font-size: .72rem; font-family: "SF Mono", "Menlo", "Monaco", monospace; }
.bar-row b { display: block; min-width: 2px; height: 14px; border-radius: 3px; background: linear-gradient(90deg, var(--pacific), var(--carrot)); }
.filter-form { display: flex; gap: 8px; align-items: end; margin-bottom: 12px; flex-wrap: wrap; font-size: .78rem; }
.filter-form label { font-size: .7rem; font-weight: 700; gap: 3px; }
.filter-form input, .filter-form select { padding: 5px 8px; font-size: .78rem; border-radius: 6px; }
.filter-form button { padding: 6px 12px; font-size: .75rem; border-radius: 6px; }
.table-panel { overflow-x: auto; }
.table-panel h2 { font-size: .9rem; margin-bottom: 4px; }
.table-panel p { font-size: .75rem; color: var(--muted); margin-bottom: 8px; }
.table-panel table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 8px; overflow: hidden; font-size: .75rem; }
.table-panel th, .table-panel td { padding: 6px 8px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; word-break: break-all; }
.table-panel th { background: #f0f7fa; color: var(--ink); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .3px; white-space: nowrap; }
.table-panel td code { font-size: .7rem; word-break: break-all; }
.table-panel tr:hover td { background: #f8fcfe; }
.pager { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin: 10px 0; font-size: .75rem; }
.pager a { font-size: .75rem; padding: 4px 10px; }
.cleanup-panel { display: flex; justify-content: space-between; gap: 14px; align-items: center; font-size: .8rem; padding: 14px; }
.cleanup-panel h2 { font-size: .85rem; }
.cleanup-panel p { font-size: .75rem; }
.cleanup-panel form { display: flex; gap: 8px; align-items: end; }
.cleanup-panel select, .cleanup-panel button { font-size: .75rem; padding: 5px 10px; border-radius: 6px; }

.link-farm {
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(0, 153, 204, 0.10), rgba(255, 153, 51, 0.14));
}
.link-farm div { display: flex; gap: 12px; flex-wrap: wrap; }
.link-farm a { padding: 10px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line); }

form { display: grid; gap: 16px; }
label { display: grid; gap: 8px; color: var(--ink); font-weight: 800; }
input, textarea, select {
  width: 100%;
  border: 1px solid #bdd7e2;
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}
.checkbox { display: flex; align-items: center; gap: 10px; }
.checkbox input { width: auto; }
.alert, .success { padding: 14px 16px; border-radius: 14px; font-weight: 800; }
.alert { background: #fff0e3; color: #8d3f00; }
.success { background: #e8f8ef; color: #0d6b38; margin-bottom: 16px; }

.dashboard { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.panel-card { display: grid; gap: 12px; }
.panel-card p { display: grid; gap: 4px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.panel-card span { font-weight: 900; color: var(--pacific-dark); }
.app-preview { display: flex; justify-content: center; gap: 26px; min-height: 360px; align-items: center; }
.app-phone { width: 150px; height: 300px; border: 14px solid #102433; border-radius: 34px; background: linear-gradient(#fff 0 35%, #e8f8ff 35%); box-shadow: var(--shadow); position: relative; }
.app-phone::before { content: ""; position: absolute; left: 22px; right: 22px; top: 36px; height: 68px; border-radius: 18px; background: linear-gradient(135deg, var(--pacific), var(--carrot)); }
.app-phone::after { content: ""; position: absolute; left: 28px; right: 28px; bottom: 54px; height: 16px; border-radius: 999px; background: #cceef8; box-shadow: 0 34px 0 #ffd9b2; }
.app-phone.second { transform: translateY(28px); }

.cookie-panel {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: min(420px, calc(100% - 36px));
  padding: 20px;
  border-radius: 20px;
  background: #082b3c;
  color: #fff;
  box-shadow: var(--shadow);
}
.cookie-panel p { color: #d5edf7; }
.cookie-panel div { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cookie-panel a { color: #fff; }
.cookie-panel button { border: 0; border-radius: 999px; padding: 10px 16px; background: var(--carrot); font-weight: 900; }

.site-footer {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 28px;
  padding: 42px clamp(18px, 4vw, 64px);
  color: #e6f8ff;
  background: linear-gradient(135deg, #062231, #004f72);
}
.site-footer a { display: block; color: #e6f8ff; margin: 8px 0; }
.site-footer p { color: #b9d9e6; }
.legal-line { padding: 14px; text-align: center; color: #d9f3ff; background: #041a25; }

.reveal { opacity: 0; transform: translateY(18px); animation: reveal 0.7s ease forwards; }
.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 880px) {
  .topline { justify-content: center; flex-wrap: wrap; gap: 10px; }
  .site-header { flex-wrap: wrap; }
  .menu-button { display: inline-flex; margin-left: auto; border: 1px solid var(--line); border-radius: 999px; padding: 10px 14px; background: #fff; }
  .main-nav { display: none; width: 100%; flex-direction: column; align-items: flex-start; }
  .main-nav.open { display: flex; }
  .header-actions { width: 100%; justify-content: space-between; }
  .hero, .mobile-showcase, .auth-layout, .calculator, .detail-hero, .calculator-page, .article-layout, .resource-layout, .document-layout, .two-column-info, .calculator-mini, .contact-split, .question-hero, .admin-hero { grid-template-columns: 1fr; }
  .rate-strip, .content-grid, .site-footer, .timeline ol, .bullet-grid, .qa-columns, .stat-grid, .admin-grid, .filter-form { grid-template-columns: 1fr; }
  .admin-card.wide { grid-column: auto; }
  .latest-questions > div { grid-template-columns: 1fr; }
  .bar-row { grid-template-columns: 1fr; }
  .cleanup-panel, .cleanup-panel form, .chart-panel > div:first-child, .pager { flex-direction: column; align-items: stretch; }
  .river-card { flex-direction: column; align-items: flex-start; }
  .dashboard { align-items: flex-start; flex-direction: column; }
}
