:root {
  --program-height: 70vh;
}

.program-wrap-link {
  color: #fff;
  text-decoration: none;
}

.program-banner {
  height: var(--program-height);
}

.program-banner:hover .pb-image {
  transform: scale(1.05));
}

.pb-image {
  width: 100%;
  height: var(--program-height);
  background-size: cover;
  background-position: center;
  margin: 0;
  transition: all 0.5s;
}

.pb-image > img {
  /* hide image element, it's only here for accessibility */
  /* image is visually displayed via .program-banner > .grid-image "background-image" */
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.pb-info {
  height: var(--program-height);
  position: relative;
  top: -70vh;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0,0,0,0.75);
  color: #fff;
  text-align: center;
  opacity: 0;
  transition: all 0.5s;
}

.pb-info:hover {
  /* background: radial-gradient(circle, rgba(0,0,0,1) 0%, rgba(0,0,0,0.75) 100%); */
  opacity: 1;
}

.pb-date {
  font-weight: bold;
  font-size: 2vw;
  padding: 2vw 0;
}

.pb-title {
  font-weight: bold;
  font-size: 5vw;
  padding-bottom: 4vw;
}


/* DETAIL PAGE */

.program-bg-splash {
  position: fixed;
  z-index: -2;
  height: 70vh;
  width: 100%;
  background-size: cover;
  background-position: center;
}

.vimeo-player {
  position: relative;
  width: 1024px;
  height: 576px;
  transform: translateX(-40px);
  background: #000;
}

@media (max-width: 1024px) {
  .vimeo-player {
    width: 100vw;
    height: calc(100vw * 0.5625);
  }
}

.vimeo-player > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vimeo-controls {
  position: absolute;
  bottom: -43px;
  background: #484848;
  color: #fff;
  border: 2px solid #fff;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vimeo-controls > span {
  padding: 10px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.25s all;
  border-left: 2px solid #fff;
}

.vimeo-controls > span:last-child {
  border-right: 2px solid #fff;
}

.vimeo-controls > span:hover {
  background: #fff;
  color: #484848;
}

.lineup-grid {
  display: grid;
  /* grid-gap: 2px; */
  /* grid-template-columns: repeat(auto-fill, minmax(33vw, 1fr)); /* Make columns adjust according to the available viewport */ */
  /* grid-auto-rows: 33vw; /* Set the height for implicitly-created row track */ */
  border: 1px solid #fff;
  background: var(--gray);
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}

.lineup-grid > * {
  /* width: 33vw; */
  flex: 1;
  height: 40vw;
}
