.home-grid {
  display: grid;
  list-style: none;
  grid-gap: 1.5rem;
  line-height: 0;
  grid-template-columns: repeat(1, 2fr);
  grid-auto-flow: dense;
}

.home-grid li {
  position: relative;
  --cols: 1;
  --rows: 2;

  overflow: hidden;
  background: #000;
  line-height: 0;

  min-height: 300px;
}

.home-grid li.special {
  --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;
  object-position: 0 40%; /* adjust depending on image content */
  transition: all .3s;
}

.home-grid figcaption {
  display: flex;
  justify-content: flex-start;
  position: absolute;
  color: #fff;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  line-height: 1;
  background: rgba(0,0,0, .5);
  padding-left: 20px;
  padding-top: 20px;
}

@media screen and (min-width: 45em) {
  .home-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-grid li {
    grid-column-start: span var(--cols);
    grid-row-start: span var(--rows);
  }
  .home-grid figure {
    padding-bottom: 30.65%;
  }
}

.example-name {
  display: block;
  margin-bottom: 4px;
}

.house-item {
  display: flex;
}

.house-programm {
  position: absolute;
  bottom: 20px;
  left: 20px;
  line-height: 1.4;
  display: block;
  color: #fff;
}

.house-programm-item {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.meta {
  opacity: 0.8;
  font-size: 90%;
}

figcaption {
  font-size: 120%;
}

.home__bild {
  margin-top: 1.5rem;
}

h3 {
  margin-bottom: 10px;
}