.dates-list {
  display: flex;
  justify-content: center;
  gap: var(--dates-gap, 35px);
}

.dates-list--spread {
  justify-content: space-around;
  gap: 0;
}

.date-cle {
  display: flex;
  width: 240px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.date-cle h3 {
  text-align: center;
  font-size: 25px;
  font-weight: 600;
}

.date-cle p {
  text-align: center;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .dates-list,
  .dates-list--spread {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
}
