.slsp-speakers {
  width: 100%;
}

.slsp-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 26px;
}

.slsp-search {
  position: relative;
  display: block;
  width: min(100%, 240px);
}

.slsp-search-input {
  width: 100%;
  min-height: 48px;
  padding: 10px 48px 10px 20px;
  border: 0;
  border-radius: 100px;
  outline: 0;
  background: #e8e8e8;
  color: #333;
  font: inherit;
  box-shadow: none;
  transition: box-shadow .25s ease, background-color .25s ease;
}

.slsp-search-input:focus {
  background: #f0f0f0;
  box-shadow: 0 0 0 2px rgba(20, 48, 78, .28);
}

.slsp-search svg {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 23px;
  height: 23px;
  transform: translateY(-50%);
  fill: none;
  stroke: #9a9a9a;
  stroke-width: 1.8;
  pointer-events: none;
}

.slsp-grid {
  --slsp-columns: 5;
  display: grid;
  grid-template-columns: repeat(var(--slsp-columns), minmax(0, 1fr));
  align-items: start;
}

.slsp-card {
  min-width: 0;
  text-align: center;
  transition: opacity .22s ease, transform .22s ease;
}

.slsp-card[hidden] {
  display: none !important;
}

.slsp-photo-link {
  display: block;
  color: inherit;
}

.slsp-photo-wrap {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  margin: 0 auto 18px;
  overflow: hidden;
  border-radius: 50%;
  background: #ddd;
  transform: translateZ(0);
  backface-visibility: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow .35s ease, transform .35s ease;
}

.slsp-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 0 rgba(255, 255, 255, 0.0);
  transition: box-shadow .55s ease;
  pointer-events: none;
  z-index: 2;
}

.slsp-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: var(--slsp-overlay, rgba(0, 0, 0, 0.15));
  opacity: 0;
  transition: opacity .45s ease;
  border-radius: 50%;
}

.slsp-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(var(--slsp-hover-base, 1));
  transition: transform .75s cubic-bezier(.2,.8,.2,1), filter .45s ease;
  will-change: transform;
  backface-visibility: hidden;
}

.slsp-card:hover .slsp-photo-wrap,
.slsp-card:focus-within .slsp-photo-wrap,
a.slsp-photo-link:hover .slsp-photo-wrap,
a.slsp-photo-link:focus .slsp-photo-wrap {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14), 0 4px 10px rgba(0, 0, 0, 0.08);
}

.slsp-card:hover .slsp-photo,
.slsp-card:focus-within .slsp-photo,
a.slsp-photo-link:hover .slsp-photo,
a.slsp-photo-link:focus .slsp-photo {
  transform: scale(var(--slsp-hover-scale, 1.18));
  filter: saturate(1.1) contrast(1.03);
}

.slsp-card:hover .slsp-photo-wrap::after,
.slsp-card:focus-within .slsp-photo-wrap::after,
a.slsp-photo-link:hover .slsp-photo-wrap::after,
a.slsp-photo-link:focus .slsp-photo-wrap::after {
  opacity: 1;
}

.slsp-name {
  margin: 0 0 10px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

.slsp-name a {
  text-decoration: none;
}

.slsp-name a:hover,
.slsp-name a:focus {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.slsp-position {
  font-size: 16px;
  line-height: 1.42;
}

.slsp-no-results {
  margin: 50px 0;
  text-align: center;
}

@media (max-width: 767px) {
  .slsp-grid { --slsp-columns: 2; }
  .slsp-toolbar { justify-content: stretch; }
  .slsp-search { width: 100%; }
  .slsp-photo-wrap { max-width: 270px; }
}

@media (prefers-reduced-motion: reduce) {
  .slsp-photo,
  .slsp-card { transition: none; }
}

