/* Force speaker photos to render as perfect circles (square crop) */
.speaker-photo-circle {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
}
.speaker-photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.speaker-photo-circle-lg {
  width: 220px;
  max-width: 100%;
  margin: 0 auto;
}

/* Speaker social links: Feather Icons, consistent size and style */
.speaker-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 0.75rem;
}
.speaker-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}
.speaker-socials a:hover {
  color: #ff8800;
}
.speaker-socials .speaker-social-icon,
.speaker-socials svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
}
.speaker-socials a svg {
  flex-shrink: 0;
}
