#domain > .content {
  display: grid;
  gap: 2vmax;
  grid-template-columns: repeat(auto-fit, minmax(240px, 16vmax));
  justify-content: center;
  justify-items: center;
  align-content: center;
  align-items: center;
}

#domain > .content > .item {
  width: 240px;
  height: 100%;
  box-shadow: -4px 4px 4px 0 rgba(0, 0, 0, 0.26);
  border: 1px solid #79bbff99;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

#domain > .content > .item > .poster {
  width: 240px;
  height: 160px;
}

#domain > .content > .item > .name {
  margin: 8px 12px 0;
  font-size: clamp(1rem, 0.957rem + 0.22vw, 1.25rem);
  font-weight: 900;
  text-align: center;
}

#domain > .content > .item > .alias {
  margin: 8px 12px 0;
  color: #00000058;
  font-size: clamp(0.75rem, 0.707rem + 0.22vw, 1rem);
  font-weight: 700;
  text-align: center;
}

#domain > .content > .item > .more {
  display: inline-block;
  margin: 8px 12px;
  background-color: #337ecc;
  padding: 8px 16px;
  color: #ffffff;
  font-size: clamp(0.75rem, 0.707rem + 0.22vw, 1rem);
}
