.list-item {
  display: block;
  background-color: #F7F7F7;
}

@media (min-width: 981px) {
  .list-item {
    display: flex;
  }
}
@media (max-width: 980px) {
  .list-item {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 1400px) {
  .list-item {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (min-width: 1401px) and (max-width: 1600px) {
  .list-item {
    margin-left: 5vw;
    margin-right: 5vw;
  }
}
@media (min-width: 1601px) and (max-width: 1920px) {
  .list-item {
    margin-left: 5vw;
    margin-right: 5vw;
  }
}
@media (min-width: 1921px) {
  .list-item {
    margin-left: 5vw;
    margin-right: 5vw;
  }
}

@media (max-width: 980px) {
  .list-item > header {
    background-image: none;
  }
}

@media (min-width: 981px) {
  .list-item > header {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 33%;
    aspect-ratio: 1/1;
  }
  .list-item > header img {
    display: none;
  }
}

.list-item > header img {
  border-radius: 0;
}

.list-item-content {
  flex: 1;
}

@media (max-width: 767px) {
  .list-item-content {
    padding: 28px;
  }
}
@media (min-width: 768px) and (max-width: 980px) {
  .list-item-content {
    padding: 30px;
  }
}
@media (min-width: 981px) {
  .list-item-content {
    padding: clamp(20px, 2.5vw, 50px);
  }
}

@media (min-width: 981px) {/* Desktop */
  .list-item-title-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

.list-item-title {
  font-family: Outfit, sans-serif;
  text-decoration: none;
  color: rgb(51, 51, 51);
  font-size: clamp(26px, 2.5vw, 3rem);
  /* line-height: 28.8px; */
  line-height: 100%;
  font-weight: 600;
}

.list-item-rank {
  font-family: Outfit, sans-serif;
  font-size: clamp(16px, 1.5vw, 1.1rem);
  line-height: 100%;
  font-weight: 400;
  color: #666;
  margin-top: clamp(12px, 1.0vw, 1rem);
}

.list-item-divider {
    width: 100%;
    border-top: 1px solid #eee;
    border-left: 0;
    border-right: 0;
	margin:0;
}

/* Smaller margins around divider on desktop view with smaller screen width */
/*@media (min-width: 981px) and (max-width: 1343px) {
  .list-item-divider {
    margin-top: clamp(16px, 1.0vw, 28px);
    margin-bottom: clamp(16px, 1.0vw, 28px);
  }
}*/

.list-item-key-value-grid {
  /* grid grid-cols-2 gap-4 */
  display: grid;
  /* gap: 1rem; */
}
@media (max-width: 767px) {
  .list-item-key-value-grid {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 980px) {
  .list-item-key-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 981px) {
  .list-item-key-value-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) and (max-width: 980px) {
  .list-item-progress-bars-wrapper {
    /* col-span-2 */
    grid-column: span 2 / span 2;
  }
}

.list-item-key-value-pair {
  margin-bottom: clamp(16px, 5vw, 1.5rem);
}
@media (min-width: 981px) {
  .list-item-key-value-pair {
    margin-bottom: clamp(16px, 5vw, 1.8rem);
  }
}
.list-item-key-value-pair strong {
  display: block;
  font-family: Outfit, sans-serif;
  font-size: clamp(16px, 1.1vw, 6rem);
  line-height: clamp(24px, 1.4vw, 6rem);
  font-weight: 700;
  color: #333;
  margin-bottom: clamp(1px, 0.5vw, 1rem);
}
.list-item-key-value-pair > span {
  display: block;
  font-family: Outfit, sans-serif;
  font-size: clamp(16px, 1.1vw, 6rem);
  /* line-height: clamp(24px, 1.4vw, 6rem); */
  line-height: 100%;
  font-weight: 400;
  color: #666;
}

.list-item-small-text {
  color: #666;
  font-size: clamp(12px, 0.6vw, 1rem);
  font-weight: 300;
  margin-top: clamp(4px, 0.4vw, 1.0vw);
}
@media (min-width: 981px) and (max-width: 1150px) {
  .list-item-small-text {
    /* Less line-height if text doesn't fit on one line */
    line-height: 1rem;
    /* ACtually, hide it fully */
    display: none !important;
  }
}

.jens-tooltip-trigger-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.list-item-button-wrapper {
  justify-content: flex-end;
  /* margin-top: auto; */
  padding-top: 14px;/* Always have some spacing on top */
}
@media (max-width: 980px) {/* Tablet and mobile */
  .list-item-button-wrapper {
    margin-top: clamp(16px, 1.0vw, 1rem);
    padding-top: 0;
  }
}

@media (min-width: 981px) and (max-width: 1042px) {
  .text-percentage {
    display: none;
  }
}
@media (max-width: 980px) {
  .text-gereserveerd {
    text-transform: lowercase;
  }
}
@media (min-width: 1042px) {
  .text-gereserveerd {
    text-transform: lowercase;
  }
}

.full-financed-bar {
	
}