/* Profile Card block frontend styles. Tablet behavior starts at 48rem and ends at 64rem. */
.bn-profile-card {
  align-items: center;
  display: flex;
  gap: 1.25rem;
  margin-bottom: 20px;
  margin-top: 20px;
  max-width: 455px;
}

.bn-profile-card__photo {
  border: 4px solid var(--bn-color-azure, #1754ff);
  border-radius: 50%;
  box-sizing: border-box;
  flex: 0 0 125px;
  height: 125px;
  overflow: hidden;
  width: 125px;
}

.bn-profile-card__image {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.bn-profile-card__placeholder {
  align-items: center;
  background: var(--bn-color-light-gray, #e8e9ea);
  display: flex;
  height: 100%;
  justify-content: center;
  padding: 0.75rem;
  text-align: center;
  width: 100%;
}

.bn-profile-card__content {
  flex: 1 1 auto;
  max-width: 310px;
  min-width: 0;
}

.bn-profile-card .bn-profile-card__label,
.bn-profile-card .bn-profile-card__name,
.bn-profile-card .bn-profile-card__description,
p.bn-profile-card__label,
p.bn-profile-card__name,
p.bn-profile-card__description {
  font-family: var(--bn-font-base, "Poppins", sans-serif);
  letter-spacing: 0;
  margin: 0;
}

.bn-profile-card .bn-profile-card__label,
p.bn-profile-card__label {
  color: var(--bn-color-azure, #1754ff) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  line-height: 1.3;
}

.bn-profile-card .bn-profile-card__name,
p.bn-profile-card__name {
  color: var(--bn-color-black, #000000) !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  line-height: 1.2;
}

.bn-profile-card .bn-profile-card__description,
p.bn-profile-card__description {
  color: var(--bn-color-dark-gray, #575757) !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  line-height: 1.45;
}

.bn-profile-card__label + .bn-profile-card__name,
.bn-profile-card__name + .bn-profile-card__description {
  margin-top: 0.25rem;
}


@media (min-width: 48rem) and (max-width: 64rem) {
  .bn-profile-card {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 47.9375rem) {
  .bn-profile-card {
    align-items: center;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .bn-profile-card__content {
    max-width: 310px;
    width: 100%;
  }
}

.bn-profile-card {
  width: fit-content;
}

@media (max-width: 47.9375rem) {
  .bn-profile-card {
    max-width: calc(100% - 40px);
    width: fit-content;
  }
}
.bn-scroll-animations-ready .bn-profile-card--animate-in {
  opacity: 0;
  transform: translateX(-1.5rem);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}

.bn-scroll-animations-ready .bn-profile-card--animate-in.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .bn-scroll-animations-ready .bn-profile-card--animate-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}