.home-grid {
  display: grid;
  list-style: none;
  grid-gap: 2.5rem;
  line-height: 0;
  grid-template-columns: repeat(1, 1fr);
  grid-auto-flow: dense;
}
.home-grid li {
  position: relative;
  --cols: 1;
  --rows: 1;

  overflow: hidden;
  background: #000;
  line-height: 0;
}
.home-grid li:first-child {
  --cols: 1;
  --rows: 1;
  /* padding-bottom: 12.65%; */
}
.home-grid li:nth-child(5) {
  --cols: 2;
}
.home-grid li:nth-child(6) {
  --rows: 2;
}
.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: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  line-height: 1;
  text-align: center;
  background: rgba(0,0,0, .5);
}

@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 li:first-child a {
    /* padding-bottom: 32.65%; */
  }
  .home-grid a {
    /* padding-bottom: 62.65%; */
    padding-bottom: 122.65%;
  }
}

/***********************************/
/* Custom */
/***********************************/

.home-grid figcaption span {
  text-align: left;
}

.home-grid .title-main {
  font-size: 34px;
  display: block;
  font-weight: bold;
  text-transform: uppercase;
}

.home-grid .title-sub {
  font-size: 34px;
  display: block;
  margin-bottom: 10px;
}

.home-grid .dates {
  position: relative;
  display: block;
  font-size: 16px;
}

.home-grid .check {
  background-color: white;
  border-radius: 200px;
  color: var(--color-black);
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 12px;
  display: inline-block;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.home-title {
  margin-bottom: 40px;
}

.home-title-main {
  display: block;
  font-weight: bold;
  font-size: 34px;
  line-height: 34px;
  margin-bottom: 5px;
  color: #777;
}

.home-title-sub {
  margin-bottom: 20px;
}