@charset "UTF-8";
/* Snekke People (Dart Sass) */
.snekke-people-wrap {
  --snekke-columns:4;
}
.snekke-people-wrap[data-columns="2"] {
  --snekke-columns:2;
}
.snekke-people-wrap[data-columns="3"] {
  --snekke-columns:3;
}
.snekke-people-wrap[data-columns="4"] {
  --snekke-columns:4;
}
.snekke-people-wrap[data-columns="5"] {
  --snekke-columns:5;
}
.snekke-people-wrap[data-columns="6"] {
  --snekke-columns:6;
}

.snekke-people-grid {
  display: grid;
  grid-template-columns: repeat(var(--snekke-columns), minmax(0, 1fr));
  gap: 1.5rem;
}

@media (max-width: 960px) {
  .snekke-people-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .snekke-people-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .snekke-people-grid {
    grid-template-columns: 1fr;
  }
}
.snekke-person-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.snekke-person-card__media {
  display: block;
}

.snekke-person-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1/1.33;
  object-fit: cover;
  border-radius: 1rem;
}

.snekke-person-photo--placeholder {
  background: rgba(0, 0, 0, 0.08);
}

.snekke-person-card__meta {
  display: block;
  padding: 0.75rem 0.25rem 0;
  text-align: center;
}

.snekke-person-name {
  display: block;
  font-size: 1.1rem;
  line-height: 1.2;
  font-weight: 600;
}

.snekke-person-subtitle {
  display: block;
  margin-top: 0.25rem;
  opacity: 0.85;
}

.snekke-person-org {
  display: block;
  margin-top: 0.15rem;
  opacity: 0.65;
  font-size: 0.95rem;
}

.snekke-person-modal {
  opacity: 0;
  visibility: hidden;
  width: 0vw;
  height: 0vh;
  pointer-events: none;
  position: fixed;
  inset: 0;
  padding: 5vh 5vw;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99999;
  overflow: auto;
  backdrop-filter: blur(3px);
  transition: opacity 500ms ease, width 500ms ease, height 500ms ease, padding 500ms ease, visibilty 0s linear 250ms;
  transform-origin: center;
}

.snekke-person-modal:target {
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  width: 100vw;
  height: 100vh;
  pointer-events: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.snekke-person-modal__panel {
  width: 75%;
  height: 100%;
  overflow: scroll;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.18);
  margin: 0 auto;
  padding: 1.5rem;
  position: relative;
  outline: 1em solid rgba(70, 131, 182, 0.75);
}

@media (max-width: 600px) {
  .snekke-person-modal__panel {
    padding: 1rem;
  }
}
.snekke-person-modal__close {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  text-decoration: none;
  color: #b00020;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1;
}

.snekke-person-modal__close:before {
  content: "×";
  position: relative;
  display: inline-block;
  margin-right: 0.35rem;
  font-size: 1.5em;
  line-height: 0;
  vertical-align: middle;
}

.snekke-person-modal__header {
  padding-top: 0;
  text-align: left;
}

.snekke-person-modal__photo .snekke-person-photo {
  border-radius: 1rem;
}

.snekke-person-modal__photo {
  float: left;
  width: 160px;
  margin: 0 1.25rem 0.75rem 0;
}

@media (max-width: 720px) {
  .snekke-person-modal__photo {
    width: 120px;
  }
}
@media (max-width: 520px) {
  .snekke-person-modal__photo {
    float: none;
    width: 220px;
    margin: 0 auto 1rem;
    display: block;
  }
}
.snekke-person-modal__name {
  width: 100%;
  margin: 0 0 0.5rem;
  font-size: 2.25rem;
  line-height: 1.1;
}

.snekke-person-modal__subtitle {
  margin: 0.5rem 0 0;
  opacity: 0.85;
}

.snekke-person-modal__org {
  margin: 0.15rem 0 0;
  opacity: 0.65;
}

.snekke-person-modal__content {
  margin-top: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.55;
}

.snekke-person-modal__content p:first-child {
  margin-top: 0;
}
