.in-bio-editor { border: 2px dashed #8BC6CA; border-radius: 6px; padding: 16px; }
.in-bio-preview { display: flex; gap: 16px; align-items: flex-start; }
.bio-photo-thumb { width: 80px; height: 100px; background: #e4eff0; border-radius: 4px; overflow: hidden; flex-shrink: 0; }
.bio-photo-thumb img { width: 100%; height: 100%; object-fit: cover; }
.bio-photo-placeholder-editor { width: 80px; height: 100px; display: flex; align-items: center; justify-content: center; font-size: 24px; background: #e4eff0; border-radius: 4px; }
.bio-text-preview p { font-size: 12px; color: #666; margin: 4px 0 0; }

/* ── Bio accordion ── */
.bio-accordion { margin-top: 16px; }

.bio-accordion__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  color: var(--blue, #416285);
  border-bottom: 1.5px solid var(--teal, #8BC6CA);
  padding-bottom: 2px;
  transition: color .2s;
}

.bio-accordion__btn:hover { color: var(--teal-dark, #5aacb2); }

.bio-accordion__icon {
  display: inline-block;
  transition: transform .25s ease;
  font-size: .8rem;
}

.bio-accordion__btn[aria-expanded="true"] .bio-accordion__icon {
  transform: rotate(180deg);
}

.bio-accordion__panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .35s ease, opacity .25s ease;
}

.bio-accordion__panel[aria-hidden="false"] {
  max-height: 1000px;
  opacity: 1;
}

.bio-accordion__content {
  padding-top: 16px;
}
