.teammember-block--wrapper {
  position: relative;
  margin: 70px 0;
}

.members-container {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1400px;
  justify-content: center;
  align-items: center;
  margin: auto;
  gap: 4em 1em;
}
@media screen and (min-width: 500px) {
  .members-container {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  }
}

.member {
  max-width: 400px;
  height: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.member .member-image {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: #362242;
  border-radius: 5px;
  overflow: hidden;
}
.member .member-image img {
  height: auto;
  max-width: 189px;
  width: 100%;
}
.member .member-image .member-title {
  padding: 10px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.member .member-image .member-title h3 {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-size: 19px;
  font-size: calc(19px + 3 * (100vw - 400px) / 1500);
  font-weight: 700;
  color: #d7d4d9;
  line-height: 1.1;
}
.member .member-image .member-title span {
  display: block;
  margin: 0;
  font-family: "Lato", sans-serif;
  font-size: 13px;
  font-size: calc(13px + 1 * (100vw - 400px) / 1500);
  font-weight: 700;
  color: #69eba9;
}
.member .member-description {
  padding: 10px 0;
}
.member .member-description p {
  margin: 0 0 10px 0;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  color: #d7d4d9;
  line-height: 1.3;
  font-weight: 400;
}
.member .member-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(123px, 1fr));
  margin-top: auto;
}
.member .member-links a.button {
  display: inline-block;
  position: relative;
  margin: 5px;
  padding: 1em 0;
  border-radius: 30px;
  font-size: 14px;
  color: #19101f;
  text-decoration: none;
  text-align: center;
  background-color: #69eba9;
}
.member .member-links a.button:hover {
  color: #d7d4d9;
  background-color: #19051f;
  transition: all 0.2s ease-in-out;
}
.member .member-links a.button:hover:before {
  opacity: 1;
}
.member .member-links a.button:before {
  content: "";
  background: linear-gradient(90deg, #6a1b9a, #6126a1, #375abf, #009fe8, #31c3ca, #69eba9, #69eba9, #31c3ca, #009fe8, #375abf, #6126a1);
  position: absolute;
  top: 0px;
  left: 0px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 0px);
  height: calc(100% + 0px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  border-radius: 30px;
}
@keyframes glowing {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

/*# sourceMappingURL=teammembers-block.css.map */
