/* [project]/src/app/collaborators/Collaborators.module.css [app-client] (css) */
.Collaborators-module__EPqT-G__container {
  z-index: 10;
  box-sizing: border-box;
  color: #fff;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  min-height: 100vh;
  padding: 4rem 2rem;
  display: flex;
  position: relative;
}

.Collaborators-module__EPqT-G__header {
  text-align: center;
  margin-bottom: 4rem;
}

.Collaborators-module__EPqT-G__title {
  background: linear-gradient(90deg, #fff, #aaa);
  color: #0000;
  font-size: 3rem;
  font-weight: bold;
  font-family: var(--font-calligraphy), cursive;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: .5rem;
}

.Collaborators-module__EPqT-G__subtitle {
  color: #888;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.2rem;
  font-family: var(--font-inter), sans-serif;
}

.Collaborators-module__EPqT-G__list {
  flex-direction: column;
  gap: 3rem;
  width: 100%;
  max-width: 800px;
  display: flex;
}

.Collaborators-module__EPqT-G__card {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: #fff;
  background: #ffffff08;
  border: 1px solid #ffffff1a;
  border-radius: 8px;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.Collaborators-module__EPqT-G__card:hover {
  background: #ffffff14;
  border-color: #ffffff4d;
  transform: translateX(10px);
}

.Collaborators-module__EPqT-G__collaboratorName {
  font-size: 2rem;
  font-weight: bold;
  font-family: var(--font-calligraphy), cursive;
  margin-bottom: .5rem;
}

.Collaborators-module__EPqT-G__card:hover .Collaborators-module__EPqT-G__collaboratorName {
  background: linear-gradient(90deg, red, #ff7f00, #ff0, #0f0, #00f, indigo, #8f00ff) 0 0 / 200%;
  color: #0000;
  -webkit-background-clip: text;
  background-clip: text;
  animation: 3s linear infinite Collaborators-module__EPqT-G__rainbow;
}

.Collaborators-module__EPqT-G__description {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.5;
  font-family: var(--font-inter), sans-serif;
  font-style: italic;
}

.Collaborators-module__EPqT-G__footer {
  margin-top: auto;
  padding-bottom: 2rem;
}

.Collaborators-module__EPqT-G__backLink {
  color: #888;
  font-family: monospace;
  font-size: .9rem;
  text-decoration: none;
  transition: color .3s;
}

.Collaborators-module__EPqT-G__backLink:hover {
  color: #fff;
}

@keyframes Collaborators-module__EPqT-G__rainbow {
  0% {
    background-position: 0%;
  }

  100% {
    background-position: 100%;
  }
}

@media (max-width: 768px) {
  .Collaborators-module__EPqT-G__title {
    font-size: 2.5rem;
  }

  .Collaborators-module__EPqT-G__backLink {
    font-size: .8rem;
  }
}

/*# sourceMappingURL=src_app_collaborators_Collaborators_module_347dcf98.css.map*/