.review-footer {
  background-color: #afcbd0;
  position: relative;
  /* padding-bottom: 110px; ruimte maken voor de shape */
  position: relative;
}


.review-footer p {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.review-footer .container .ervaringen_lijst .ervaringen-item {
    margin-bottom: 6px !important;
}

.ervaringen_lijst {
  margin: 2rem 0;
  padding: 22px 0px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-gap: 2rem;
  align-items: stretch; /* zorgt ervoor dat alle items dezelfde hoogte krijgen */
}

.review-footer::after {
    content: '';
    display: block;
    width: 100%;
    height: 200px;
    background-color: #afcbd0;
    position: absolute;
    z-index: -1;
    left: 0px;
    bottom: -0px;
    transform: skew(0deg, -2deg);
    transform-origin: top right;
}
 
.review-footer::before {
    content: '';
    display: block;
    width: 100%;
    z-index: -1;
    height: 200px;
    background-color: #afcbd0;
    position: absolute;
    left: 0px;
    top: -0px;
    transform: skew(0deg,-2deg);
    transform-origin: top left;
}
.ervaring_item {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ervaring_item h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #002b66;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
}

.ervaring_item .functie {
  font-size: 1.1rem;
  font-style: italic;
  color: #2f6f85;
  margin-bottom: 1rem;
  display: block;
}

.ervaring_item .quote_blok {
  background: #07296b;
  color: white;
  padding: 2rem 3rem;
  border-radius: 12px;
    flex-grow: 1; 
  position: relative;
}

.ervaring_item .quote_blok:before {
  content: "";
  width: 6px;
  height: 60px;
  position: absolute;
  background: #2f6f85;
  border-radius: 6px;

  left: 1rem;
  top: 1.5rem;
}

.ervaring_item .quote_text {
  margin-left: 2.5rem;
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 400;
    flex-grow: 1; 
}

.ervaring_item .lees_btn {
  display: inline-block;
  padding: 0.8rem 1.4rem;
  margin-top: 1rem;
  background: #ffffff;
  color: #003c5c;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  border: 3px solid #2f6f85;
  float: right;
  transition: all 0.2s;
}

.ervaring_item .lees_btn:hover {
  background: #2f6f85;
  color: white;
}
