.contentNav {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: fit-content;
}

.contentNav ul {
  display: grid;
  grid-template-columns: 30% 30% 30%;
  gap: calc(var(--contentGap) * 2);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: fit-content;
}

.contentNav li {
  min-height: 100px;
  width: 100%;
  max-height: 70dvh;
  aspect-ratio: 16/9;
  justify-self: center;
}

.contentNav a {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  filter: brightness(1);
  transition: filter 0.2s ease;
}

.contentNav a:hover {
  filter: brightness(1.1);
}

.contentNav a:focus-visible {
  outline: var(--focusColor) solid var(--focusSize);
  outline-offset: 1px;
  filter: brightness(1.1);
}

.contentNav a:active {
  filter: brightness(1.2);
}

.status {
  position: absolute;
  top: 0;
  left: 0;
  margin: 5px;
  box-sizing: border-box;
  border-radius: 3px;
  /*border: 1px solid var(--elementBorderColor);*/
  padding: 5px;
  background-color: rgba(255, 157, 0, 0.808);
  z-index: 2;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(10px, calc(5px + .5vw), 32px);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.inProgress {
  background-color: rgba(255, 115, 0, 0.808);
}

.complete {
  background-color: rgba(0, 182, 6, 0.808);
}


.contentNav img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.2s ease;
  transform: scale(1);
}

.contentNav a:hover img {
  transform: scale(1.05);
}

.contentNavLabel {
  position: absolute;
  z-index: 2;
  background-color: var(--elementBackgroundColorTransparent);
  bottom: 0;
  left: 0;
  width: 100%;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  padding: 7px;
  box-sizing: border-box;
  line-height: 1.5;
}

  @media (prefers-reduced-motion: reduce) {
    .contentNav a:hover img {
      transform: scale(1);
    }
  }

  @media (max-width: 950px) {
    .contentNav ul {
      grid-template-columns: 1fr 1fr;
      margin: 0px calc(var(--contentGap) * 2);
    }
  }

  @media (max-width: 650px) {
    .contentNav ul {
      grid-template-columns: 1fr;
      margin: 0px var(--contentGap);
    }

    .contentNavLabel {
      padding: 5px;
    }
  }