html, body{
  background-color: var(--bg-secondary);
}
.programme {
  margin-top: 64px;
}
.timetable a{
  color: var(--color-primary);
}
.programme-grid{
  padding: 0 2%;
  margin-top: 16px;
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.programme-item{
  margin-bottom: 24px;
}
.programme-img{
  width: 100%;
  height: auto;
  display: grid;
  margin-bottom: 8px;
}
.programme-img img{
  grid-area: 1/1;
}
.programme-hover{
  opacity:0;
  pointer-events:none;
  scale: 101%;
}
.title{
  margin-bottom: 8px;
}
.right{
  margin-top: 8px;
}
@media (orientation: portrait) {
  .programme-grid{
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 500px) {
  .programme {
    margin-top: 40px;
  }
  .programme-grid{
    margin-top: 8px;
    gap: 0;
  }
  .programme-item{
    margin-bottom: 32px;
  }
  .programme-img{
    margin-bottom: 4px;
  }

}
