.facilities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1em;
}
.facilities :not(.facility) {
  grid-area: 1 / 1 / 2 / 4;
}
.facility {
  border: 1px solid var(--green50);
  background-color: #fff6;
  border-top-left-radius: 30px;
}
.facility__title {
  line-height: 60px;
  margin: -1px 0 .5em -1px;
}
.facility__title .icon {
  float: left;
  margin-right: 10px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--green);
}
.facility__title .icon--attentie {
  background-color: var(--pink);
}
.facility__title .icon svg {
  fill: #fff;
  width: 56%;
  height: 56%;
  margin: 22%;
}
.facility__text {
  padding: 0 23px;
}
.facility__text ul {
  list-style: none;
  padding: 0;
  margin-top: 0;
}
.facility__text li {
  position: relative;
  padding: 0 0 0 1em;
  margin: 0;
}
.facility__text li::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: .5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--pink);
}
.facility__text li p {
  margin: 0;
}



@media screen and (max-width: 760px) {
  .facilities {
    grid-template-columns: repeat(2, 1fr);
  }
  .facilities :not(.facility) {
    grid-area: 1 / 1 / 2 / 3;
  }
}



@media screen and (max-width: 480px) {
  .facilities {
    grid-template-columns: repeat(1, 1fr);
  }
  .facilities :not(.facility) {
    grid-area: 1 / 1 / 2 / 2;
  }
}