.bm-question-single{
  --bm-question-ink:#12345f;
  --bm-question-ink-soft:#5a6f91;
  --bm-question-panel-border:rgba(255,255,255,.24);
}

.bm-question-single::after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:clamp(240px, 28vw, 360px);
  background:
    radial-gradient(circle at 18% 38%, rgba(35,135,234,.16), transparent 34%),
    radial-gradient(circle at 84% 48%, rgba(255,123,19,.16), transparent 32%);
  pointer-events:none;
}

.bm-question-hero{
  margin-bottom:14px;
}

.bm-question-single .bm-single-frame-shell{
  display:grid;
  grid-template-columns:var(--bm-frame-rail-width) minmax(0,1fr) var(--bm-frame-rail-width);
  gap:var(--bm-frame-shell-gap);
  align-items:start;
}

.bm-question-single .bm-single-frame-shell > .bm-home-stage__side{
  position:sticky;
  top:calc(var(--bm-header-height, 0px) + 14px);
  min-height:0;
  height:auto;
}

.bm-question-single .bm-single-frame-main{
  min-width:0;
  display:contents;
}

.bm-question-single .bm-question-layout{
  display:grid;
  grid-template-columns:minmax(0,1.68fr) minmax(300px,.82fr);
  gap:20px;
  align-items:start;
}

.bm-question-hero__shell{
  position:relative;
  display:grid;
  grid-template-areas:"mascot main actions";
  grid-template-columns:clamp(164px, 15vw, 210px) minmax(0,1fr) clamp(170px, 14vw, 200px);
  gap:10px;
  padding:10px 12px 8px;
  align-items:stretch;
  border-radius:28px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.18);
  background:
    radial-gradient(circle at 16% 18%, rgba(52,147,255,.12), transparent 24%),
    radial-gradient(circle at 86% 14%, rgba(255,160,59,.16), transparent 20%),
    linear-gradient(115deg, rgba(5,16,38,.94), rgba(7,25,59,.84) 48%, rgba(4,14,35,.94));
  box-shadow:0 24px 42px rgba(5,15,35,.28), inset 0 1px 0 rgba(255,255,255,.08);
  isolation:isolate;
}

.bm-question-hero__shell::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:min(54%, 46rem);
  z-index:0;
  background:var(--bm-context-hero-media, var(--bm-service-cover)) var(--bm-context-hero-media-position, center center) / var(--bm-context-hero-media-size, cover) no-repeat;
  -webkit-mask-image:linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 68%, rgba(0,0,0,.88) 82%, rgba(0,0,0,0) 100%);
  mask-image:linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 68%, rgba(0,0,0,.88) 82%, rgba(0,0,0,0) 100%);
  pointer-events:none;
}

.bm-question-hero__shell::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(90deg, rgba(7,23,53,.28) 0%, rgba(7,23,53,.18) 38%, rgba(7,23,53,.46) 68%, rgba(7,23,53,.82) 100%),
    radial-gradient(circle at 84% 16%, rgba(255,160,59,.16), transparent 24%),
    radial-gradient(circle at 78% 72%, rgba(255,123,19,.08), transparent 20%),
    radial-gradient(circle at 18% 84%, rgba(45,139,255,.12), transparent 22%);
  pointer-events:none;
}

.bm-question-hero__main,
.bm-question-hero__actions,
.bm-question-hero__mascot{
  position:relative;
  z-index:2;
  min-width:0;
}

.bm-question-hero__main{
  grid-area:main;
  display:grid;
  grid-template-columns:1fr;
  gap:8px;
  align-content:start;
  padding:4px 0 0 14px;
  min-width:0;
}

.bm-question-hero__main::before{
  content:"";
  position:absolute;
  top:10px;
  left:0;
  bottom:12px;
  width:3px;
  border-radius:999px;
  background:linear-gradient(180deg, rgba(255,211,109,.08), rgba(255,123,19,.96), rgba(255,211,109,.08));
  box-shadow:0 0 0 1px rgba(255,255,255,.04);
}

.bm-question-hero__toolbar{
  display:grid;
  grid-template-columns:max-content minmax(0,1fr);
  align-items:center;
  gap:8px 10px;
  min-width:0;
}

.bm-question-hero__statusrow{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
  justify-self:end;
  min-width:0;
}

.bm-question-hero__back,
.bm-question-hero__code{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.03em;
  text-decoration:none;
  white-space:nowrap;
}

.bm-question-hero__code{
  justify-self:start;
}

.bm-question-hero__back{
  color:#fff;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
}

.bm-question-hero__code{
  color:var(--bm-service-blue-deep);
  background:linear-gradient(135deg, rgba(255,211,109,.96), rgba(255,183,77,.9));
  width:fit-content;
}

.bm-question-hero__headline{
  display:grid;
  gap:8px;
  min-width:0;
  max-width:none;
}

.bm-question-hero__headline h1{
  margin:0;
  color:#fff;
  font-size:clamp(1.68rem, 2vw, 2.18rem);
  line-height:1;
  letter-spacing:-.03em;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:100%;
}

.bm-question-emphasis{
  color:#ff8f1f;
  font-weight:900;
}

.bm-question-hero__headline .bm-service-hero__summary{
  margin:0;
  max-width:100%;
  overflow:hidden;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  font-size:.92rem;
  line-height:1.35;
  color:rgba(236,244,255,.88);
}

.bm-question-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:30px;
  padding:0 12px;
  border-radius:999px;
  font-size:.74rem;
  font-weight:800;
}

.bm-question-badge--resolved{
  color:#0e5a31;
  background:linear-gradient(135deg, rgba(180,255,214,.96), rgba(85,218,150,.92));
}

.bm-question-badge--urgent{
  color:#fff;
  background:linear-gradient(135deg, rgba(255,98,98,.98), rgba(218,43,43,.88));
}

.bm-question-badge--answered{
  color:#10436e;
  background:linear-gradient(135deg, rgba(173,225,255,.98), rgba(92,176,255,.9));
}

.bm-question-badge--open,
.bm-question-badge--active{
  color:#16396e;
  background:linear-gradient(135deg, rgba(255,255,255,.96), rgba(223,236,255,.9));
}

.bm-question-hero__meta{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:7px;
  width:100%;
  max-width:100%;
  align-items:stretch;
}

.bm-question-hero__meta .bm-service-chip{
  width:100%;
  min-height:40px;
  padding:7px 10px;
  border-radius:14px;
  gap:2px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05)),
    rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}

.bm-question-hero__meta .bm-service-chip--date{
  background:linear-gradient(135deg, rgba(255,211,109,.94), rgba(255,183,77,.86));
}

.bm-question-hero__meta .bm-service-chip span{
  font-size:.64rem;
}

.bm-question-hero__meta .bm-service-chip strong{
  font-size:.86rem;
}

.bm-question-hero__benefits{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:7px;
  width:100%;
}

.bm-question-benefit{
  display:grid;
  gap:4px;
  padding:10px 12px;
  min-height:58px;
  border-radius:16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.04)),
    rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}

.bm-question-benefit strong{
  color:#fff;
  font-size:.82rem;
  line-height:1.15;
}

.bm-question-benefit span{
  color:rgba(233,241,255,.76);
  font-size:.72rem;
  line-height:1.22;
  overflow:hidden;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:1;
}

.bm-question-hero__actions{
  grid-area:actions;
  width:clamp(168px, 13.2vw, 194px);
  padding:10px 10px 10px;
  gap:6px;
  justify-self:end;
  align-self:stretch;
  justify-items:stretch;
  box-sizing:border-box;
  overflow:hidden;
  border-radius:22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.05)),
    rgba(8,31,79,.22);
  border:1px solid rgba(255,255,255,.15);
  box-shadow:0 18px 28px rgba(5,15,35,.18), inset 0 1px 0 rgba(255,255,255,.1);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}

.bm-question-hero__actions .bm-service-panel__eyebrow{
  justify-self:start;
}

.bm-question-hero__actions-head{
  gap:4px;
  margin-bottom:0;
}

.bm-question-hero__actions-head h2{
  font-size:.98rem;
  line-height:1.02;
}

.bm-question-hero__actions-head p{
  font-size:.76rem;
  line-height:1.28;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  overflow:hidden;
}

.bm-question-hero__actions .bm-service-hero__action{
  width:100%;
  max-width:100%;
  box-sizing:border-box;
  min-height:36px;
  padding:8px 10px;
  border-radius:13px;
  font-size:.77rem;
}

.bm-question-hero__mascot{
  position:absolute;
  left:clamp(6px, .8vw, 12px);
  bottom:clamp(-10px, -.5vw, -6px);
  display:block;
  width:clamp(220px, 18vw, 302px);
  transform:scaleX(-1);
  transform-origin:center bottom;
  pointer-events:none;
  z-index:3;
  filter:drop-shadow(0 18px 24px rgba(7,21,52,.28));
}

.bm-question-layout{
  gap:18px;
}

.bm-question-content{
  display:grid;
  gap:18px;
}

.bm-question-single .bm-single-frame-main{
  display:contents;
}

.bm-question-single .bm-question-hero{
  order:-1;
  grid-column:1 / -1;
}

.bm-question-single .bm-account-notice,
.bm-question-single .bm-question-layout{
  grid-column:2;
}

.bm-question-single .bm-single-frame-shell > .bm-home-stage__side--left{
  grid-column:1;
}

.bm-question-single .bm-single-frame-shell > .bm-home-stage__side--right{
  grid-column:3;
}

.bm-question-detail-shell{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  align-items:stretch;
}

.bm-question-author-card{
  display:grid;
  grid-template-columns:80px minmax(0,1fr);
  gap:12px 16px;
  align-content:start;
  text-align:left;
  padding:20px 22px;
  border-radius:28px;
  background:
    radial-gradient(circle at top right, rgba(255,211,109,.18), transparent 30%),
    linear-gradient(180deg, rgba(9,27,64,.96), rgba(6,16,39,.96));
  border:1px solid rgba(255,255,255,.09);
  box-shadow:0 22px 40px rgba(5,15,35,.24);
}

.bm-question-author-card .bm-service-panel__eyebrow{
  grid-column:1 / -1;
  justify-self:start;
  color:#ffd36d;
  background:rgba(255,255,255,.08);
  padding:0 12px;
  border-radius:999px;
  min-height:28px;
}

.bm-question-author-card__avatar,
.bm-question-response__avatar{
  display:grid;
  place-items:center;
  width:72px;
  height:72px;
  border-radius:24px;
  color:#fff;
  font-size:1.3rem;
  font-weight:800;
  background:
    radial-gradient(circle at top left, rgba(255,211,109,.3), transparent 40%),
    linear-gradient(135deg, rgba(18,61,151,.94), rgba(255,123,19,.82));
  box-shadow:0 18px 28px rgba(10,28,73,.2);
}

.bm-question-author-card__avatar{
  grid-row:2 / span 4;
  margin:0;
  width:76px;
  height:76px;
  border-radius:26px;
  box-shadow:0 16px 28px rgba(5,15,35,.28);
}

.bm-question-author-card strong{
  grid-column:2;
  color:#fff;
  font-size:1.06rem;
  line-height:1.25;
}

.bm-question-author-card span,
.bm-question-author-card p,
.bm-question-author-card small{
  grid-column:2;
  margin:0;
  color:rgba(233,241,255,.78);
  line-height:1.5;
}

.bm-question-author-card small{
  color:rgba(255,211,109,.9);
  font-weight:700;
  letter-spacing:.01em;
}

.bm-question-panel{
  display:grid;
  gap:16px;
  padding:22px;
  border-radius:30px;
  background:
    radial-gradient(circle at top right, rgba(255,123,19,.16), transparent 30%),
    linear-gradient(180deg, rgba(8,25,58,.98), rgba(7,18,43,.97));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 24px 46px rgba(5,15,35,.28);
}

.bm-question-panel::before{
  background:linear-gradient(135deg, rgba(255,123,19,.1), rgba(18,61,151,.03) 72%);
}

.bm-question-panel .bm-service-panel__head{
  margin-bottom:2px;
}

.bm-question-panel .bm-service-panel__eyebrow{
  color:#ffd36d;
}

.bm-question-panel .bm-service-panel__head h2{
  color:#fff;
}

.bm-question-panel .bm-service-panel__count{
  color:#fff;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.1);
  padding:8px 12px;
  border-radius:999px;
}

.bm-question-panel .bm-service-richtext{
  color:rgba(235,243,255,.92);
  line-height:1.72;
}

.bm-question-panel .bm-service-richtext > :first-child{
  margin-top:0;
}

.bm-question-panel .bm-service-richtext > p:first-of-type{
  color:#fff;
  font-size:1.03rem;
}

.bm-question-panel .bm-service-richtext a{
  color:#ffd36d;
}

.bm-question-detail-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(190px, 1fr));
  gap:12px;
}

.bm-question-panel .bm-service-detail-card{
  padding:16px 16px 15px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04)),
    rgba(255,255,255,.03);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}

.bm-question-panel .bm-service-detail-card span{
  color:rgba(215,227,255,.72);
  font-size:.76rem;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.bm-question-panel .bm-service-detail-card strong{
  color:#fff;
  font-size:1rem;
  line-height:1.45;
}

.bm-question-resolution{
  border-color:rgba(93,210,146,.24);
  background:
    radial-gradient(circle at top right, rgba(93,210,146,.14), transparent 30%),
    linear-gradient(180deg, rgba(8,33,52,.96), rgba(7,18,43,.96));
}

.bm-question-resolution::before{
  background:linear-gradient(135deg, rgba(93,210,146,.14), rgba(255,123,19,.04) 72%);
}

.bm-question-response-list{
  display:grid;
  gap:14px;
}

.bm-question-response{
  display:grid;
  grid-template-columns:72px minmax(0,1fr) auto;
  gap:16px;
  align-items:flex-start;
  padding:18px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.09);
  background:
    linear-gradient(180deg, rgba(11,27,58,.98), rgba(8,18,40,.96)),
    rgba(255,255,255,.02);
  box-shadow:0 20px 36px rgba(5,15,35,.22);
}

.bm-question-response--accepted{
  border-color:rgba(94,208,149,.3);
  background:
    radial-gradient(circle at top right, rgba(85,218,150,.18), transparent 28%),
    linear-gradient(180deg, rgba(7,43,31,.98), rgba(8,27,42,.96));
}

.bm-question-response__body{
  display:grid;
  gap:10px;
  min-width:0;
}

.bm-question-response__head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
}

.bm-question-response__head > div{
  min-width:0;
}

.bm-question-response__head strong,
.bm-question-response__head span,
.bm-question-response__content{
  overflow-wrap:anywhere;
}

.bm-question-response__head strong{
  display:block;
  color:#fff;
  font-size:1rem;
}

.bm-question-response__head span{
  display:block;
  margin-top:3px;
  color:rgba(222,233,255,.75);
  font-size:.84rem;
}

.bm-question-response__head em{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  color:#fff;
  font-size:.78rem;
  font-style:normal;
  font-weight:800;
  background:linear-gradient(135deg, rgba(180,255,214,.96), rgba(85,218,150,.92));
}

.bm-question-response__content{
  color:rgba(235,243,255,.9);
  line-height:1.7;
}

.bm-question-response__content > :first-child{
  margin-top:0;
}

.bm-question-response__content > :last-child{
  margin-bottom:0;
}

.bm-question-response__action{
  align-self:center;
}

.bm-question-response-form{
  display:grid;
  gap:16px;
  padding:22px;
  border-radius:28px;
  background:
    radial-gradient(circle at top right, rgba(255,123,19,.12), transparent 30%),
    linear-gradient(180deg, rgba(8,25,58,.96), rgba(7,18,43,.95));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 24px 46px rgba(5,15,35,.22);
}

.bm-question-response-form .bm-service-panel__head h2{
  color:#fff;
}

.bm-question-response-form .bm-service-panel__eyebrow,
.bm-question-response-form .bm-service-panel__count{
  color:#ffd36d;
}

.bm-question-response-form__identity{
  margin:0;
  color:rgba(233,241,255,.82);
  line-height:1.55;
}

.bm-question-response-form__form{
  display:grid;
  gap:14px;
}

.bm-question-response-form__field{
  display:grid;
  gap:8px;
}

.bm-question-response-form__field > span{
  color:#fff;
  font-weight:700;
}

.bm-question-response-form__textarea{
  width:100%;
  min-height:160px;
  padding:16px 18px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(6,18,41,.92);
  color:#fff;
  resize:vertical;
  line-height:1.65;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}

.bm-question-response-form__textarea:focus{
  outline:2px solid rgba(255,211,109,.26);
  outline-offset:2px;
}

.bm-question-response-form__actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.bm-question-response-form .bm-service-hero__action,
.bm-question-response__action .bm-service-hero__action{
  width:auto;
  min-width:140px;
  border:none;
  cursor:pointer;
}

.bm-question-response-form .bm-service-hero__action{
  min-width:180px;
}

.bm-question-empty{
  padding:18px;
  border-radius:20px;
  color:rgba(233,241,255,.82);
  line-height:1.65;
  background:
    linear-gradient(180deg, rgba(11,27,58,.94), rgba(8,18,40,.92)),
    rgba(255,255,255,.02);
  border:1px dashed rgba(255,255,255,.12);
}

.bm-question-empty p{
  margin:0;
}

.bm-question-related-list{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:12px;
}

.bm-question-related-card{
  display:grid;
  gap:8px;
  min-height:100%;
  padding:18px;
  border-radius:20px;
  text-decoration:none;
  color:inherit;
  background:
    linear-gradient(180deg, rgba(11,27,58,.95), rgba(8,18,40,.95)),
    rgba(255,255,255,.02);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 16px 26px rgba(5,15,35,.18);
  transition:transform .22s ease, box-shadow .22s ease;
}

.bm-question-related-card:hover{
  transform:translateY(-2px);
  box-shadow:0 20px 32px rgba(10,28,73,.12);
}

.bm-question-related-card strong{
  color:#fff;
  font-size:.98rem;
  line-height:1.45;
}

.bm-question-related-card span{
  color:rgba(222,233,255,.72);
  font-size:.86rem;
}

.bm-question-related-card em{
  color:#ffd36d;
  font-size:.8rem;
  font-style:normal;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.bm-question-help-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
}

.bm-question-help-card{
  display:grid;
  gap:14px;
  align-content:start;
  min-height:100%;
  padding:16px;
  border-radius:22px;
  background:
    linear-gradient(180deg, rgba(11,27,58,.95), rgba(8,18,40,.95)),
    rgba(255,255,255,.02);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 18px 28px rgba(5,15,35,.18);
}

.bm-question-help-card__media{
  position:relative;
  display:block;
  overflow:hidden;
  border-radius:18px;
  aspect-ratio:1.7 / 1;
  background:rgba(255,255,255,.05);
}

.bm-question-help-card__media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

.bm-question-help-card__media span{
  position:absolute;
  top:10px;
  right:10px;
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 10px;
  border-radius:999px;
  color:var(--bm-service-blue-deep);
  font-size:.74rem;
  font-weight:900;
  letter-spacing:.04em;
  background:linear-gradient(135deg, rgba(255,211,109,.96), rgba(255,183,77,.92));
}

.bm-question-help-card__body{
  display:grid;
  gap:6px;
}

.bm-question-help-card__body small{
  color:#ffd36d;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.bm-question-help-card__body strong a{
  color:#fff;
  text-decoration:none;
}

.bm-question-help-card__body p{
  margin:0;
  color:rgba(233,241,255,.78);
  line-height:1.5;
}

.bm-question-help-card__actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.bm-question-help-card__actions .bm-archive-card__btn{
  flex:1 1 160px;
}

.bm-question-sidebar{
  display:grid;
  gap:18px;
}

.bm-question-sidebar .bm-service-panel{
  padding:20px;
  background:
    linear-gradient(180deg, rgba(11,27,58,.95), rgba(8,18,40,.94)),
    rgba(255,255,255,.02);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 18px 30px rgba(5,15,35,.18);
  overflow:hidden;
}

.bm-question-sidebar .bm-service-panel--sidebar{
  display:grid;
  gap:14px;
  align-content:start;
}

.bm-question-sidebar .bm-service-panel::before{
  background:linear-gradient(135deg, rgba(255,123,19,.07), rgba(18,61,151,.02) 72%);
}

.bm-question-sidebar .bm-service-panel__eyebrow{
  color:#ffd36d;
}

.bm-question-sidebar .bm-service-panel__head h2{
  color:#fff;
}

.bm-question-sidebar .bm-service-panel__head a,
.bm-question-sidebar .bm-service-panel__count{
  color:#ffd36d;
}

.bm-question-sidebar .bm-service-panel__count{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.1);
  padding:6px 12px;
  border-radius:999px;
}

.bm-question-sidebar .bm-service-panel__head p,
.bm-question-sidebar .bm-question-checklist li,
.bm-question-sidebar p,
.bm-question-sidebar dt,
.bm-question-sidebar dd{
  color:rgba(233,241,255,.84);
}

.bm-question-sidebar__actions{
  display:grid;
  gap:10px;
  margin-top:10px;
}

.bm-question-sidebar__actions .bm-service-hero__action{
  width:100%;
  min-width:0;
}

.bm-question-how-panel{
  background:
    radial-gradient(circle at top right, rgba(255,211,109,.14), transparent 28%),
    linear-gradient(180deg, rgba(11,27,58,.95), rgba(8,18,40,.94)),
    rgba(255,255,255,.02);
}

.bm-question-checklist{
  display:grid;
  gap:12px;
  margin:0 0 18px;
  padding:0;
  list-style:none;
}

.bm-question-checklist li{
  position:relative;
  padding-left:26px;
  color:rgba(233,241,255,.84);
  line-height:1.6;
}

.bm-question-checklist li::before{
  content:"";
  position:absolute;
  top:.52em;
  left:0;
  width:12px;
  height:12px;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(255,123,19,.98), rgba(18,61,151,.9));
  box-shadow:0 0 0 4px rgba(255,123,19,.1);
}

.bm-question-cta-panel{
  color:#fff;
  background:
    radial-gradient(circle at top right, rgba(255,211,109,.22), transparent 28%),
    linear-gradient(160deg, rgba(8,31,79,.96), rgba(18,61,151,.9) 56%, rgba(255,123,19,.84));
}

.bm-question-cta-panel::before{
  background:linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,0));
}

.bm-question-cta-panel .bm-service-panel__head h2,
.bm-question-cta-panel p{
  color:#fff;
}

.bm-question-cta-panel p{
  margin:0;
  line-height:1.65;
}

.bm-question-cta-panel .bm-service-panel__mascot{
  width:min(150px, 50%);
}

@media (max-width: 1279px){
  .bm-question-detail-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .bm-question-help-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 899px){
  /* Mobile hero: one layout from phone up to tablet vertical. */
  .bm-question-single .bm-single-frame-shell{
    grid-template-columns:1fr;
  }

  .bm-question-single .bm-single-frame-shell > .bm-home-stage__side{
    display:none;
  }

  .bm-question-single .bm-account-notice,
  .bm-question-single .bm-question-layout{
    grid-column:1;
  }

  .bm-question-hero__shell{
    grid-template-columns:minmax(0,1.08fr) minmax(0,.92fr);
    grid-template-areas:
      "main main"
      "mascot actions";
    gap:8px;
    padding:10px 10px 8px;
  }

  .bm-question-hero__shell::before{
    width:min(58%, 34rem);
    -webkit-mask-image:linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
    mask-image:linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
  }

  .bm-question-layout,
  .bm-question-detail-shell{
    grid-template-columns:1fr;
  }

  .bm-question-hero__actions{
    justify-self:stretch;
    width:100%;
    padding:9px;
  }

  .bm-question-hero__mascot{
    position:relative;
    left:auto;
    right:auto;
    bottom:auto;
    justify-self:start;
    align-self:end;
    width:clamp(128px, 34vw, 164px);
    margin:0 0 -6px -4px;
  }

  .bm-question-hero__actions .bm-service-hero__action{
    min-height:34px;
    padding:8px 9px;
    font-size:.75rem;
  }
}

@media (max-width: 839px){
  .bm-question-related-list,
  .bm-question-detail-grid,
  .bm-question-response{
    grid-template-columns:1fr;
  }

  .bm-question-response__head{
    flex-direction:column;
  }

  .bm-question-response__avatar{
    width:64px;
    height:64px;
  }

  .bm-question-response__action{
    justify-self:start;
  }
}

@media (max-width: 639px){
  .bm-question-sidebar .bm-service-panel,
  .bm-question-help-card,
  .bm-question-response,
  .bm-question-related-card{
    border-radius:20px;
  }

  .bm-question-author-card__avatar{
    width:68px;
    height:68px;
  }
}
