.page-module-shell {
  min-height: calc(100vh - 52px);
  display: grid;
  align-content: start;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  padding: 44px clamp(22px, 5vw, 64px) 64px;
}

.page-module-head {
  display: grid;
  gap: 9px;
}

.page-module-head span {
  color: var(--page-module-accent, var(--accent));
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: uppercase;
}

.page-module-head h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 950;
  line-height: 1.12;
}

.page-module-head p {
  max-width: 680px;
  margin: 0;
  color: #384955;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.65;
}

.page-module-workspace {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.page-module-workspace article {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
  padding: 18px;
}

.page-module-workspace strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
}

.page-module-workspace p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.55;
}

.page-module-note {
  color: rgba(83, 100, 113, 0.72);
  font-size: 12px;
  font-weight: 750;
}

@media (max-width: 820px) {
  .page-module-workspace {
    grid-template-columns: 1fr;
  }
}
