	:root {
  --gutter: 10px;
}

.app {
  padding: var(--gutter) 0;
  display: grid;
  grid-gap: var(--gutter) 0;
  grid-template-columns: var(--gutter) 1fr var(--gutter);
  align-content: start;
}

.app > * {
  grid-column: 2 / -2;
}

.app > .full {
  grid-column: 1 / -1;
}

.hs {
  display: grid;
  grid-gap: calc(var(--gutter) / 2);
  grid-template-columns: 10px;
  grid-template-rows: minmax(150px, 1fr);
  grid-auto-flow: column;
  grid-auto-columns: calc(50% - var(--gutter) * 2);

  overflow-x: scroll;
  scroll-snap-type: x proximity;
  padding-bottom: calc(.05 * var(--gutter));
  margin-bottom: calc(-.25 * var(--gutter));
}

.hs:before,
.hs:after {
  content: '';
  width: 10px;
}


/* visual styles */

ul {
  list-style: none;
  padding: 0;
}

.app {
  width: 100%;
  height: auto;
  overflow-y: scroll;
		background: #ffffff;
}

.hs > li,
.item {
  scroll-snap-align: center;
  padding: calc(var(--gutter) / 2 * 1.5);
  
  justify-content: center;
  align-items: center;
  background: #fff;
/*   border-radius: 8px; */
/* box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1); lighter than the typical card */
}

.item img {
	padding-bottom:10px;
	  width:100%;
  height:auto;
  max-width:600px;
}

.item p {
  font-weight: bold;
  padding-left:10px;
  padding-right:10px;
}

.no-scrollbar {
  scrollbar-width: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

@media (max-width: 500px) {
  .item img {
    min-width: 250px;
}
  .hs {
    grid-auto-columns: unset; );
  }
}