/* 레거시 본문 — YouTube 파사드 + 갤러리 (v2 본문과 동일 동작) */

.bcard-yt-facade {
  position: relative;
  width: 100%;
  background: #000;
  overflow: hidden;
  border-radius: inherit;
}
.bcard-yt-facade-btn {
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  position: relative;
  cursor: pointer;
  background: #000;
}
.bcard-yt-facade-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: inherit;
}
.bcard-yt-facade-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.28);
}
.bcard-yt-facade-play i {
  font-size: 48px;
  color: #fff;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45));
}
.bcard-yt-facade-title {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-align: left;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
.bcard-yt-facade.is-playing iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.legacy-video-wrap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.legacy-video-meta {
  margin-top: 10px;
  padding: 0 4px;
}
.legacy-video-meta-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-color);
  margin: 0 0 4px;
}
.legacy-video-meta-desc {
  font-size: 11px;
  opacity: 0.65;
  color: var(--text-color);
  margin: 0;
  line-height: 1.45;
}

.v2-mod-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.v2-mod-head-row .v2-mod-label {
  margin-bottom: 0;
  flex: 1;
  min-width: 0;
}
.v2-mod-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.45;
  color: var(--text-color);
  margin: 0 0 14px;
}
.v2-mod-more {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 800;
  color: var(--point-color);
  text-decoration: none;
  white-space: nowrap;
}

.v2-gallery-masonry {
  columns: 2;
  column-gap: 10px;
}
.v2-gallery-item {
  break-inside: avoid;
  display: block;
  margin-bottom: 10px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  color: inherit;
}
.v2-gallery-item-frame {
  width: 100%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}
.v2-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.v2-gallery-item--tall .v2-gallery-item-frame { height: 248px; }
.v2-gallery-item--medium .v2-gallery-item-frame { height: 176px; }
.v2-gallery-item--short .v2-gallery-item-frame { height: 118px; }
.v2-gallery-item--auto .v2-gallery-item-frame { height: auto; }
.v2-gallery-item--auto img {
  height: auto;
  max-height: 220px;
}
