/* FONTS */
/* COLORS */
/* SIZING */
.team--list {
  padding-top: 4rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
}
.team--list > li {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}
.team--list > li .team--summary {
  overflow: clip;
  isolation: isolate;
  background-color: #323249;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
  display: grid;
  grid-template-rows: auto 1fr;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.team--list > li .team--summary:active {
  background-color: #252539;
}
.team--list > li .team--summary:hover {
  background-color: #535379;
}
.team--list > li .team--summary:hover .team--more {
  text-decoration: underline;
}
.team--list > li .team--portrait,
.team--list > li .team--portrait > * {
  width: 100%;
  max-width: 100%;
}
.team--list > li .team--text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}
@media screen and (min-width: 45rem) {
  .team--list > li .team--text {
    padding: 1.5rem;
    padding-left: 1.125rem;
  }
}
.team--list > li .team--text .team--title {
  display: grid;
  grid-template-columns: 1fr auto;
}
.team--list > li .team--text .team--title .team--name {
  padding: 0;
}
.team--list > li .team--text .team--title .team--name,
.team--list > li .team--text .team--title .team--occupation {
  grid-column: 1;
}
.team--list > li .team--text .team--title .team--quicklinks {
  display: flex;
  column-gap: 0.7rem;
  align-items: center;
  align-self: start;
  margin-top: 0.3ch;
  margin-left: 1.5ch;
}
.team--list > li .team--text .team--title .team--quicklinks a:hover svg {
  transform: scale(1.2);
}
.team--list > li .team--text .team--title .team--quicklinks svg {
  transition: transform 0.3s;
  width: 2ch;
}
.team--list > li .team--text .team--description-short {
  hyphens: auto;
}
@media (min-width: 80rem) {
  .team--list > li .team--text .team--description-short {
    font-size: 0.9em;
  }
}
.team--list > li .team--text .team--description-short .team--more {
  font-weight: 700;
  font-variation-settings: "wght" 700;
  font-size: 0.8rem;
}
.team--list > li .team--text .team--description-short .team--more::after {
  display: inline-block;
  content: url("/assets/svg/arrow-right.svg");
  width: 0.7ch;
  margin-left: 0.3rem;
  position: relative;
}
.team--list > li .team--text .team--nickname {
  position: relative;
  display: inline-block;
  padding-inline: 0.5ch;
  margin-right: 0.2ch;
  width: fit-content;
  font-weight: 700;
  font-variation-settings: "wght" 700;
  isolation: isolate;
}
.team--list > li .team--text .team--nickname::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, #516399, #614389);
  transform: skewX(-10deg);
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
}
.team--list dialog {
  scrollbar-width: thin;
  animation: slidein 0.5s;
  padding: 0;
  border: none;
  isolation: isolate;
  background-color: #323249;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
  color: inherit;
  width: 30rem;
  max-width: 85vw;
}
.team--list dialog::backdrop {
  background-color: #252539;
  mix-blend-mode: multiply;
  opacity: 0.8;
}
.team--list dialog article {
  position: relative;
}
.team--list dialog article button.team--closemodal {
  position: absolute;
  box-sizing: content-box;
  top: 0;
  right: 0;
  z-index: 1;
  width: 1rem;
  height: 1rem;
  padding: 0.7rem;
  background-color: #535379;
  transition: filter 0.3s;
}
.team--list dialog article button.team--closemodal > svg {
  pointer-events: none;
}
.team--list dialog article button.team--closemodal:hover {
  filter: brightness(120%);
}
.team--list dialog article button.team--closemodal:active {
  filter: brightness(80%);
}
.team--list dialog article .team--portrait {
  width: 100%;
  aspect-ratio: 16/9;
  clip-path: none;
}
.team--list dialog article .team--nickname + p {
  display: inline;
}
.team--list dialog article .team--text {
  gap: 2rem;
  padding: 2rem;
}
.team--list dialog article .team--text .team--name {
  font-size: 2rem;
}
.team--list dialog article .team--text .team--links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.team--list dialog article .team--facts {
  width: fit-content;
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 2ch;
}
.team--list dialog article .team--facts dt {
  font-weight: 700;
  font-variation-settings: "wght" 700;
}

@keyframes slidein {
  from {
    opacity: 0;
    transform: translateY(10%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#bewerbung .aside-graphic > * {
  padding-inline: 4rem;
}

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