body[data-dashboard-page="sap-peps"],
body[data-dashboard-page="sap-pep-detail"] {
  min-width: 0;
}

.peps-shell,
.pep-page-shell {
  width: min(1640px, calc(100vw - 48px));
}

.peps-topbar {
  align-items: center;
}

.peps-topbar-tools {
  max-width: 760px;
}

.peps-domain-nav {
  display: grid;
  gap: 6px;
  padding: 7px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-2);
}

.peps-domain-nav > div {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.peps-domain-nav > div > span {
  min-width: 78px;
  padding: 0 8px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  text-align: right;
  text-transform: uppercase;
}

.peps-domain-nav a {
  padding: 7px 9px;
  border-radius: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.peps-domain-nav a:hover,
.peps-domain-nav a:focus-visible {
  color: var(--blue);
  outline: none;
}

.peps-domain-nav a.is-active {
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 2px 8px rgba(35, 47, 52, 0.08);
}

.peps-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 14px;
  padding: 0 4px;
}

.peps-intro h2 {
  font-size: 24px;
}

.peps-intro > p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
  text-align: right;
}

.peps-global-metrics {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.pep-kpi,
.pep-filtered-kpi,
.pep-page-metric {
  display: grid;
  align-content: start;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.pep-kpi {
  min-height: 116px;
  padding: 16px;
}

.pep-kpi > span,
.pep-filtered-kpi > span,
.pep-page-metric > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.pep-kpi > strong {
  margin-top: 8px;
  font-size: 28px;
  line-height: 1;
  overflow-wrap: anywhere;
}

.pep-kpi > small,
.pep-filtered-kpi > small,
.pep-page-metric > small {
  align-self: end;
  margin-top: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
}

.pep-kpi.success > strong,
.pep-filtered-kpi.success > strong,
.pep-page-metric.success > strong { color: var(--green); }
.pep-kpi.info > strong,
.pep-filtered-kpi.info > strong,
.pep-page-metric.info > strong { color: var(--blue); }
.pep-kpi.warning > strong,
.pep-filtered-kpi.warning > strong,
.pep-page-metric.warning > strong { color: var(--yellow); }
.pep-kpi.danger > strong,
.pep-filtered-kpi.danger > strong,
.pep-page-metric.danger > strong { color: var(--red); }
.pep-kpi.progress > strong,
.pep-filtered-kpi.progress > strong,
.pep-page-metric.progress > strong { color: var(--setup-green); }
.pep-kpi.above > strong,
.pep-filtered-kpi.above > strong,
.pep-page-metric.above > strong { color: var(--yellow); }

.peps-workspace,
.pep-page-content {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.peps-toolbar,
.peps-filtered-header,
.pep-page-heading,
.pep-page-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.peps-toolbar {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}

.peps-actions,
.pep-page-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.peps-count {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.peps-filters {
  display: grid;
  grid-template-columns: minmax(250px, 1.8fr) repeat(6, minmax(130px, 1fr)) auto;
  align-items: end;
  gap: 10px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}

.peps-filters label {
  display: grid;
  min-width: 0;
  gap: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.peps-filters input,
.peps-filters select,
.pep-lookup input {
  width: 100%;
  min-width: 0;
  height: 40px;
  padding: 0 11px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-size: 13px;
}

.peps-filters input:focus,
.peps-filters select:focus,
.pep-lookup input:focus {
  border-color: rgba(22, 117, 143, 0.55);
  box-shadow: 0 0 0 3px rgba(22, 117, 143, 0.1);
  outline: none;
}

.peps-filters .filter-reset {
  min-height: 40px;
  margin: 0;
}

.peps-filtered-section {
  padding: 16px 20px 18px;
  border-bottom: 1px solid var(--border);
  background: #fbfdfc;
}

.peps-filtered-header {
  align-items: flex-end;
  margin-bottom: 12px;
}

.peps-filtered-header h3 {
  margin: 0;
  font-size: 17px;
}

.peps-filtered-header > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  text-align: right;
}

.peps-filtered-metrics {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.pep-filtered-kpi {
  min-height: 100px;
  padding: 14px;
}

.pep-filtered-kpi > strong {
  margin-top: 7px;
  font-size: 23px;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.peps-table-wrap {
  position: relative;
  overflow-x: auto;
}

.peps-table {
  width: 100%;
  min-width: 1520px;
  border-collapse: collapse;
  table-layout: fixed;
}

.peps-table th,
.peps-table td {
  padding: 12px 13px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: middle;
}

.peps-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f3f7f6;
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.peps-table th:nth-child(1) { width: 250px; }
.peps-table th:nth-child(2) { width: 150px; }
.peps-table th:nth-child(3) { width: 210px; }
.peps-table th:nth-child(4) { width: 180px; }
.peps-table th:nth-child(5) { width: 98px; }
.peps-table th:nth-child(6) { width: 108px; }
.peps-table th:nth-child(7) { width: 190px; }
.peps-table th:nth-child(8) { width: 220px; }
.peps-table th:nth-child(9) { width: 76px; }
.peps-table th:nth-child(10) { width: 52px; }

.peps-table tbody tr {
  cursor: pointer;
  transition: background 130ms ease, box-shadow 130ms ease;
}

.peps-table tbody tr:hover,
.peps-table tbody tr:focus-visible {
  background: #f4faf9;
  box-shadow: inset 4px 0 0 var(--setup-green);
  outline: none;
}

.peps-table td.numeric,
.peps-table th.numeric {
  text-align: right;
}

.peps-table td small,
.pep-table-stack small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
}

.pep-number {
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.pep-number:hover,
.pep-number:focus-visible,
.pep-inline-link:hover,
.pep-inline-link:focus-visible {
  color: var(--blue);
  text-decoration: underline;
  outline: none;
}

.pep-project,
.pep-table-stack {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.35;
}

.pep-project {
  margin-top: 4px;
  color: var(--muted);
}

.pep-inline-link {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.pep-measurement-status,
.pep-status-tag {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 25px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--gray-bg);
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.pep-measurement-status.success,
.pep-status-tag.success { background: var(--green-bg); color: var(--green); }
.pep-measurement-status.info,
.pep-status-tag.info { background: var(--blue-bg); color: var(--blue); }
.pep-measurement-status.warning,
.pep-status-tag.warning { background: var(--yellow-bg); color: var(--yellow); }
.pep-measurement-status.danger,
.pep-status-tag.danger { background: var(--red-bg); color: var(--red); }

.pep-positive { color: var(--green); }
.pep-info { color: var(--blue); }
.pep-warning { color: var(--yellow); }
.pep-danger { color: var(--red); }
.pep-muted { color: var(--muted); }

.pep-finance-stack {
  display: grid;
  justify-items: start;
  gap: 3px;
}

.pep-finance-stack > strong {
  margin-top: 2px;
  font-size: 11px;
  white-space: nowrap;
}

.pep-finance-stack > small {
  margin-top: 0;
  white-space: nowrap;
}

.pep-financial-state {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--gray-bg);
  color: var(--muted);
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.pep-financial-state.info { background: var(--blue-bg); color: var(--blue); }
.pep-financial-state.progress { background: var(--green-bg); color: var(--setup-green); }
.pep-financial-state.success { background: var(--green-bg); color: var(--green); }
.pep-financial-state.warning,
.pep-financial-state.above { background: var(--yellow-bg); color: var(--yellow); }
.pep-financial-excess-text { color: var(--yellow) !important; }

.pep-open-detail {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--blue);
  cursor: pointer;
  font: inherit;
  font-size: 18px;
  font-weight: 900;
}

.pep-open-detail:hover,
.pep-open-detail:focus-visible {
  border-color: #badce4;
  background: var(--blue-bg);
  outline: none;
}

.peps-empty {
  display: grid;
  justify-items: center;
  gap: 5px;
  padding: 44px 20px;
  color: var(--muted);
  text-align: center;
}

.peps-empty[hidden] { display: none; }
.peps-empty strong { color: var(--text); }

.peps-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 10px 20px;
  background: var(--surface-2);
}

.peps-pagination button {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 20px;
}

.peps-pagination button:disabled {
  cursor: default;
  opacity: 0.38;
}

.peps-pagination span {
  min-width: 110px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.pep-detail-drawer {
  grid-template-rows: auto auto auto minmax(0, 1fr);
  width: min(1040px, 100vw);
}

.pep-detail-summary {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.pep-detail-summary > div.info strong { color: var(--blue); }
.pep-detail-summary > div.progress strong { color: var(--setup-green); }
.pep-detail-summary > div.success strong { color: var(--green); }
.pep-detail-summary > div.warning strong,
.pep-detail-summary > div.above strong { color: var(--yellow); }
.pep-detail-summary > div.danger strong { color: var(--red); }

.pep-detail-tabs,
.pep-page-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}

.pep-detail-tabs {
  padding-inline: 20px;
  background: var(--surface);
}

.pep-detail-tabs button,
.pep-page-tabs button {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
}

.pep-detail-tabs button:hover,
.pep-detail-tabs button:focus-visible,
.pep-page-tabs button:hover,
.pep-page-tabs button:focus-visible {
  color: var(--blue);
  outline: none;
}

.pep-detail-tabs button.is-active,
.pep-page-tabs button.is-active {
  background: var(--blue-bg);
  color: var(--blue);
}

.pep-detail-content,
.pep-page-panel {
  display: grid;
  align-content: start;
  gap: 12px;
}

.pep-page-panel {
  min-height: 420px;
  padding: 18px 20px 28px;
}

.pep-overview-status {
  display: grid;
  grid-template-columns: minmax(180px, .7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: 18px;
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--gray-bg);
  color: var(--muted);
}

.pep-overview-status.success { background: var(--green-bg); color: var(--green); }
.pep-overview-status.info { background: var(--blue-bg); color: var(--blue); }
.pep-overview-status.warning { background: var(--yellow-bg); color: var(--yellow); }
.pep-overview-status.danger { background: var(--red-bg); color: var(--red); }

.pep-overview-status div { display: grid; gap: 4px; }
.pep-overview-status span { font-size: 10px; font-weight: 900; text-transform: uppercase; }
.pep-overview-status strong { font-size: 15px; }
.pep-overview-status p { margin: 0; color: currentColor; font-size: 13px; font-weight: 650; line-height: 1.4; }

.pep-financial-overview {
  display: grid;
  grid-template-columns: minmax(175px, .72fr) minmax(0, 1.28fr);
  align-items: stretch;
  gap: 18px;
  padding: 13px 0;
  border-block: 1px solid var(--border);
}

.pep-financial-stage {
  display: grid;
  align-content: center;
  gap: 4px;
  padding-left: 13px;
  border-left: 4px solid var(--muted);
}

.pep-financial-stage span,
.pep-financial-overview dt {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.pep-financial-stage strong {
  font-size: 15px;
  line-height: 1.25;
}

.pep-financial-overview > dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
}

.pep-financial-overview > dl > div {
  min-width: 0;
  padding: 3px 13px;
  border-left: 1px solid var(--border);
}

.pep-financial-overview dd {
  margin: 5px 0 0;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.pep-financial-overview.info .pep-financial-stage { border-left-color: var(--blue); }
.pep-financial-overview.info .pep-financial-stage strong { color: var(--blue); }
.pep-financial-overview.progress .pep-financial-stage { border-left-color: var(--setup-green); }
.pep-financial-overview.progress .pep-financial-stage strong { color: var(--setup-green); }
.pep-financial-overview.success .pep-financial-stage { border-left-color: var(--green); }
.pep-financial-overview.success .pep-financial-stage strong { color: var(--green); }
.pep-financial-overview.warning .pep-financial-stage,
.pep-financial-overview.above .pep-financial-stage { border-left-color: var(--yellow); }
.pep-financial-overview.warning .pep-financial-stage strong,
.pep-financial-overview.above .pep-financial-stage strong,
.pep-financial-excess dd { color: var(--yellow); }

.pep-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.pep-facts div,
.pep-summary-note {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-2);
}

.pep-facts dt,
.pep-summary-note > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.pep-facts dd {
  margin: 5px 0 0;
  overflow-wrap: anywhere;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.pep-summary-note p {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.45;
}

.pep-data-disclosure {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}

.pep-data-disclosure > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 52px;
  padding: 10px 14px;
  list-style: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.pep-data-disclosure > summary::-webkit-details-marker { display: none; }
.pep-data-disclosure > summary::before {
  content: "\203A";
  color: var(--blue);
  font-size: 24px;
  line-height: 1;
  transition: transform 150ms ease;
}
.pep-data-disclosure[open] > summary::before { transform: rotate(90deg); }
.pep-data-disclosure > summary span { flex: 1; }
.pep-data-disclosure > summary strong {
  display: inline-grid;
  place-items: center;
  min-width: 30px;
  height: 26px;
  padding: 0 7px;
  border-radius: 999px;
  background: var(--gray-bg);
  color: var(--muted);
  font-size: 11px;
}

.pep-disclosure-body {
  border-top: 1px solid var(--border);
}

.pep-table-search-wrap {
  padding: 10px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}

.pep-table-search {
  width: min(360px, 100%);
  height: 36px;
  padding: 0 11px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-size: 12px;
}

.pep-table-search:focus {
  border-color: rgba(22, 117, 143, .55);
  box-shadow: 0 0 0 3px rgba(22, 117, 143, .1);
  outline: none;
}

.pep-detail-table-wrap {
  max-width: 100%;
  overflow: auto;
}

.pep-detail-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  font-size: 11px;
}

.pep-detail-table th,
.pep-detail-table td {
  padding: 9px 10px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.pep-detail-table th {
  position: sticky;
  top: 0;
  background: #f3f7f6;
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.pep-detail-table td {
  max-width: 320px;
  overflow-wrap: anywhere;
}

.pep-detail-table td.numeric,
.pep-detail-table th.numeric {
  text-align: right;
  white-space: nowrap;
}

.pep-detail-table tbody tr:last-child td { border-bottom: 0; }
.pep-detail-table tbody tr[hidden] { display: none; }

.pep-detail-empty,
.pep-detail-error,
.pep-detail-loading {
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 28px 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-align: center;
}

.pep-detail-error {
  border: 1px solid #f2b5b0;
  border-radius: 8px;
  background: var(--red-bg);
  color: var(--red);
}

.pep-detail-loading span {
  width: 24px;
  height: 24px;
  border: 3px solid var(--border);
  border-top-color: var(--setup-green);
  border-radius: 999px;
  animation: pep-spin 800ms linear infinite;
}

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

.pep-page-tools {
  align-items: end;
  margin-bottom: 14px;
  padding: 0 4px;
}

.pep-lookup {
  display: grid;
  gap: 5px;
}

.pep-lookup label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.pep-lookup > div {
  display: flex;
  gap: 7px;
}

.pep-lookup input { width: 270px; }

.pep-lookup button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(22, 117, 143, .28);
  border-radius: 7px;
  background: var(--blue-bg);
  color: var(--blue);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
}

.pep-page-heading {
  align-items: flex-end;
  margin-bottom: 12px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--setup-green);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.pep-page-heading h2 {
  font-size: 28px;
  overflow-wrap: anywhere;
}

.pep-page-heading p:last-child {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.pep-page-metrics {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.pep-page-metric {
  min-height: 110px;
  padding: 14px;
}

.pep-page-metric > strong {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 7px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 20px;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.pep-page-metric--compact-currency > strong {
  display: block;
  overflow: visible;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  overflow-wrap: normal;
  white-space: nowrap;
}

.pep-page-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pep-page-content {
  margin-bottom: 20px;
}

@media (max-width: 1320px) {
  .peps-global-metrics,
  .peps-filtered-metrics,
  .pep-page-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .peps-search-field {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .peps-shell,
  .pep-page-shell {
    width: min(100% - 24px, 1640px);
    padding-top: 12px;
  }

  .peps-topbar,
  .peps-intro,
  .peps-toolbar,
  .peps-filtered-header,
  .pep-page-heading,
  .pep-page-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .peps-topbar-tools {
    width: 100%;
    max-width: none;
    justify-items: stretch;
  }

  .peps-domain-nav > div {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .peps-domain-nav > div > span {
    min-width: 72px;
    text-align: left;
  }

  .source-status {
    justify-content: flex-start;
    white-space: normal;
  }

  .peps-intro > p,
  .peps-filtered-header > span {
    text-align: left;
  }

  .peps-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-inline: 14px;
  }

  .peps-search-field { grid-column: span 2; }
  .peps-actions,
  .pep-page-actions { justify-content: flex-start; }
  .pep-detail-summary,
  .pep-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .pep-financial-overview {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .brand-lockup { align-items: flex-start; flex-direction: column; }
  .brand-logo { width: 160px; }
  .brand-copy h1 { font-size: 25px; }
  .peps-global-metrics,
  .peps-filtered-metrics,
  .pep-page-metrics,
  .peps-filters,
  .pep-detail-summary,
  .pep-facts {
    grid-template-columns: 1fr;
  }
  .peps-search-field { grid-column: auto; }
  .pep-lookup > div { flex-direction: column; }
  .pep-lookup input { width: 100%; }
  .peps-table { min-width: 1520px; }

  .pep-financial-overview > dl {
    grid-template-columns: 1fr;
  }

  .pep-financial-overview > dl > div {
    padding-block: 8px;
  }
}
