:root {
  --bg: #eef3f7;
  --ink: #172134;
  --muted: #65758c;
  --line: #d9e1ec;
  --surface: #ffffff;
  --accent: #0f7b6c;
  --blue: #2858a8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 236px 1fr;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

aside {
  padding: 22px;
  background: #111827;
  color: #fff;
}

.logo {
  font-weight: 780;
  font-size: 22px;
  margin-bottom: 30px;
}

aside nav {
  display: grid;
  gap: 8px;
}

aside a {
  color: #cbd5e1;
  padding: 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 650;
}

aside a.active,
aside a:hover {
  background: #1f2937;
  color: #fff;
}

main {
  padding: 28px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(28px, 4vw, 42px);
}

h2 {
  font-size: 20px;
}

.status {
  padding: 10px 12px;
  border: 1px solid #b7d8d1;
  border-radius: 6px;
  background: #e8f7f4;
  color: var(--accent);
  font-weight: 760;
}

.summary,
.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.summary article,
.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 24px rgba(23, 33, 52, 0.06);
}

.summary article {
  padding: 18px;
}

.summary span,
.row span,
td,
li {
  color: var(--muted);
}

.summary strong {
  display: block;
  margin-top: 8px;
  font-size: 30px;
}

.panel {
  padding: 20px;
  margin-bottom: 14px;
}

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

a {
  color: var(--blue);
  text-decoration: none;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--ink);
  font-size: 13px;
  text-transform: uppercase;
}

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

.row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

ul {
  margin-bottom: 0;
  line-height: 1.8;
}

@media (max-width: 860px) {
  body {
    grid-template-columns: 1fr;
  }

  aside {
    position: static;
  }

  .summary,
  .grid {
    grid-template-columns: 1fr;
  }

  header {
    align-items: flex-start;
    flex-direction: column;
  }
}
