/* プロフィール画像フォールバック */
.profile-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #999;
  background-color: #e5e7eb;
}

/* YouTube埋め込み: wrapper基準で16:9を維持し、iframeを全面表示 */
.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.video-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
}
