.workshopPage .workshopTiles{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:20px;
  margin:10px auto 0;
  max-width:800px;
  animation:fadeInUp 1s ease forwards;
}

.workshopPage .workshopTiles .tile{
  width:240px;
}

.workshopPage .workshopTiles .tile img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.workshopPage .workshopProse{
  max-width:90ch;
  margin:15px auto 0;
  text-align:left;
  opacity:0;
  animation:fadeInUp 1s ease forwards;
  animation-delay:.2s;
}

.workshopPage .workshopProse p{
  color:#fff !important;
}

@media (max-width:560px){
  .workshopPage .workshopTiles{
    flex-direction:column;
    align-items:center;
  }

  .workshopPage .workshopTiles .tile{
    width:100%;
    max-width:320px;
  }
}
.simpleSection + .simpleSection{
  margin-top:-20px;
}