#workshop-info {
  font-family: "Inter", sans-serif;
  margin-top: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
#workshop-info #workshop-container {
  max-width: 1200px;
  width: 70%;
  margin: 0 auto;
}
#workshop-info #workshop-container .workshop-title {
  text-align: center;
}
#workshop-info #workshop-container .workshop-title h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-top: 70px;
  margin-bottom: 0.5rem;
}
#workshop-info #workshop-container .workshop-title p {
  color: #e0e0e0;
  font-size: 1.1rem;
  font-weight: 300;
}
@media (max-width: 780px) {
  #workshop-info #workshop-container .workshop-title h2 {
    margin-top: 50px;
    font-size: 2rem;
  }
  #workshop-info #workshop-container .workshop-title p {
    font-size: 1rem;
  }
}
#workshop-info #workshop-container .divider {
  height: 2px;
  margin: 3rem auto;
  width: 100%;
  max-width: 900px;
}
#workshop-info #workshop-container .divider-0 {
  background: linear-gradient(90deg, transparent, #8a70d6, transparent);
}
#workshop-info #workshop-container .divider-1 {
  background: linear-gradient(90deg, transparent, #40e0d0, transparent);
}
#workshop-info #workshop-container .divider-2 {
  background: linear-gradient(90deg, transparent, #ff6b81, transparent);
}
#workshop-info #workshop-container .divider-3 {
  background: linear-gradient(90deg, transparent, #20bf3b, transparent);
}
@media (max-width: 780px) {
  #workshop-info #workshop-container .divider {
    margin: 2rem auto;
  }
}
#workshop-info #workshop-container .workshops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(33.3333333333vw, max(64px, 20vw)), 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 1200px) {
  #workshop-info #workshop-container .workshops-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
  }
}
#workshop-info #workshop-container .workshops-grid .workshop-card-container {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
#workshop-info #workshop-container .workshops-grid .workshop-card-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
#workshop-info #workshop-container .workshops-grid .workshop-card-container:hover > .workshop-image {
  transform: scale(1.1);
  filter: brightness(0.3);
}
#workshop-info #workshop-container .workshops-grid .workshop-card-container .workshop-image {
  transition: transform 0.5s ease, filter 0.5s ease;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#workshop-info #workshop-container .workshops-grid .workshop-card-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}
#workshop-info #workshop-container .workshops-grid .workshop-card-container .text-over {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 75%;
  margin: 0;
  font-size: 1.5em;
  font-weight: bolder;
  color: #ffffff;
  text-shadow: 0 0 15px rgb(0, 0, 0);
}/*# sourceMappingURL=workshop-info.css.map */