*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

#anglian-water,
body.awtp-portal,
.awtp-anglian-water {
  --sidebar-width: 280px;
  --primary: #155724;
  --font-primary: "Instrument Sans", sans-serif;
  --font-secondary: "Lexend", sans-serif;
  --bg-logged-in: #f8f8fa;
  --bg-logged-out: #f1fcfd;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --text-primary: #747474;
  --text-secondary: #666666;
  --heading-text-primary: #0072BC;
  --heading-text-secondary: #92278f;
  --color-dark: #92278f;
  --color-login-overlay: #b5e3fa;
  --border-light: #dddddd;
  --border-medium: #cccccc;
  --sidebar-bg: #ffffff;
  --sidebar-text: #0072BC;
  --sidebar-hover-bg: #f3f3f7;
  --sidebar-selected-bg: #f0f0f4;
  --sidebar-user-card-bg: #d9f1ff;
  --sidebar-user-card-text: #0072BC;
  --button-primary-bg: #92278f;
  --button-primary-border: #92278f;
  --button-primary-text: #ffffff;
  --button-primary-hover: #832381;
  --button-secondary-bg: transparent;
  --button-secondary-border: #0072BC;
  --button-secondary-text: #0072BC;
  --button-secondary-hover: #f7f7f7;
  --button-logout-bg: #0072BC;
  --button-logout-border: #0072BC;
  --button-logout-text: #ffffff;
  --button-logout-hover: #006bb1;
  --status-approved-bg: #dff7e4;
  --status-approved-text: #155724;
  --status-pending-bg: #fcf8e6;
  --status-pending-text: #d6b417;
  --status-rejected-bg: #f8e1e4;
  --status-rejected-text: #721c24;
  --info-box-bg: #effbfe;
  --info-box-text: #006bb1;
  --info-box-border: #f0f0f0;
  --error-bg: #feeeee;
  --error-text: #cc3333;
  --error-border: #ffcccc;
  --input-bg: #ffffff;
  --input-text: #747474;
  --input-border: #eeeeee;
  --input-placeholder-text: #bebebe;
  --shadow-light: rgba(0, 0, 0, 0.1);
  --radius: 10px;
}

body.awtp-portal {
  font-family: var(--font-primary);
  background: var(--bg-logged-in);
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

body.admin-bar.awtp-portal .portal-sidebar {
  top: 32px;
  height: calc(100vh - 32px);
}

@media screen and (max-width: 782px) {
  body.admin-bar.awtp-portal .portal-sidebar {
    top: 46px;
    height: calc(100vh - 46px);
  }
}

body.awtp-portal.bg-logged-out {
  background: var(--bg-logged-out);
}

body.awtp-portal h1,
body.awtp-portal h2,
body.awtp-portal h3 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.3;
}

/* Logged-in app shell */
body.awtp-portal .portal-app {
  min-height: 100vh;
}

body.awtp-portal .portal-sidebar {
  width: var(--sidebar-width);
  height: 100vh;
  background: var(--sidebar-bg);
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

body.awtp-portal .sidebar-header {
  padding: 1.5rem 1.2rem 0.5rem;
}

body.awtp-portal .sidebar-logo .custom-logo-link img,
body.awtp-portal .public-desktop-logo .custom-logo-link img {
  max-width: 200px;
  height: auto;
  display: block;
}

body.awtp-portal .sidebar-logo-text,
body.awtp-portal .login-logo-text {
  color: var(--heading-text-primary);
  font-family: var(--font-secondary);
  font-size: 1.25rem;
  font-weight: 600;
}

body.awtp-portal .sidebar-nav {
  flex: 1;
  padding: 0.5rem 0 1rem;
}

body.awtp-portal .nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

body.awtp-portal .nav-menu li {
  margin: 0;
  padding: 0;
}

body.awtp-portal .portal-sidebar .nav-menu a {
  display: block;
  padding: 1rem 1.5rem;
  margin-bottom: 0.15rem;
  color: var(--sidebar-text);
  text-decoration: none;
  transition: background-color 0.3s;
  border-left: 3px solid transparent;
}

body.awtp-portal .portal-sidebar .nav-menu a .nav-item-label {
  font-size: 18px;
  font-weight: 400;
}

body.awtp-portal .portal-sidebar .nav-menu a:hover {
  background: var(--sidebar-hover-bg);
  color: var(--sidebar-text);
}

body.awtp-portal .portal-sidebar .nav-menu a.active {
  background: var(--sidebar-selected-bg);
  border-left-color: var(--heading-text-primary);
  font-weight: 500;
  pointer-events: none;
}

body.awtp-portal .sidebar-footer {
  padding: 1rem 1.2rem 1.5rem;
}

body.awtp-portal .sidebar-user-card-container {
  background: var(--sidebar-user-card-bg);
  color: var(--sidebar-user-card-text);
  border-radius: var(--radius);
  padding: 10px;
  margin-bottom: 12px;
}

.sidebar-user-card .user-name {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 3px;
}

.sidebar-user-card .user-role {
  font-size: 12px;
  opacity: 0.85;
}

.sidebar-ahg-info {
  margin-top: 1rem;
  font-size: 12px;
  color: var(--text-secondary);
}

body.awtp-portal .btn-logout,
body.awtp-portal a.btn-logout {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--button-logout-bg);
  color: var(--button-logout-text);
  border: 1px solid var(--button-logout-border);
  border-radius: var(--radius);
  padding: 12px 20px;
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.25s ease;
}

body.awtp-portal .btn-logout:hover {
  background: var(--button-logout-hover);
  color: var(--button-logout-text);
}

body.awtp-portal .portal-main {
  margin-left: var(--sidebar-width);
  min-height: 100vh;
  padding: 1rem 2rem 3rem;
  width: calc(100% - var(--sidebar-width));
  max-width: calc(100% - var(--sidebar-width));
  box-sizing: border-box;
}

/* Main content */
.main-content {
  padding: 0;
  background: transparent;
  min-height: auto;
}

.page-header {
  margin-bottom: 1.5rem;
}

.page-header h1 {
  font-size: 1.75rem;
  color: var(--heading-text-primary);
  margin-bottom: 0.35rem;
}

.page-header p {
  color: var(--heading-text-secondary);
  font-size: 1rem;
  max-width: 760px;
}

.last-updated {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--info-box-bg);
  border: 1px solid var(--info-box-border);
  color: var(--info-box-text);
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  margin-top: 10px;
}

.card,
.stat-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  box-shadow: none;
  padding: 20px 30px;
  margin-bottom: 20px;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-text-secondary);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 16px;
}

.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: 1fr 1fr 1fr; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.stat-label {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-text-primary);
  margin: 6px 0 4px;
}

.stat-sub {
  font-size: 12px;
  color: var(--text-secondary);
}

.stat-change {
  font-size: 12px;
  font-weight: 600;
  margin-top: 4px;
}

.stat-change.rag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  color: #fff;
}

.stat-change.up { color: var(--status-rejected-text); }
.stat-change.down { color: var(--status-approved-text); }
.stat-change.neutral { color: var(--status-pending-text); }

.scheme-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.scheme-split-box {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 18px;
  background: #fff;
  min-height: 180px;
}

.scheme-split-box:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 24px rgba(0, 91, 73, 0.08);
}

.scheme-split-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.scheme-split-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--teal);
}

.scheme-split-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}

.scheme-stat-label {
  font-size: 11px;
  color: var(--grey-text);
  margin-bottom: 4px;
}

.scheme-stat-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--heading-text-primary);
}

.scheme-split-sub {
  font-size: 12px;
  color: var(--grey-text);
}

.login-brand-stack {
  margin-bottom: 8px;
}

.login-ahg-brand {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--heading-text-primary);
  margin-bottom: 10px;
}

.login-client-label {
  font-size: 13px;
  color: var(--grey-text);
  margin-top: 8px;
}

.rag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}

.rag.green {
  background: var(--status-approved-bg);
  color: var(--status-approved-text);
}

.rag.amber {
  background: var(--status-pending-bg);
  color: var(--status-pending-text);
}

.rag.red {
  background: var(--status-rejected-bg);
  color: var(--status-rejected-text);
}

.rag::before { content: ''; }

.awtp-portal table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.awtp-portal th {
  background: var(--heading-text-primary);
  color: #fff;
  padding: 10px 12px;
  text-align: left;
  font-weight: 600;
  font-size: 12px;
}

.awtp-portal td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-primary);
}

.awtp-portal tr:nth-child(even) td {
  background: var(--bg-light);
}

.awtp-portal tr:hover td {
  background: var(--sidebar-hover-bg);
}

.progress-wrap {
  background: var(--bg-light);
  border-radius: var(--radius);
  height: 20px;
  overflow: hidden;
  margin: 8px 0;
}

.progress-fill {
  height: 100%;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  padding-left: 10px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.progress-fill.green { background: var(--status-approved-text); }
.progress-fill.amber { background: var(--status-pending-text); }
.progress-fill.red { background: var(--status-rejected-text); }

.chart-placeholder {
  background: var(--info-box-bg);
  border: 1px solid var(--info-box-border);
  border-radius: var(--radius);
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--info-box-text);
  gap: 8px;
  text-align: center;
  padding: 16px;
}

.chart-embed {
  min-height: 190px;
}

.awtp-bar-chart,
.awtp-grouped-chart {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 8px 0;
}

.awtp-bar-row,
.awtp-grouped-row {
  display: grid;
  grid-template-columns: 92px 1fr 88px;
  gap: 10px;
  align-items: center;
}

.awtp-bar-row-compact {
  grid-template-columns: 52px 1fr 88px;
}

.awtp-grouped-month {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
}

.awtp-grouped-month:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.awtp-grouped-month-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--heading-text-primary);
  margin-bottom: 2px;
}

.awtp-bar-kind {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--grey-text);
}

.awtp-bar-label {
  font-size: 11px;
  color: var(--grey-text);
  font-weight: 600;
}

.awtp-bar-track {
  background: #eef2f4;
  border-radius: 999px;
  height: 14px;
  overflow: hidden;
  border: 1px solid #dde4e8;
}

.awtp-bar-fill {
  height: 100%;
  border-radius: 999px;
  min-width: 0;
}

.awtp-bar-fill.actual {
  background: var(--teal, #005b49);
}

.awtp-bar-fill.weekly {
  background: var(--teal, #005b49);
}

.awtp-bar-fill.budget {
  background: #64748b;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.18) 4px,
    transparent 4px,
    transparent 8px
  );
}

.awtp-bar-value {
  font-size: 11px;
  font-weight: 700;
  color: var(--heading-text-primary);
  text-align: right;
}

.awtp-chart-legend {
  display: flex;
  gap: 16px;
  font-size: 11px;
  color: var(--grey-text);
  margin-bottom: 4px;
}

.awtp-swatch {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-right: 4px;
}

.awtp-swatch.actual {
  background: var(--teal, #005b49);
}

.awtp-swatch.budget {
  background: #64748b;
}

.awtp-grouped-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.commentary {
  background: var(--info-box-bg);
  border-left: 4px solid var(--heading-text-primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--info-box-text);
}

.commentary strong {
  display: block;
  margin-bottom: 6px;
  color: var(--heading-text-secondary);
  font-size: 13px;
}

.announcement {
  background: var(--status-pending-bg);
  border: 1px solid var(--status-pending-text);
  border-left: 4px solid var(--status-pending-text);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.announcement strong {
  color: var(--heading-text-secondary);
}

.quick-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 10px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.15s;
}

.quick-link:hover {
  border-color: var(--heading-text-primary);
  background: var(--sidebar-hover-bg);
}

.quick-link .ql-title {
  font-weight: 600;
  font-size: 13px;
  color: var(--heading-text-primary);
}

.quick-link .ql-sub {
  font-size: 12px;
  color: var(--text-secondary);
}

.doc-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.doc-title {
  font-weight: 600;
  font-size: 13px;
  color: var(--heading-text-secondary);
}

.doc-meta {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.doc-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.btn,
button.btn,
a.btn,
.login-btn {
  font-family: var(--font-secondary);
  font-weight: 400;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.btn-primary,
.login-btn {
  background: var(--button-primary-bg);
  color: var(--button-primary-text);
  border-color: var(--button-primary-border);
}

.btn-primary:hover,
.login-btn:hover {
  background: var(--button-primary-hover);
}

.btn-outline {
  background: var(--button-secondary-bg);
  color: var(--button-secondary-text);
  border-color: var(--button-secondary-border);
}

.btn-outline:hover {
  background: var(--button-secondary-hover);
}

.btn-sm {
  padding: 8px 14px;
  font-size: 12px;
}

.tab-bar {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-white);
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  flex-wrap: wrap;
}

.tab-btn {
  flex: 1;
  min-width: 140px;
  padding: 14px 20px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.15s;
  margin-bottom: -1px;
  text-align: center;
}

.tab-btn:hover {
  background: var(--sidebar-hover-bg);
  color: var(--heading-text-primary);
}

.tab-btn.active {
  color: var(--heading-text-primary);
  border-bottom-color: var(--heading-text-primary);
  background: var(--sidebar-selected-bg);
  font-weight: 600;
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.form-group { margin-bottom: 1.35rem; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--input-border);
  border-radius: 6px;
  font-size: 14px;
  font-family: var(--font-primary);
  color: var(--input-text);
  background: var(--input-bg);
  outline: none;
}

.form-control:focus {
  border-color: var(--heading-text-primary);
}

.form-control::placeholder {
  color: var(--input-placeholder-text);
}

textarea.form-control {
  resize: vertical;
  min-height: 80px;
}

.contact-strip {
  background: var(--info-box-bg);
  border: 1px solid var(--info-box-border);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.contact-strip .cs-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--heading-text-primary);
}

.contact-strip a {
  color: var(--heading-text-primary);
  text-decoration: none;
  font-weight: 600;
}

.featured-dashboard {
  border-left: 4px solid var(--heading-text-primary);
  background: linear-gradient(135deg, var(--info-box-bg) 0%, #fff 100%);
}

.filter-bar { padding: 14px 20px; }

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.mb-16 { margin-bottom: 16px; }

.divider-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin: 16px 0 8px;
  padding: 4px 0;
  border-bottom: 1px solid var(--border-light);
}

/* Footer */
.page-footer-container {
  width: 100%;
  margin-top: 2rem;
}

.page-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  font-size: 12px;
  color: var(--text-secondary);
}

.page-footer-brand {
  color: var(--heading-text-secondary);
  font-weight: 600;
}

.page-footer-tagline {
  color: var(--heading-text-primary);
}

/* Login page */
.public-container {
  display: flex;
  align-items: stretch;
  min-height: calc(100vh - 70px);
  position: relative;
}

.public-left,
.public-right {
  flex: 0 0 50%;
  min-width: 0;
}

.public-left {
  padding: 50px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.auth-card h1 {
  color: var(--heading-text-primary);
  font-size: 1.75rem;
  margin: 1.5rem 0 1rem;
}

.auth-intro {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.login-forgot {
  text-align: right;
  margin-bottom: 1rem;
}

.login-forgot a {
  color: var(--heading-text-primary);
  text-decoration: none;
  font-size: 13px;
}

.login-footer {
  text-align: center;
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 1.25rem;
}

.login-footer a {
  color: var(--heading-text-primary);
  text-decoration: none;
}

.login-error {
  background: var(--error-bg);
  color: var(--error-text);
  border: 1px solid var(--error-border);
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 13px;
  margin-bottom: 16px;
}

.login-btn {
  width: 100%;
  padding: 16px 30px;
}

.public-right {
  position: relative;
  padding: 20px;
}

.login-cover-image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border-radius: 20px;
  overflow: hidden;
  background-image: linear-gradient(180deg, rgba(0, 91, 73, 0), rgba(0, 0, 0, 0.75)), url("https://images.pexels.com/photos/3184436/pexels-photo-3184436.jpeg?auto=compress&cs=tinysrgb&w=1920");
  background-size: cover;
  background-position: center;
  position: relative;
}

.login-cover-image-overlay {
  position: absolute;
  inset: 0;
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.cover-line {
  font-family: var(--font-secondary);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.1;
}

.cover-line-2 {
  color: var(--color-login-overlay);
  padding-left: 10%;
}

.cover-line-3 {
  padding-left: 20%;
}

.login-page-footer {
  margin-top: 0;
  background: var(--bg-logged-out);
  padding: 0 2rem 1rem;
}

body.awtp-login-page .wp-block-navigation,
body.awtp-login-page .wp-block-page-list,
body.awtp-login-page .navigation,
body.awtp-login-page .menu {
  display: none !important;
}

body.awtp-login-page .public-container {
  min-height: calc(100vh - 72px);
}

@media (max-width: 768px) {
  body.awtp-portal .portal-sidebar {
    position: relative;
    width: 100%;
    height: auto;
    box-shadow: none;
    border-bottom: 1px solid var(--border-light);
  }

  body.awtp-portal .portal-main {
    margin-left: 0;
    width: 100%;
    max-width: 100%;
    padding: 1rem 1rem 2rem;
  }

  .public-container {
    flex-direction: column;
  }

  .public-left,
  .public-right {
    flex: 0 0 100%;
  }

  .scheme-split-grid {
    grid-template-columns: 1fr;
  }

  .scheme-split-stats {
    grid-template-columns: 1fr;
  }

  .public-right {
    display: none;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 568px) {
  .page-footer {
    flex-direction: column;
    text-align: center;
  }
}
