section.page-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 8px;
}

section.page-content > div {
  position: relative;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
  border-radius: 4px;
  margin: 16px;
  overflow: hidden;
  transition: transform 0.15s ease;
  display: flex;
  cursor: pointer;
}
section.page-content > div h2 {
  color: #fff;
  font-size: medium;
  font-weight: bolder;
}
section.page-content > div p {
  color: #fff;
  font-size: small;
}
section.page-content > div .half {
  display: flex;
  flex: 1;
  margin: 8px;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
section.page-content > div img {
  object-fit: cover;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}
section.page-content > div .label {
  position: absolute;
  display: none;
  background: rgba(12, 12, 12, 0.5);
  padding: 2px;
  border-radius: 2px;
  right: 8px;
  bottom: 8px;
  filter: drop-shadow(0 0 4px #0c0c0c);
}
section.page-content > div .label h5 {
  margin: 0;
  color: #fff;
  font-weight: bolder;
  text-shadow: 0 0 2px #0c0c0c;
}
section.page-content > div .label-top {
  position: absolute;
  display: none;
  background: rgba(12, 12, 12, 0.5);
  padding: 2px;
  border-radius: 2px;
  right: 8px;
  top: 8px;
  filter: drop-shadow(0 0 4px #0c0c0c);
}
section.page-content > div .label-top h5 {
  margin: 0;
  color: #fff;
  font-weight: bolder;
  text-shadow: 0 0 2px #0c0c0c;
}

section.page-content > div:hover {
  transform: scale(1.05);
  z-index: 1;
}
section.page-content > div:hover h2 {
  color: #c154c1;
}
section.page-content > div:hover p {
  color: #c154c1;
}

#template {
  display: none;
}

/*# sourceMappingURL=maps.css.map */
