:root {
  --kbv-core-bg: #07080d;
  --kbv-core-card: rgba(18, 21, 32, .88);
  --kbv-core-text: #f5efe3;
  --kbv-core-muted: #aaa49a;
  --kbv-core-gold: #e2b857;
  --kbv-core-border: rgba(255,255,255,.12);
}
.kbv-short-hero,
.kbv-short-block {
  color: var(--kbv-core-text);
  background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.035));
  border: 1px solid var(--kbv-core-border);
  border-radius: 28px;
  padding: 28px;
  margin: 24px 0;
}
.kbv-short-hero {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(300px,520px);
  gap: 24px;
  align-items: center;
}
.kbv-short-kicker {
  color: var(--kbv-core-gold);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 900;
}
.kbv-short-hero h2,
.kbv-short-block h2 {
  margin: 10px 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  text-transform: uppercase;
}
.kbv-short-hero p,
.kbv-short-block p { color: var(--kbv-core-muted); }
.kbv-short-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe19a, #ba8128);
  color: #08080a;
  font-weight: 900;
  text-decoration: none;
}
.kbv-short-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 22px;
  background: #000;
}
.kbv-short-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 820px) {
  .kbv-short-hero { grid-template-columns: 1fr; }
}
