.partners .partner-card {
  background-color: #1fafff;
  padding: 2px;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
  /* Schaduw buiten de geknipte vorm */
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
  border-radius: 0;
  /* clip-path bepaalt de vorm */
}

.partners .partner-card:hover {
  background-color: #0073b1;
}

.partners .logo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  /* houd vierkant */
  background-size: cover;
  background-position: center;
  background-color: white;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
}

.partners .logo-wrap img,
.partners .logo-wrap .logo-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.partners .logo-wrap img {
  top: 25%;
  max-height: 40%;
}

.partners .logo-wrap .logo-text {
  bottom: 10%;
  color: #E10E49;
  font-weight: 600;
  text-align: center;
  font-size: 14px;
  line-height: normal;
}

.partners a:focus .partner-card {
  background-color: #d8b51b;
}
