/*
 * Being Topper — Video Strips
 * Large main player + horizontal scrollable thumbnail strip below.
 * Horizontal strips get wide, short thumbnails; vertical strips get
 * narrow, tall ones — cards are never stretched into the wrong shape.
 */
.bt-vs-strip {
  --bt-vs-navy: #1B1F3B;
  --bt-vs-gold: #C6A75E;
}

.bt-vs-main {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: var(--bt-vs-navy);
  margin-bottom: 14px;
}

.bt-vs-vertical .bt-vs-main {
  max-width: 420px;
}

.bt-vs-main iframe {
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  inset: 0;
}

.bt-vs-overlay {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: var(--bt-vs-navy);
  cursor: pointer;
  position: relative;
}

.bt-vs-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
}

.bt-vs-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bt-vs-gold);
  color: var(--bt-vs-navy);
}

.bt-vs-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 22px;
  background: linear-gradient(to top, rgba(7,26,51,.92) 20%, rgba(7,26,51,0));
  color: #fff;
  font-size: 15px;
  line-height: 1.4;
  text-align: left;
}

.bt-vs-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.bt-vs-horizontal .bt-vs-thumb-btn {
  flex: 0 0 auto;
  width: 140px;
  aspect-ratio: 16 / 9;
}

.bt-vs-vertical .bt-vs-thumb-btn {
  flex: 0 0 auto;
  width: 90px;
  aspect-ratio: 9 / 16;
}

.bt-vs-thumb-btn {
  position: relative;
  padding: 0;
  border: 2px solid transparent;
  background: var(--bt-vs-navy);
  overflow: hidden;
  cursor: pointer;
  transition: border-color .2s ease, opacity .2s ease;
  opacity: .65;
}

.bt-vs-thumb-btn:hover,
.bt-vs-thumb-btn:focus-visible {
  opacity: 1;
}

.bt-vs-thumb-btn.is-active {
  border-color: var(--bt-vs-gold);
  opacity: 1;
}

.bt-vs-thumb-btn img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bt-vs-thumb-fallback {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--bt-vs-navy);
}

.bt-vs-thumb-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 14px;
  text-shadow: 0 1px 3px rgba(0,0,0,.6);
}

.bt-vs-empty {
  color: #4A4F5D;
  font-size: 14px;
}
