/* ── Joey Kelly Section (mobile-first) ──────── */
.bsx-joey-kelly {
  background: linear-gradient(180deg, #f0f7ff 0%, var(--bsx-bg-muted) 100%);
  padding: 48px 16px;
  overflow: hidden;
}
.bsx-joey-kelly__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

/* Portrait video */
.bsx-joey-kelly__video-col {
  width: 100%;
  display: flex;
  justify-content: center;
}
.bsx-joey-kelly__video-wrap {
  width: 100%;
  max-width: 240px;
  border-radius: var(--bsx-radius-md);
  overflow: hidden;
  box-shadow: var(--bsx-shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bsx-joey-kelly__video-wrap:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(10, 37, 64, 0.2);
}
.bsx-joey-kelly__video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
  object-fit: cover;
}

/* Text content */
.bsx-joey-kelly__content {
  text-align: center;
}
.bsx-joey-kelly__badge {
  display: inline-block;
  font-family: var(--bsx-font);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bsx-text-muted);
  background: var(--bsx-border-light);
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.bsx-joey-kelly__title {
  font-family: var(--bsx-font);
  font-size: 22px;
  font-weight: 700;
  color: var(--bsx-text);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.bsx-joey-kelly__quote {
  margin: 0 0 12px;
  padding: 0;
  border: none;
}
.bsx-joey-kelly__quote p {
  font-family: var(--bsx-font);
  font-size: 15px;
  color: var(--bsx-text-muted);
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}
.bsx-joey-kelly__attribution {
  font-family: var(--bsx-font);
  font-size: 14px;
  font-weight: 600;
  color: var(--bsx-text);
  margin: 0;
}

/* ── Tablet ─────────────────────────────────── */
@media (min-width: 768px) {
  .bsx-joey-kelly { padding: 64px 24px; }
  .bsx-joey-kelly__inner {
    flex-direction: row;
    gap: 40px;
    align-items: center;
  }
  .bsx-joey-kelly__video-col { width: auto; flex-shrink: 0; }
  .bsx-joey-kelly__video-wrap { max-width: 220px; }
  .bsx-joey-kelly__content { text-align: left; flex: 1; }
  .bsx-joey-kelly__title { font-size: 26px; }
  .bsx-joey-kelly__quote p { font-size: 16px; }
}

/* ── Desktop ────────────────────────────────── */
@media (min-width: 1024px) {
  .bsx-joey-kelly { padding: 80px 20px; }
  .bsx-joey-kelly__inner { gap: 56px; }
  .bsx-joey-kelly__video-wrap { max-width: 260px; border-radius: var(--bsx-radius-lg); }
  .bsx-joey-kelly__title { font-size: 30px; }
  .bsx-joey-kelly__quote p { font-size: 17px; }
  .bsx-joey-kelly__attribution { font-size: 15px; }
}
