:root {
  --md-primary-fg-color: #3157d5;
  --md-accent-fg-color: #526fe0;
}
.md-header__title {
  font-weight: 700;
}
.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.doc-card {
  display: flex;
  min-height: 10rem;
  flex-direction: column;
  gap: .65rem;
  padding: 1.35rem;
  color: var(--md-typeset-color) !important;
  border: 1px solid var(--md-default-fg-color--lightest);
  border-radius: .6rem;
  box-shadow: 0 .2rem .6rem rgba(0, 0, 0, .06);
  transition: border-color .15s, transform .15s;
}
.doc-card:hover {
  border-color: var(--md-accent-fg-color);
  transform: translateY(-2px);
}
.doc-card strong {
  color: var(--md-primary-fg-color);
  font-size: 1.25rem;
}
.doc-card span {
  flex: 1;
}
.doc-card em {
  color: var(--md-accent-fg-color);
  font-style: normal;
  font-weight: 700;
}
