.programmes {
  width: 100%;
  height: fit-content;
}

.programmes img {
  /* sizing */
  width: 100%;
  height: 40vh;

  /* position */ 
  position: relative;
  top: 0;
  z-index: -1;

  /* color */
  background-color: white;
  border: none;
}

.programmes h3 {
  /* sizing */
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 2rem;

  /* position */
  translate: 0 -50%;

  /* color */
 /*  background-color: black;
  color: white; */
}

.programmesWrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.programmeBox {
  /* sizing */
  width: 90%;
  height: fit-content;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 5px;
  padding: 10px;

  /* color */
  background-color: var(--dk-b);
  color: white;
}

.programmeBox img {
  /* sizing */
  width: 90%;
  margin-left: auto;
  margin-right: auto;

  /* position */
  z-index: 3;

  /* color */
  background-color: white;
}

.programmeBox h4 {
  /* sizing */
  width: fit-content;
  padding: 5px 10px;
  margin-top: 5px;
  margin-bottom: 3px;

  /* color */
}

.programmes a {
    /* sizing */
    width: 30%;
    margin-right: auto;
    margin-left: auto;
    margin-top: 2%;
    margin-bottom: 2%;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  
    /* display */
    display: block;
  
    /* text */
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
  
  
  
    /* color */
    background-color: var(--dk-b);
    color: white;
}

/* mobile */
/* @media (min-width: 320px) {
 
} */

/* landscape mobile */
@media (min-width: 568px) {
  .programmesWrapper {
    flex-direction: row;
  }

  .programmeBox {
    width: 50%;
    margin-left: 5px;
    margin-right: 5px;
  }
}

/* tablet */
@media (min-width: 768px) {
  .programmesWrapper {
    flex-direction: row;
  }

  .programmeBox {
    width: 32%;
    
  }
}

/* desktop */
/* @media (min-width: 1024px) {
 
} */