.home-table-column {
  flex: 100%;
}
.home-table-row {
  display: flex;
}
.home-grid {
  display: grid;
  list-style: none;
  grid-gap: 1.5rem;
  line-height: 0;
  grid-template-columns: repeat(1, 1fr);
  grid-auto-flow: dense;
  width: 100%;
}
.home-grid li {
  position: relative;
  --cols: 1;
  --rows: 1;

  overflow: hidden;
  background: #000;
  line-height: 0;
  border-radius: 20px;
  border: 10px;
}
.home-grid li:first-child {
  --cols: 2;
  --rows: 2;
}
.home-grid li:nth-child(5) {
  --cols: 2;
}
.home-grid li:nth-child(6) {
  --rows: 1;
}
.home-grid li:nth-child(7) {
  --cols: 2;
}
.home-grid a {
  display: block;
  height: 10rem;
}
.home-grid img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s;
}
.home-grid figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  color: #fff;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  line-height: 1;
  text-align: center;
  background: rgba(0, 0, 0, 0);

  font-size: clamp(0.5rem, 8vw, 5rem); /* auto-scale based on container */
  max-width: 80%;
  margin: 0 auto;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.75);
  word-wrap: break-word;
  padding: 0.5em;
}


@media screen and (min-width: 45em) {
  .home-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-grid li {
    grid-column-start: span var(--cols);
    grid-row-start: span var(--rows);
  }
  .home-grid a {
    padding-bottom: 52.65%;
  }
}
.home-grid-pages {
  display: grid;
  list-style: none;
  grid-gap: 1.5rem;
  line-height: 0;
  grid-template-columns: repeat(1, 1fr);
  grid-auto-flow: dense;
  width: 500px;
}
.home-grid-pages li {
  position: relative;
  --cols: 3;
  --rows: 3;

  overflow: visible;
  background: #000;
  line-height: 0;
}
.home-grid-pages li:first-child {
  --cols: 3;
  --rows: 3;
}
.home-grid-pages li:nth-child(5) {
  --cols: 2;
}
.home-grid-pages li:nth-child(6) {
  --rows: 2;
}
.home-grid-pages li:nth-child(7) {
  --cols: 2;
}
.home-grid-pages a {
  display: block;
  height: 10rem;
}
.home-grid-pages img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s;
}
.home-grid-pages figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  color: #fff;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  line-height: 1;
  text-align: center;
  background: rgba(0,0,0, 0.6);
}

@media screen and (min-width: 45em) {
  .home-grid-pages {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-grid-pages li {
    grid-column-start: span var(--cols);
    grid-row-start: span var(--rows);
  }
  .home-grid-pages a {
    padding-bottom: 52.65%;
  }
}
