.templates.template-library {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-height: 284px;
  overflow-y: auto;
  padding: 2px;
}
.template-library .template {
  min-height: 121px;
  position: relative;
}
.template-library .template i {
  height: 65px;
  background-position: center;
  background-size: cover;
}
.template-library .template span {
  color: #867f9d;
  font: 8px "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: .2px;
}
.template-library .template.selected:after {
  content: "✓";
  position: absolute;
  right: 11px;
  top: 11px;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #675ae8;
  color: #fff;
  font-size: 10px;
  box-shadow: 0 2px 6px rgba(37, 31, 107, .24);
}
.template-library .template:hover {
  border-color: #a9a2f2;
  background: #fbfaff;
}
@media (max-width: 700px) {
  .templates.template-library { max-height: 275px; }
  .template-library .template { min-height: 78px; }
  .template-library .template i { height: 52px; }
}
