.list-card-col {
  padding-top: 24px;
  padding-bottom: 24px;
}

@media screen and (min-width:1024px) {
  .list-card-col {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.list-card-col--wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

@media screen and (min-width: 992px) {
  .list-card-col--wrapper {
    gap: 24px;
    margin-top: 48px;
  }
}

.list-card-col--item {
  padding: 48px 32px;
  background: #F6FDFF;
  width: 100%;
}

@media screen and (min-width: 800px) {
  .list-card-col--item {
    width: calc(50% - 8px);
  }
}

@media screen and (min-width: 992px) {
  .list-card-col--item {
    width: calc(50% - 12px);
    padding: 32px;
  }
}

.list-card-col--item span {
  display: block;
  margin-bottom: 24px;
  width: 48px;
  height: 48px;
  background: var(--bleu-ciel);
  -webkit-mask: var(--picto);
  mask: var(--picto);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.list-card-col--item p,
.list-card-col--item ul {
  font-weight: 500;
}

@media screen and (min-width: 992px) {

  .list-card-col--item p,
  .list-card-col--item ul {
    font-size: 1.125rem;
  }
}

.list-card-col--item h3 {
  margin-bottom: 24px;
}

.list-card-col--item p + h3 {
  margin-top: 24px;
}

.list-card-col--item ul {
  list-style: square;
  padding-left: 16px;
}

.list-card-col--item ul li::marker {
  color: #3EA2F7;
}

.list-card-col.has-bg {
  background: var(--bleu-nuit);
}

.list-card-col.has-bg h2{
  color: var(--blanc);
}