#home-pages-mobile-list-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (min-width: 800px) {
  #home-pages-mobile-list-container {
    display: none;
  }
}

.home-pages-mobile-list-item {
  text-transform: uppercase;
  margin-bottom: calc(var(--space) * 4);
  font-size: 1.4rem;
}

#home-pages-desktop-list-container {
  display: none;
}

@media (min-width: 800px) {
  #home-pages-desktop-list-container {
    display: flex;
  }
}

.home-pages-desktop-list-item-root {
  width: 0;
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  flex-basis: 0;
  margin-right: calc(var(--space) * 2);
  background-color: #fff;
}

.home-pages-desktop-list-item-root:last-child {
  margin-right: 0;
}

.home-pages-desktop-list-item-image-container {
  height: 170px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-pages-desktop-list-item-image {
  transition: transform 0.3s;
  height: calc(100% + 10px);
  width: 100%;
}

.home-pages-desktop-list-item-image:hover {
  transform: scale(1.1);
}

.home-pages-desktop-list-item-caption {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(var(--space) * 5);
  text-transform: uppercase;
  border: solid 1px #0000002e;
}

@media (min-height: 1200px) {
  .home-pages-desktop-list-item-image-container {
    height: 250px;
  }
}
